oci.Identity.DomainsGrant
Explore with Pulumi AI
This resource provides the Grant resource in Oracle Cloud Infrastructure Identity Domains service.
Add a Grantee to an AppRole
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  testGrant:
    type: oci:Identity:DomainsGrant
    name: test_grant
    properties:
      grantMechanism: ${grantGrantMechanism}
      grantee:
        type: ${grantGranteeType}
        value: ${grantGranteeValue}
      idcsEndpoint: ${testDomain.url}
      schemas:
        - urn:ietf:params:scim:schemas:oracle:idcs:Grant
      app:
        value: ${grantAppValue}
      appEntitlementCollection:
        value: ${grantAppEntitlementCollectionValue}
      attributeSets:
        - all
      attributes: ""
      authorization: ${grantAuthorization}
      entitlement:
        attributeName: appRoles
        attributeValue: ${grantEntitlementAttributeValue}
      grantedAttributeValuesJson: ${grantGrantedAttributeValuesJson}
      id: ${grantId}
      ocid: ${grantOcid}
      resourceTypeSchemaVersion: ${grantResourceTypeSchemaVersion}
      tags:
        - key: ${grantTagsKey}
          value: ${grantTagsValue}
Create DomainsGrant Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainsGrant(name: string, args: DomainsGrantArgs, opts?: CustomResourceOptions);@overload
def DomainsGrant(resource_name: str,
                 args: DomainsGrantArgs,
                 opts: Optional[ResourceOptions] = None)
@overload
def DomainsGrant(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 idcs_endpoint: Optional[str] = None,
                 grant_mechanism: Optional[str] = None,
                 schemas: Optional[Sequence[str]] = None,
                 grantee: Optional[DomainsGrantGranteeArgs] = None,
                 authorization: Optional[str] = None,
                 entitlement: Optional[DomainsGrantEntitlementArgs] = None,
                 attributes: Optional[str] = None,
                 attribute_sets: Optional[Sequence[str]] = None,
                 app_entitlement_collection: Optional[DomainsGrantAppEntitlementCollectionArgs] = None,
                 app: Optional[DomainsGrantAppArgs] = None,
                 ocid: Optional[str] = None,
                 resource_type_schema_version: Optional[str] = None,
                 granted_attribute_values_json: Optional[str] = None,
                 tags: Optional[Sequence[DomainsGrantTagArgs]] = None)func NewDomainsGrant(ctx *Context, name string, args DomainsGrantArgs, opts ...ResourceOption) (*DomainsGrant, error)public DomainsGrant(string name, DomainsGrantArgs args, CustomResourceOptions? opts = null)
