Show / Hide Table of Contents

Class RoleGrantPathSummary

The summary of user role grant paths.

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

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.

GrantedRole

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

The name of the role.

Grantee

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

Grantee is the user who can access the table.

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 role grant.

Remarks

Required

In this article
Back to top