Show / Hide Table of Contents

Class UserAggregation

The user aggregation provides information about the overall security state of database users. For example, it states how many users have the DBA role and how many users are in the critical category.

Inheritance
object
UserAggregation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class UserAggregation

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<Dictionary<string, object>> Items { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }

Remarks

Required

In this article
Back to top