public DomainsGrant(String name, DomainsGrantArgs args)
public DomainsGrant(String name, DomainsGrantArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsGrant
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DomainsGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DomainsGrantArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DomainsGrantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainsGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainsGrantArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var domainsGrantResource = new Oci.Identity.DomainsGrant("domainsGrantResource", new()
{
    IdcsEndpoint = "string",
    GrantMechanism = "string",
    Schemas = new[]
    {
        "string",
    },
    Grantee = new Oci.Identity.Inputs.DomainsGrantGranteeArgs
    {
        Type = "string",
        Value = "string",
        Display = "string",
        Ref = "string",
    },
    Authorization = "string",
    Entitlement = new Oci.Identity.Inputs.DomainsGrantEntitlementArgs
    {
        AttributeName = "string",
        AttributeValue = "string",
    },
    Attributes = "string",
    AttributeSets = new[]
    {
        "string",
    },
    AppEntitlementCollection = new Oci.Identity.Inputs.DomainsGrantAppEntitlementCollectionArgs
    {
        Value = "string",
        Ref = "string",
    },
    App = new Oci.Identity.Inputs.DomainsGrantAppArgs
    {
        Value = "string",
        Display = "string",
        Ref = "string",
    },
    Ocid = "string",
    ResourceTypeSchemaVersion = "string",
    GrantedAttributeValuesJson = "string",
    Tags = new[]
    {
        new Oci.Identity.Inputs.DomainsGrantTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
example, err := identity.NewDomainsGrant(ctx, "domainsGrantResource", &identity.DomainsGrantArgs{
	IdcsEndpoint:   pulumi.String("string"),
	GrantMechanism: pulumi.String("string"),
	Schemas: pulumi.StringArray{
		pulumi.String("string"),
	},
	Grantee: &identity.DomainsGrantGranteeArgs{
		Type:    pulumi.String("string"),
		Value:   pulumi.String("string"),
		Display: pulumi.String("string"),
		Ref:     pulumi.String("string"),
	},
	Authorization: pulumi.String("string"),
	Entitlement: &identity.DomainsGrantEntitlementArgs{
		AttributeName:  pulumi.String("string"),
		AttributeValue: pulumi.String("string"),
	},
	Attributes: pulumi.String("string"),
	AttributeSets: pulumi.StringArray{
		pulumi.String("string"),
	},
	AppEntitlementCollection: &identity.DomainsGrantAppEntitlementCollectionArgs{
		Value: pulumi.String("string"),
		Ref:   pulumi.String("string"),
	},
	App: &identity.DomainsGrantAppArgs{
		Value:   pulumi.String("string"),
		Display: pulumi.String("string"),
		Ref:     pulumi.String("string"),
	},
	Ocid:                       pulumi.String("string"),
	ResourceTypeSchemaVersion:  pulumi.String("string"),
	GrantedAttributeValuesJson: pulumi.String("string"),
	Tags: identity.DomainsGrantTagArray{
		&identity.DomainsGrantTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
var domainsGrantResource = new DomainsGrant("domainsGrantResource", DomainsGrantArgs.builder()
    .idcsEndpoint("string")
    .grantMechanism("string")
    .schemas("string")
    .grantee(DomainsGrantGranteeArgs.builder()
        .type("string")
        .value("string")
        .display("string")
        .ref("string")
        .build())
    .authorization("string")
    .entitlement(DomainsGrantEntitlementArgs.builder()
        .attributeName("string")
        .attributeValue("string")
        .build())
    .attributes("string")
    .attributeSets("string")
    .appEntitlementCollection(DomainsGrantAppEntitlementCollectionArgs.builder()
        .value("string")
        .ref("string")
        .build())
    .app(DomainsGrantAppArgs.builder()
        .value("string")
        .display("string")
        .ref("string")
        .build())
    .ocid("string")
    .resourceTypeSchemaVersion("string")
    .grantedAttributeValuesJson("string")
    .tags(DomainsGrantTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
domains_grant_resource = oci.identity.DomainsGrant("domainsGrantResource",
    idcs_endpoint="string",
    grant_mechanism="string",
    schemas=["string"],
    grantee={
        "type": "string",
        "value": "string",
        "display": "string",
        "ref": "string",
    },
    authorization="string",
    entitlement={
        "attribute_name": "string",
        "attribute_value": "string",
    },
    attributes="string",
    attribute_sets=["string"],
    app_entitlement_collection={
        "value": "string",
        "ref": "string",
    },
    app={
        "value": "string",
        "display": "string",
        "ref": "string",
    },
    ocid="string",
    resource_type_schema_version="string",
    granted_attribute_values_json="string",
    tags=[{
        "key": "string",
        "value": "string",
    }])
const domainsGrantResource = new oci.identity.DomainsGrant("domainsGrantResource", {
    idcsEndpoint: "string",
    grantMechanism: "string",
    schemas: ["string"],
    grantee: {
        type: "string",
        value: "string",
        display: "string",
        ref: "string",
    },
    authorization: "string",
    entitlement: {
        attributeName: "string",
        attributeValue: "string",
    },
    attributes: "string",
    attributeSets: ["string"],
    appEntitlementCollection: {
        value: "string",
        ref: "string",
    },
    app: {
        value: "string",
        display: "string",
        ref: "string",
    },
    ocid: "string",
    resourceTypeSchemaVersion: "string",
    grantedAttributeValuesJson: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
});
type: oci:Identity:DomainsGrant
properties:
    app:
        display: string
        ref: string
        value: string
    appEntitlementCollection:
        ref: string
        value: string
    attributeSets:
        - string
    attributes: string
    authorization: string
    entitlement:
        attributeName: string
        attributeValue: string
    grantMechanism: string
    grantedAttributeValuesJson: string
    grantee:
        display: string
        ref: string
        type: string
        value: string
    idcsEndpoint: string
    ocid: string
    resourceTypeSchemaVersion: string
    schemas:
        - string
    tags:
        - key: string
          value: string
DomainsGrant Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DomainsGrant resource accepts the following input properties:
- GrantMechanism string
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Grantee
DomainsGrant Grantee 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- Schemas List<string>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- App
DomainsGrant App 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AppEntitlement DomainsCollection Grant App Entitlement Collection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AttributeSets List<string>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Entitlement
DomainsGrant Entitlement 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- GrantedAttribute stringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 
List<DomainsGrant Tag> 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- GrantMechanism string
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Grantee
DomainsGrant Grantee Args 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- Schemas []string
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- App
DomainsGrant App Args 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AppEntitlement DomainsCollection Grant App Entitlement Collection Args 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AttributeSets []string
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Entitlement
DomainsGrant Entitlement Args 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- GrantedAttribute stringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 
[]DomainsGrant Tag Args 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- grantMechanism String
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantee
DomainsGrant Grantee 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- schemas List<String>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- app
DomainsGrant App 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- appEntitlement DomainsCollection Grant App Entitlement Collection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- entitlement
DomainsGrant Entitlement 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grantedAttribute StringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 
List<DomainsGrant Tag> 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- grantMechanism string
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantee
DomainsGrant Grantee 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- idcsEndpoint string
- The basic endpoint for the identity domain
- schemas string[]
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- app
DomainsGrant App 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- appEntitlement DomainsCollection Grant App Entitlement Collection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attributeSets string[]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- entitlement
DomainsGrant Entitlement 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grantedAttribute stringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 
DomainsGrant Tag[] 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- grant_mechanism str
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantee
DomainsGrant Grantee Args 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- idcs_endpoint str
- The basic endpoint for the identity domain
- schemas Sequence[str]
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- app
DomainsGrant App Args 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- app_entitlement_ Domainscollection Grant App Entitlement Collection Args 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attribute_sets Sequence[str]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- str
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- entitlement
DomainsGrant Entitlement Args 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- granted_attribute_ strvalues_ json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resource_type_ strschema_ version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 
Sequence[DomainsGrant Tag Args] 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- grantMechanism String
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantee Property Map
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- schemas List<String>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- app Property Map
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- appEntitlement Property MapCollection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- entitlement Property Map
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grantedAttribute StringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- List<Property Map>
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainsGrant resource produces the following output properties:
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- CompositeKey string
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Grantors
List<DomainsGrant Grantor> 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- Id string
- The provider-assigned unique ID for this managed resource.
- IdcsCreated List<DomainsBies Grant Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsLast List<DomainsModified Bies Grant Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented List<string>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IsFulfilled bool
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Metas
List<DomainsGrant Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- CompositeKey string
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Grantors
[]DomainsGrant Grantor 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- Id string
- The provider-assigned unique ID for this managed resource.
- IdcsCreated []DomainsBies Grant Idcs Created By 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsLast []DomainsModified Bies Grant Idcs Last Modified By 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented []stringOperations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IsFulfilled bool
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Metas
[]DomainsGrant Meta 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- compositeKey String
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantors
List<DomainsGrant Grantor> 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- id String
- The provider-assigned unique ID for this managed resource.
- idcsCreated List<DomainsBies Grant Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsLast List<DomainsModified Bies Grant Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- isFulfilled Boolean
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
List<DomainsGrant Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- compositeKey string
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- deleteIn booleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantors
DomainsGrant Grantor[] 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- id string
- The provider-assigned unique ID for this managed resource.
- idcsCreated DomainsBies Grant Idcs Created By[] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsLast DomainsModified Bies Grant Idcs Last Modified By[] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented string[]Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- isFulfilled boolean
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
DomainsGrant Meta[] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- tenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartment_ocid str
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- composite_key str
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- delete_in_ boolprogress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domain_ocid str
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantors
Sequence[DomainsGrant Grantor] 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- id str
- The provider-assigned unique ID for this managed resource.
- idcs_created_ Sequence[Domainsbies Grant Idcs Created By] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcs_last_ Sequence[Domainsmodified_ bies Grant Idcs Last Modified By] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcs_last_ strupgraded_ in_ release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcs_prevented_ Sequence[str]operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- is_fulfilled bool
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
Sequence[DomainsGrant Meta] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- tenancy_ocid str
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- compositeKey String
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantors List<Property Map>
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- id String
- The provider-assigned unique ID for this managed resource.
- idcsCreated List<Property Map>Bies 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsLast List<Property Map>Modified Bies 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- isFulfilled Boolean
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas List<Property Map>
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Look up Existing DomainsGrant Resource
Get an existing DomainsGrant resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DomainsGrantState, opts?: CustomResourceOptions): DomainsGrant@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        app: Optional[DomainsGrantAppArgs] = None,
        app_entitlement_collection: Optional[DomainsGrantAppEntitlementCollectionArgs] = None,
        attribute_sets: Optional[Sequence[str]] = None,
        attributes: Optional[str] = None,
        authorization: Optional[str] = None,
        compartment_ocid: Optional[str] = None,
        composite_key: Optional[str] = None,
        delete_in_progress: Optional[bool] = None,
        domain_ocid: Optional[str] = None,
        entitlement: Optional[DomainsGrantEntitlementArgs] = None,
        grant_mechanism: Optional[str] = None,
        granted_attribute_values_json: Optional[str] = None,
        grantee: Optional[DomainsGrantGranteeArgs] = None,
        grantors: Optional[Sequence[DomainsGrantGrantorArgs]] = None,
        idcs_created_bies: Optional[Sequence[DomainsGrantIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[DomainsGrantIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        is_fulfilled: Optional[bool] = None,
        metas: Optional[Sequence[DomainsGrantMetaArgs]] = None,
        ocid: Optional[str] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        tags: Optional[Sequence[DomainsGrantTagArgs]] = None,
        tenancy_ocid: Optional[str] = None) -> DomainsGrantfunc GetDomainsGrant(ctx *Context, name string, id IDInput, state *DomainsGrantState, opts ...ResourceOption) (*DomainsGrant, error)public static DomainsGrant Get(string name, Input<string> id, DomainsGrantState? state, CustomResourceOptions? opts = null)public static DomainsGrant get(String name, Output<String> id, DomainsGrantState state, CustomResourceOptions options)resources:  _:    type: oci:Identity:DomainsGrant    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- App
DomainsGrant App 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AppEntitlement DomainsCollection Grant App Entitlement Collection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AttributeSets List<string>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- CompositeKey string
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Entitlement
DomainsGrant Entitlement 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- GrantMechanism string
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- GrantedAttribute stringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Grantee
DomainsGrant Grantee 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- Grantors
List<DomainsGrant Grantor> 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- IdcsCreated List<DomainsBies Grant Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast List<DomainsModified Bies Grant Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented List<string>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IsFulfilled bool
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Metas
List<DomainsGrant Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Schemas List<string>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
List<DomainsGrant Tag> 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- App
DomainsGrant App Args 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AppEntitlement DomainsCollection Grant App Entitlement Collection Args 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- AttributeSets []string
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- CompositeKey string
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Entitlement
DomainsGrant Entitlement Args 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- GrantMechanism string
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- GrantedAttribute stringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Grantee
DomainsGrant Grantee Args 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- Grantors
[]DomainsGrant Grantor Args 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- IdcsCreated []DomainsBies Grant Idcs Created By Args 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast []DomainsModified Bies Grant Idcs Last Modified By Args 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented []stringOperations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IsFulfilled bool
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Metas
[]DomainsGrant Meta Args 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Schemas []string
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
[]DomainsGrant Tag Args 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- app
DomainsGrant App 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- appEntitlement DomainsCollection Grant App Entitlement Collection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- compositeKey String
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- entitlement
DomainsGrant Entitlement 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grantMechanism String
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantedAttribute StringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantee
DomainsGrant Grantee 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- grantors
List<DomainsGrant Grantor> 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- idcsCreated List<DomainsBies Grant Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast List<DomainsModified Bies Grant Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- isFulfilled Boolean
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
List<DomainsGrant Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas List<String>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
List<DomainsGrant Tag> 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- app
DomainsGrant App 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- appEntitlement DomainsCollection Grant App Entitlement Collection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attributeSets string[]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- compositeKey string
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- deleteIn booleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- entitlement
DomainsGrant Entitlement 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grantMechanism string
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantedAttribute stringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantee
DomainsGrant Grantee 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- grantors
DomainsGrant Grantor[] 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- idcsCreated DomainsBies Grant Idcs Created By[] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsEndpoint string
- The basic endpoint for the identity domain
- idcsLast DomainsModified Bies Grant Idcs Last Modified By[] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented string[]Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- isFulfilled boolean
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
DomainsGrant Meta[] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas string[]
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
DomainsGrant Tag[] 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- tenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- app
DomainsGrant App Args 
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- app_entitlement_ Domainscollection Grant App Entitlement Collection Args 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attribute_sets Sequence[str]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- str
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment_ocid str
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- composite_key str
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- delete_in_ boolprogress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domain_ocid str
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- entitlement
DomainsGrant Entitlement Args 
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grant_mechanism str
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- granted_attribute_ strvalues_ json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantee
DomainsGrant Grantee Args 
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- grantors
Sequence[DomainsGrant Grantor Args] 
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- idcs_created_ Sequence[Domainsbies Grant Idcs Created By Args] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcs_endpoint str
- The basic endpoint for the identity domain
- idcs_last_ Sequence[Domainsmodified_ bies Grant Idcs Last Modified By Args] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcs_last_ strupgraded_ in_ release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcs_prevented_ Sequence[str]operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- is_fulfilled bool
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
Sequence[DomainsGrant Meta Args] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resource_type_ strschema_ version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas Sequence[str]
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
Sequence[DomainsGrant Tag Args] 
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- tenancy_ocid str
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- app Property Map
- Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- appEntitlement Property MapCollection 
- Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- compositeKey String
- (Updatable) Unique key of grant, composed by combining a subset of app, entitlement, grantee, grantor and grantMechanism. Used to prevent duplicate Grants. - Added In: 18.1.2 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: server
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- entitlement Property Map
- The entitlement or privilege that is being granted - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
 
- grantMechanism String
- 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
- idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- grantedAttribute StringValues Json 
- Store granted attribute-values as a string in Javascript Object Notation (JSON) format. - Added In: 18.3.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- grantee Property Map
- Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. - SCIM++ Properties: - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- grantors List<Property Map>
- (Updatable) User conferring the grant to the beneficiary - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true
- required: false
- returned: default
- type: complex
 
- idcsCreated List<Property Map>Bies 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast List<Property Map>Modified Bies 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- isFulfilled Boolean
- (Updatable) If true, this Grant has been fulfilled successfully. - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas List<Property Map>
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas List<String>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- List<Property Map>
- A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Supporting Types
DomainsGrantApp, DomainsGrantAppArgs      
- Value string
- Application identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- (Updatable) Application display name - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Application URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Value string
- Application identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- (Updatable) Application display name - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Application URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- Application identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- (Updatable) Application display name - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Application URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value string
- Application identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display string
- (Updatable) Application display name - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref string
- (Updatable) Application URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value str
- Application identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display str
- (Updatable) Application display name - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref str
- (Updatable) Application URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- Application identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- (Updatable) Application display name - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Application URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
DomainsGrantAppEntitlementCollection, DomainsGrantAppEntitlementCollectionArgs          
- Value string
- Application Entitlement Collection identifier - Added In: 18.2.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Application Entitlement Collection URI - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Value string
- Application Entitlement Collection identifier - Added In: 18.2.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Application Entitlement Collection URI - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- Application Entitlement Collection identifier - Added In: 18.2.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Application Entitlement Collection URI - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value string
- Application Entitlement Collection identifier - Added In: 18.2.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref string
- (Updatable) Application Entitlement Collection URI - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value str
- Application Entitlement Collection identifier - Added In: 18.2.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref str
- (Updatable) Application Entitlement Collection URI - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- Application Entitlement Collection identifier - Added In: 18.2.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Application Entitlement Collection URI - Added In: 18.2.4 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
DomainsGrantEntitlement, DomainsGrantEntitlementArgs      
- AttributeName string
- The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- AttributeValue string
- The value of the attribute (specified by attributeName) that confers privilege within the service-instance (specified by app). If attributeName is 'appRoles', then attributeValue is the ID of the AppRole. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Display Name
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- AttributeName string
- The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- AttributeValue string
- The value of the attribute (specified by attributeName) that confers privilege within the service-instance (specified by app). If attributeName is 'appRoles', then attributeValue is the ID of the AppRole. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Display Name
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attributeName String
- The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attributeValue String
- The value of the attribute (specified by attributeName) that confers privilege within the service-instance (specified by app). If attributeName is 'appRoles', then attributeValue is the ID of the AppRole. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Display Name
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attributeName string
- The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attributeValue string
- The value of the attribute (specified by attributeName) that confers privilege within the service-instance (specified by app). If attributeName is 'appRoles', then attributeValue is the ID of the AppRole. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Display Name
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attribute_name str
- The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attribute_value str
- The value of the attribute (specified by attributeName) that confers privilege within the service-instance (specified by app). If attributeName is 'appRoles', then attributeValue is the ID of the AppRole. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Display Name
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attributeName String
- The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- attributeValue String
- The value of the attribute (specified by attributeName) that confers privilege within the service-instance (specified by app). If attributeName is 'appRoles', then attributeValue is the ID of the AppRole. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Display Name
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
DomainsGrantGrantee, DomainsGrantGranteeArgs      
- Type string
- Grantee resource type. Allowed values are User, Group, App and DynamicResourceGroup. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member Type
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- Grantee identifier - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- (Updatable) Grantee display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Grantee URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- Grantee resource type. Allowed values are User, Group, App and DynamicResourceGroup. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member Type
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- Grantee identifier - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- (Updatable) Grantee display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Grantee URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- Grantee resource type. Allowed values are User, Group, App and DynamicResourceGroup. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member Type
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- Grantee identifier - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- (Updatable) Grantee display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Grantee URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type string
- Grantee resource type. Allowed values are User, Group, App and DynamicResourceGroup. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member Type
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value string
- Grantee identifier - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display string
- (Updatable) Grantee display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref string
- (Updatable) Grantee URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type str
- Grantee resource type. Allowed values are User, Group, App and DynamicResourceGroup. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member Type
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value str
- Grantee identifier - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display str
- (Updatable) Grantee display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref str
- (Updatable) Grantee URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- Grantee resource type. Allowed values are User, Group, App and DynamicResourceGroup. - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member Type
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- Grantee identifier - SCIM++ Properties: - caseExact: true
- idcsCsvAttributeName: Member
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- (Updatable) Grantee display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Grantee URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
DomainsGrantGrantor, DomainsGrantGrantorArgs      
- Display string
- (Updatable) Grantor display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Grantor URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- (Updatable) Resource type of the grantor. Allowed values are User and App. - SCIM++ Properties: - caseExact: true
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- (Updatable) Grantor user identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Display string
- (Updatable) Grantor display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) Grantor URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- (Updatable) Resource type of the grantor. Allowed values are User and App. - SCIM++ Properties: - caseExact: true
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- (Updatable) Grantor user identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- display String
- (Updatable) Grantor display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Grantor URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- (Updatable) Resource type of the grantor. Allowed values are User and App. - SCIM++ Properties: - caseExact: true
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- (Updatable) Grantor user identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- display string
- (Updatable) Grantor display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref string
- (Updatable) Grantor URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type string
- (Updatable) Resource type of the grantor. Allowed values are User and App. - SCIM++ Properties: - caseExact: true
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value string
- (Updatable) Grantor user identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- display str
- (Updatable) Grantor display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref str
- (Updatable) Grantor URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type str
- (Updatable) Resource type of the grantor. Allowed values are User and App. - SCIM++ Properties: - caseExact: true
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value str
- (Updatable) Grantor user identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- display String
- (Updatable) Grantor display name - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- ref String
- (Updatable) Grantor URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- (Updatable) Resource type of the grantor. Allowed values are User and App. - SCIM++ Properties: - caseExact: true
- idcsDefaultValue: User
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- (Updatable) Grantor user identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
DomainsGrantIdcsCreatedBy, DomainsGrantIdcsCreatedByArgs          
- Value string
- The ID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- The displayName of the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ocid string
- The OCID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- The type of resource, User or App, that created this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Value string
- The ID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- The displayName of the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ocid string
- The OCID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- The type of resource, User or App, that created this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value String
- The ID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- The displayName of the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid String
- The OCID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- The type of resource, User or App, that created this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value string
- The ID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display string
- The displayName of the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid string
- The OCID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref string
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type string
- The type of resource, User or App, that created this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value str
- The ID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display str
- The displayName of the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid str
- The OCID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref str
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type str
- The type of resource, User or App, that created this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value String
- The ID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- The displayName of the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid String
- The OCID of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- The type of resource, User or App, that created this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
DomainsGrantIdcsLastModifiedBy, DomainsGrantIdcsLastModifiedByArgs            
- Value string
- The ID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- The displayName of the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ocid string
- The OCID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- The type of resource, User or App, that modified this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Value string
- The ID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Display string
- The displayName of the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ocid string
- The OCID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Type string
- The type of resource, User or App, that modified this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value String
- The ID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- The displayName of the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid String
- The OCID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- The type of resource, User or App, that modified this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value string
- The ID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display string
- The displayName of the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid string
- The OCID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref string
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type string
- The type of resource, User or App, that modified this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value str
- The ID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display str
- The displayName of the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid str
- The OCID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref str
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type str
- The type of resource, User or App, that modified this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- value String
- The ID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
- display String
- The displayName of the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ocid String
- The OCID of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- type String
- The type of resource, User or App, that modified this Resource - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
DomainsGrantMeta, DomainsGrantMetaArgs      
- Created string
- The DateTime the Resource was added to the Service Provider - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ResourceType string
- Name of the resource type of the resource--for example, Users or Groups - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Created string
- The DateTime the Resource was added to the Service Provider - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ResourceType string
- Name of the resource type of the resource--for example, Users or Groups - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- created String
- The DateTime the Resource was added to the Service Provider - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- resourceType String
- Name of the resource type of the resource--for example, Users or Groups - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- created string
- The DateTime the Resource was added to the Service Provider - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- lastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- resourceType string
- Name of the resource type of the resource--for example, Users or Groups - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- created str
- The DateTime the Resource was added to the Service Provider - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- last_modified str
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- location str
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- resource_type str
- Name of the resource type of the resource--for example, Users or Groups - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- version str
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- created String
- The DateTime the Resource was added to the Service Provider - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- resourceType String
- Name of the resource type of the resource--for example, Users or Groups - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
DomainsGrantTag, DomainsGrantTagArgs      
- Key string
- Key or name of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- Value of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Key string
- Key or name of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- Value of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- key String
- Key or name of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- Value of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- key string
- Key or name of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value string
- Value of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- key str
- Key or name of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value str
- Value of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- key String
- Key or name of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- Value of the tag. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
Import
Grants can be imported using the id, e.g.
$ pulumi import oci:Identity/domainsGrant:DomainsGrant test_grant "idcsEndpoint/{idcsEndpoint}/grants/{grantId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.