Show / Hide Table of Contents

Class DynamicResourceGroupGrants

Grants assigned to group

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

Properties

AppId

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

App identifier
SCIM++ Properties:

  • caseExact: true
  • idcsAddedSinceVersion: 3
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

GrantMechanism

Declaration
[JsonProperty(PropertyName = "grantMechanism")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DynamicResourceGroupGrants.GrantMechanismEnum? GrantMechanism { get; set; }
Property Value
Type Description
DynamicResourceGroupGrants.GrantMechanismEnum?

Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':

  • 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
  • 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
  • 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
    SCIM++ Properties:
  • caseExact: true
  • idcsAddedSinceVersion: 3
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Ref

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

Grant URI
SCIM++ Properties:

  • idcsAddedSinceVersion: 3
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none

Value

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

Grant identifier
SCIM++ Properties:

  • caseExact: true
  • idcsAddedSinceVersion: 3
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top