Show / Hide Table of Contents

Class GrantSummary

The summary of user grants.

Inheritance
object
GrantSummary
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 GrantSummary

Properties

DepthLevel

Declaration
[JsonProperty(PropertyName = "depthLevel")]
public int? DepthLevel { get; set; }
Property Value
Type Description
int?

The grant depth level of the indirect grant. An indirectly granted role/privilege is granted to the user through another role. The depth level indicates how deep a privilege is within the grant hierarchy.

GrantName

Declaration
[JsonProperty(PropertyName = "grantName")]
public string GrantName { get; set; }
Property Value
Type Description
string

The name of a user grant.

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The unique key of a user grant.

Remarks

Required

PrivilegeCategory

Declaration
[JsonProperty(PropertyName = "privilegeCategory")]
[JsonConverter(typeof(ResponseEnumConverter))]
public GrantSummary.PrivilegeCategoryEnum? PrivilegeCategory { get; set; }
Property Value
Type Description
GrantSummary.PrivilegeCategoryEnum?

The privilege category.

PrivilegeType

Declaration
[JsonProperty(PropertyName = "privilegeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public GrantSummary.PrivilegeTypeEnum? PrivilegeType { get; set; }
Property Value
Type Description
GrantSummary.PrivilegeTypeEnum?

The type of a user grant.

In this article
Back to top