1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. DomainsApprovalWorkflowAssignment
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Identity.DomainsApprovalWorkflowAssignment

Explore with Pulumi AI

This resource provides the Approval Workflow Assignment resource in Oracle Cloud Infrastructure Identity Domains service.

Create Approval Workflow Assignment

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  testApprovalWorkflowAssignment:
    type: oci:Identity:DomainsApprovalWorkflowAssignment
    name: test_approval_workflow_assignment
    properties:
      approvalWorkflow:
        type: ${approvalWorkflowAssignmentApprovalWorkflowType}
        value: ${approvalWorkflowAssignmentApprovalWorkflowValue}
        ocid: ${approvalWorkflowAssignmentApprovalWorkflowOcid}
      assignedTo:
        type: ${approvalWorkflowAssignmentAssignedToType}
        value: ${approvalWorkflowAssignmentAssignedToValue}
        ocid: ${approvalWorkflowAssignmentAssignedToOcid}
      assignmentType: ${approvalWorkflowAssignmentAssignmentType}
      idcsEndpoint: ${testDomain.url}
      schemas:
        - urn:ietf:params:scim:schemas:oracle:idcs:ApprovalWorkflowAssignment
      attributeSets:
        - all
      attributes: ""
      authorization: ${approvalWorkflowAssignmentAuthorization}
      id: ${approvalWorkflowAssignmentId}
      ocid: ${approvalWorkflowAssignmentOcid}
      resourceTypeSchemaVersion: ${approvalWorkflowAssignmentResourceTypeSchemaVersion}
      tags:
        - key: ${approvalWorkflowAssignmentTagsKey}
          value: ${approvalWorkflowAssignmentTagsValue}
Copy

Create DomainsApprovalWorkflowAssignment Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DomainsApprovalWorkflowAssignment(name: string, args: DomainsApprovalWorkflowAssignmentArgs, opts?: CustomResourceOptions);
@overload
def DomainsApprovalWorkflowAssignment(resource_name: str,
                                      args: DomainsApprovalWorkflowAssignmentArgs,
                                      opts: Optional[ResourceOptions] = None)

@overload
def DomainsApprovalWorkflowAssignment(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      approval_workflow: Optional[_identity.DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs] = None,
                                      assigned_to: Optional[_identity.DomainsApprovalWorkflowAssignmentAssignedToArgs] = None,
                                      assignment_type: Optional[str] = None,
                                      idcs_endpoint: Optional[str] = None,
                                      schemas: Optional[Sequence[str]] = None,
                                      attribute_sets: Optional[Sequence[str]] = None,
                                      attributes: Optional[str] = None,
                                      authorization: Optional[str] = None,
                                      ocid: Optional[str] = None,
                                      resource_type_schema_version: Optional[str] = None,
                                      tags: Optional[Sequence[_identity.DomainsApprovalWorkflowAssignmentTagArgs]] = None)
func NewDomainsApprovalWorkflowAssignment(ctx *Context, name string, args DomainsApprovalWorkflowAssignmentArgs, opts ...ResourceOption) (*DomainsApprovalWorkflowAssignment, error)
public DomainsApprovalWorkflowAssignment(string name, DomainsApprovalWorkflowAssignmentArgs args, CustomResourceOptions? opts = null)
public DomainsApprovalWorkflowAssignment(String name, DomainsApprovalWorkflowAssignmentArgs args)
public DomainsApprovalWorkflowAssignment(String name, DomainsApprovalWorkflowAssignmentArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsApprovalWorkflowAssignment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DomainsApprovalWorkflowAssignmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DomainsApprovalWorkflowAssignmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DomainsApprovalWorkflowAssignmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DomainsApprovalWorkflowAssignmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DomainsApprovalWorkflowAssignmentArgs
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 domainsApprovalWorkflowAssignmentResource = new Oci.Identity.DomainsApprovalWorkflowAssignment("domainsApprovalWorkflowAssignmentResource", new()
{
    ApprovalWorkflow = new Oci.Identity.Inputs.DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs
    {
        Type = "string",
        Value = "string",
        Display = "string",
        Ocid = "string",
        Ref = "string",
    },
    AssignedTo = new Oci.Identity.Inputs.DomainsApprovalWorkflowAssignmentAssignedToArgs
    {
        Type = "string",
        Value = "string",
        Description = "string",
        Display = "string",
        Ocid = "string",
    },
    AssignmentType = "string",
    IdcsEndpoint = "string",
    Schemas = new[]
    {
        "string",
    },
    AttributeSets = new[]
    {
        "string",
    },
    Attributes = "string",
    Authorization = "string",
    Ocid = "string",
    ResourceTypeSchemaVersion = "string",
    Tags = new[]
    {
        new Oci.Identity.Inputs.DomainsApprovalWorkflowAssignmentTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
Copy
example, err := Identity.NewDomainsApprovalWorkflowAssignment(ctx, "domainsApprovalWorkflowAssignmentResource", &Identity.DomainsApprovalWorkflowAssignmentArgs{
	ApprovalWorkflow: &identity.DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs{
		Type:    pulumi.String("string"),
		Value:   pulumi.String("string"),
		Display: pulumi.String("string"),
		Ocid:    pulumi.String("string"),
		Ref:     pulumi.String("string"),
	},
	AssignedTo: &identity.DomainsApprovalWorkflowAssignmentAssignedToArgs{
		Type:        pulumi.String("string"),
		Value:       pulumi.String("string"),
		Description: pulumi.String("string"),
		Display:     pulumi.String("string"),
		Ocid:        pulumi.String("string"),
	},
	AssignmentType: pulumi.String("string"),
	IdcsEndpoint:   pulumi.String("string"),
	Schemas: pulumi.StringArray{
		pulumi.String("string"),
	},
	AttributeSets: pulumi.StringArray{
		pulumi.String("string"),
	},
	Attributes:                pulumi.String("string"),
	Authorization:             pulumi.String("string"),
	Ocid:                      pulumi.String("string"),
	ResourceTypeSchemaVersion: pulumi.String("string"),
	Tags: identity.DomainsApprovalWorkflowAssignmentTagArray{
		&identity.DomainsApprovalWorkflowAssignmentTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
Copy
var domainsApprovalWorkflowAssignmentResource = new DomainsApprovalWorkflowAssignment("domainsApprovalWorkflowAssignmentResource", DomainsApprovalWorkflowAssignmentArgs.builder()
    .approvalWorkflow(DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs.builder()
        .type("string")
        .value("string")
        .display("string")
        .ocid("string")
        .ref("string")
        .build())
    .assignedTo(DomainsApprovalWorkflowAssignmentAssignedToArgs.builder()
        .type("string")
        .value("string")
        .description("string")
        .display("string")
        .ocid("string")
        .build())
    .assignmentType("string")
    .idcsEndpoint("string")
    .schemas("string")
    .attributeSets("string")
    .attributes("string")
    .authorization("string")
    .ocid("string")
    .resourceTypeSchemaVersion("string")
    .tags(DomainsApprovalWorkflowAssignmentTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
Copy
domains_approval_workflow_assignment_resource = oci.identity.DomainsApprovalWorkflowAssignment("domainsApprovalWorkflowAssignmentResource",
    approval_workflow={
        "type": "string",
        "value": "string",
        "display": "string",
        "ocid": "string",
        "ref": "string",
    },
    assigned_to={
        "type": "string",
        "value": "string",
        "description": "string",
        "display": "string",
        "ocid": "string",
    },
    assignment_type="string",
    idcs_endpoint="string",
    schemas=["string"],
    attribute_sets=["string"],
    attributes="string",
    authorization="string",
    ocid="string",
    resource_type_schema_version="string",
    tags=[{
        "key": "string",
        "value": "string",
    }])
Copy
const domainsApprovalWorkflowAssignmentResource = new oci.identity.DomainsApprovalWorkflowAssignment("domainsApprovalWorkflowAssignmentResource", {
    approvalWorkflow: {
        type: "string",
        value: "string",
        display: "string",
        ocid: "string",
        ref: "string",
    },
    assignedTo: {
        type: "string",
        value: "string",
        description: "string",
        display: "string",
        ocid: "string",
    },
    assignmentType: "string",
    idcsEndpoint: "string",
    schemas: ["string"],
    attributeSets: ["string"],
    attributes: "string",
    authorization: "string",
    ocid: "string",
    resourceTypeSchemaVersion: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
});
Copy
type: oci:Identity:DomainsApprovalWorkflowAssignment
properties:
    approvalWorkflow:
        display: string
        ocid: string
        ref: string
        type: string
        value: string
    assignedTo:
        description: string
        display: string
        ocid: string
        type: string
        value: string
    assignmentType: string
    attributeSets:
        - string
    attributes: string
    authorization: string
    idcsEndpoint: string
    ocid: string
    resourceTypeSchemaVersion: string
    schemas:
        - string
    tags:
        - key: string
          value: string
Copy

DomainsApprovalWorkflowAssignment 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 DomainsApprovalWorkflowAssignment resource accepts the following input properties:

ApprovalWorkflow
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentApprovalWorkflow

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignedTo
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentAssignedTo

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignmentType
This property is required.
Changes to this property will trigger replacement.
string

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
IdcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
Schemas
This property is required.
Changes to this property will trigger replacement.
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
AttributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
Authorization Changes to this property will trigger replacement. string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
Ocid Changes to this property will trigger replacement. 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
ResourceTypeSchemaVersion Changes to this property will trigger replacement. string
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.
Tags Changes to this property will trigger replacement. List<DomainsApprovalWorkflowAssignmentTag>

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
ApprovalWorkflow
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignedTo
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentAssignedToArgs

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignmentType
This property is required.
Changes to this property will trigger replacement.
string

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
IdcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
Schemas
This property is required.
Changes to this property will trigger replacement.
[]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
AttributeSets Changes to this property will trigger replacement. []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 Changes to this property will trigger replacement. 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.
Authorization Changes to this property will trigger replacement. string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
Ocid Changes to this property will trigger replacement. 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
ResourceTypeSchemaVersion Changes to this property will trigger replacement. string
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.
Tags Changes to this property will trigger replacement. []DomainsApprovalWorkflowAssignmentTagArgs

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
approvalWorkflow
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentApprovalWorkflow

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignedTo
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentAssignedTo

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignmentType
This property is required.
Changes to this property will trigger replacement.
String

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
String
The basic endpoint for the identity domain
schemas
This property is required.
Changes to this property will trigger replacement.
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
attributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
ocid Changes to this property will trigger replacement. 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
resourceTypeSchemaVersion Changes to this property will trigger replacement. String
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.
tags Changes to this property will trigger replacement. List<DomainsApprovalWorkflowAssignmentTag>

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
approvalWorkflow
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentApprovalWorkflow

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignedTo
This property is required.
Changes to this property will trigger replacement.
DomainsApprovalWorkflowAssignmentAssignedTo

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignmentType
This property is required.
Changes to this property will trigger replacement.
string

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
schemas
This property is required.
Changes to this property will trigger replacement.
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
attributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
ocid Changes to this property will trigger replacement. 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
resourceTypeSchemaVersion Changes to this property will trigger replacement. string
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.
tags Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentTag[]

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
approval_workflow
This property is required.
Changes to this property will trigger replacement.
identity.DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assigned_to
This property is required.
Changes to this property will trigger replacement.
identity.DomainsApprovalWorkflowAssignmentAssignedToArgs

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignment_type
This property is required.
Changes to this property will trigger replacement.
str

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
idcs_endpoint
This property is required.
Changes to this property will trigger replacement.
str
The basic endpoint for the identity domain
schemas
This property is required.
Changes to this property will trigger replacement.
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
attribute_sets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. str
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
ocid Changes to this property will trigger replacement. 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_schema_version Changes to this property will trigger replacement. str
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.
tags Changes to this property will trigger replacement. Sequence[identity.DomainsApprovalWorkflowAssignmentTagArgs]

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
approvalWorkflow
This property is required.
Changes to this property will trigger replacement.
Property Map

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignedTo
This property is required.
Changes to this property will trigger replacement.
Property Map

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignmentType
This property is required.
Changes to this property will trigger replacement.
String

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
String
The basic endpoint for the identity domain
schemas
This property is required.
Changes to this property will trigger replacement.
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
attributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
ocid Changes to this property will trigger replacement. 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
resourceTypeSchemaVersion Changes to this property will trigger replacement. String
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.
tags Changes to this property will trigger replacement. 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 DomainsApprovalWorkflowAssignment 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
DeleteInProgress bool

(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
Id string
The provider-assigned unique ID for this managed resource.
IdcsCreatedBies List<DomainsApprovalWorkflowAssignmentIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsLastModifiedBies List<DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(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
IdcsPreventedOperations List<string>

(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
Metas List<DomainsApprovalWorkflowAssignmentMeta>

(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
DeleteInProgress bool

(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
Id string
The provider-assigned unique ID for this managed resource.
IdcsCreatedBies []DomainsApprovalWorkflowAssignmentIdcsCreatedBy

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsLastModifiedBies []DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(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
IdcsPreventedOperations []string

(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
Metas []DomainsApprovalWorkflowAssignmentMeta

(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
deleteInProgress Boolean

(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
id String
The provider-assigned unique ID for this managed resource.
idcsCreatedBies List<DomainsApprovalWorkflowAssignmentIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsLastModifiedBies List<DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(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
idcsPreventedOperations List<String>

(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
metas List<DomainsApprovalWorkflowAssignmentMeta>

(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
deleteInProgress boolean

(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
id string
The provider-assigned unique ID for this managed resource.
idcsCreatedBies DomainsApprovalWorkflowAssignmentIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsLastModifiedBies DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease string

(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
idcsPreventedOperations string[]

(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
metas DomainsApprovalWorkflowAssignmentMeta[]

(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
delete_in_progress bool

(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
id str
The provider-assigned unique ID for this managed resource.
idcs_created_bies Sequence[identity.DomainsApprovalWorkflowAssignmentIdcsCreatedBy]

(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_modified_bies Sequence[identity.DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy]

(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_upgraded_in_release str

(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_operations Sequence[str]

(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
metas Sequence[identity.DomainsApprovalWorkflowAssignmentMeta]

(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
deleteInProgress Boolean

(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
id String
The provider-assigned unique ID for this managed resource.
idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(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
idcsPreventedOperations List<String>

(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
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 DomainsApprovalWorkflowAssignment Resource

Get an existing DomainsApprovalWorkflowAssignment 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?: DomainsApprovalWorkflowAssignmentState, opts?: CustomResourceOptions): DomainsApprovalWorkflowAssignment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        approval_workflow: Optional[_identity.DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs] = None,
        assigned_to: Optional[_identity.DomainsApprovalWorkflowAssignmentAssignedToArgs] = None,
        assignment_type: Optional[str] = None,
        attribute_sets: Optional[Sequence[str]] = None,
        attributes: Optional[str] = None,
        authorization: Optional[str] = None,
        compartment_ocid: Optional[str] = None,
        delete_in_progress: Optional[bool] = None,
        domain_ocid: Optional[str] = None,
        idcs_created_bies: Optional[Sequence[_identity.DomainsApprovalWorkflowAssignmentIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[_identity.DomainsApprovalWorkflowAssignmentIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        metas: Optional[Sequence[_identity.DomainsApprovalWorkflowAssignmentMetaArgs]] = None,
        ocid: Optional[str] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        tags: Optional[Sequence[_identity.DomainsApprovalWorkflowAssignmentTagArgs]] = None,
        tenancy_ocid: Optional[str] = None) -> DomainsApprovalWorkflowAssignment
func GetDomainsApprovalWorkflowAssignment(ctx *Context, name string, id IDInput, state *DomainsApprovalWorkflowAssignmentState, opts ...ResourceOption) (*DomainsApprovalWorkflowAssignment, error)
public static DomainsApprovalWorkflowAssignment Get(string name, Input<string> id, DomainsApprovalWorkflowAssignmentState? state, CustomResourceOptions? opts = null)
public static DomainsApprovalWorkflowAssignment get(String name, Output<String> id, DomainsApprovalWorkflowAssignmentState state, CustomResourceOptions options)
resources:  _:    type: oci:Identity:DomainsApprovalWorkflowAssignment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
ApprovalWorkflow Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentApprovalWorkflow

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignedTo Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentAssignedTo

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignmentType Changes to this property will trigger replacement. string

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
AttributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
Authorization Changes to this property will trigger replacement. 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
DeleteInProgress bool

(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
IdcsCreatedBies List<DomainsApprovalWorkflowAssignmentIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsEndpoint Changes to this property will trigger replacement. string
The basic endpoint for the identity domain
IdcsLastModifiedBies List<DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(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
IdcsPreventedOperations List<string>

(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
Metas List<DomainsApprovalWorkflowAssignmentMeta>

(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 Changes to this property will trigger replacement. 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
ResourceTypeSchemaVersion Changes to this property will trigger replacement. string
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 Changes to this property will trigger replacement. 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
Tags Changes to this property will trigger replacement. List<DomainsApprovalWorkflowAssignmentTag>

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

ApprovalWorkflow Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignedTo Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentAssignedToArgs

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
AssignmentType Changes to this property will trigger replacement. string

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
AttributeSets Changes to this property will trigger replacement. []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 Changes to this property will trigger replacement. 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.
Authorization Changes to this property will trigger replacement. 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
DeleteInProgress bool

(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
IdcsCreatedBies []DomainsApprovalWorkflowAssignmentIdcsCreatedByArgs

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsEndpoint Changes to this property will trigger replacement. string
The basic endpoint for the identity domain
IdcsLastModifiedBies []DomainsApprovalWorkflowAssignmentIdcsLastModifiedByArgs

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(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
IdcsPreventedOperations []string

(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
Metas []DomainsApprovalWorkflowAssignmentMetaArgs

(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 Changes to this property will trigger replacement. 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
ResourceTypeSchemaVersion Changes to this property will trigger replacement. string
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 Changes to this property will trigger replacement. []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
Tags Changes to this property will trigger replacement. []DomainsApprovalWorkflowAssignmentTagArgs

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

approvalWorkflow Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentApprovalWorkflow

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignedTo Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentAssignedTo

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignmentType Changes to this property will trigger replacement. String

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
attributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. 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
deleteInProgress Boolean

(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
idcsCreatedBies List<DomainsApprovalWorkflowAssignmentIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsEndpoint Changes to this property will trigger replacement. String
The basic endpoint for the identity domain
idcsLastModifiedBies List<DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(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
idcsPreventedOperations List<String>

(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
metas List<DomainsApprovalWorkflowAssignmentMeta>

(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 Changes to this property will trigger replacement. 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
resourceTypeSchemaVersion Changes to this property will trigger replacement. String
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 Changes to this property will trigger replacement. 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
tags Changes to this property will trigger replacement. List<DomainsApprovalWorkflowAssignmentTag>

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

approvalWorkflow Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentApprovalWorkflow

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignedTo Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentAssignedTo

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignmentType Changes to this property will trigger replacement. string

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
attributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. 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
deleteInProgress boolean

(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
idcsCreatedBies DomainsApprovalWorkflowAssignmentIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsEndpoint Changes to this property will trigger replacement. string
The basic endpoint for the identity domain
idcsLastModifiedBies DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease string

(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
idcsPreventedOperations string[]

(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
metas DomainsApprovalWorkflowAssignmentMeta[]

(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 Changes to this property will trigger replacement. 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
resourceTypeSchemaVersion Changes to this property will trigger replacement. string
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 Changes to this property will trigger replacement. 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
tags Changes to this property will trigger replacement. DomainsApprovalWorkflowAssignmentTag[]

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

approval_workflow Changes to this property will trigger replacement. identity.DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assigned_to Changes to this property will trigger replacement. identity.DomainsApprovalWorkflowAssignmentAssignedToArgs

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignment_type Changes to this property will trigger replacement. str

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
attribute_sets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. 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
delete_in_progress bool

(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
idcs_created_bies Sequence[identity.DomainsApprovalWorkflowAssignmentIdcsCreatedByArgs]

(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 Changes to this property will trigger replacement. str
The basic endpoint for the identity domain
idcs_last_modified_bies Sequence[identity.DomainsApprovalWorkflowAssignmentIdcsLastModifiedByArgs]

(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_upgraded_in_release str

(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_operations Sequence[str]

(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
metas Sequence[identity.DomainsApprovalWorkflowAssignmentMetaArgs]

(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 Changes to this property will trigger replacement. 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_schema_version Changes to this property will trigger replacement. str
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 Changes to this property will trigger replacement. 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
tags Changes to this property will trigger replacement. Sequence[identity.DomainsApprovalWorkflowAssignmentTagArgs]

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

approvalWorkflow Changes to this property will trigger replacement. Property Map

Details of the Approval Workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignedTo Changes to this property will trigger replacement. Property Map

Details of resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
assignmentType Changes to this property will trigger replacement. String

Type of approval workflow assignment to the resource. Resources like Group have only one workflow associated (default assignment type is membership), but resources like TemporalBusinessRole can have atleast 2 AWs attached, one for membership to TPR, another for activation of that TPR membership

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
attributeSets Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
authorization Changes to this property will trigger replacement. 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
deleteInProgress Boolean

(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
idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsEndpoint Changes to this property will trigger replacement. String
The basic endpoint for the identity domain
idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(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
idcsPreventedOperations List<String>

(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
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 Changes to this property will trigger replacement. 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
resourceTypeSchemaVersion Changes to this property will trigger replacement. String
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 Changes to this property will trigger replacement. 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
tags Changes to this property will trigger replacement. 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

DomainsApprovalWorkflowAssignmentApprovalWorkflow
, DomainsApprovalWorkflowAssignmentApprovalWorkflowArgs

Type
This property is required.
Changes to this property will trigger replacement.
string

Indicates type of the entity that is associated with this assignment (for ARM validation)

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsDefaultValue: ApprovalWorkflow
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
Value
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Display string

(Updatable) Display name of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Ocid Changes to this property will trigger replacement. string

Unique Oracle Cloud Infrastructure Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) URI of the approval workflow

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: reference
  • uniqueness: none
Type
This property is required.
Changes to this property will trigger replacement.
string

Indicates type of the entity that is associated with this assignment (for ARM validation)

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsDefaultValue: ApprovalWorkflow
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
Value
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Display string

(Updatable) Display name of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Ocid Changes to this property will trigger replacement. string

Unique Oracle Cloud Infrastructure Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) URI of the approval workflow

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: reference
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
String

Indicates type of the entity that is associated with this assignment (for ARM validation)

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsDefaultValue: ApprovalWorkflow
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
String

Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
display String

(Updatable) Display name of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. String

Unique Oracle Cloud Infrastructure Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) URI of the approval workflow

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: reference
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
string

Indicates type of the entity that is associated with this assignment (for ARM validation)

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsDefaultValue: ApprovalWorkflow
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
display string

(Updatable) Display name of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. string

Unique Oracle Cloud Infrastructure Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref string

(Updatable) URI of the approval workflow

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: reference
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
str

Indicates type of the entity that is associated with this assignment (for ARM validation)

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsDefaultValue: ApprovalWorkflow
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
str

Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
display str

(Updatable) Display name of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. str

Unique Oracle Cloud Infrastructure Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref str

(Updatable) URI of the approval workflow

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: reference
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
String

Indicates type of the entity that is associated with this assignment (for ARM validation)

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsDefaultValue: ApprovalWorkflow
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
String

Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
display String

(Updatable) Display name of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. String

Unique Oracle Cloud Infrastructure Identifier of the approval workflow

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) URI of the approval workflow

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: reference
  • uniqueness: none

DomainsApprovalWorkflowAssignmentAssignedTo
, DomainsApprovalWorkflowAssignmentAssignedToArgs

Type
This property is required.
Changes to this property will trigger replacement.
string

Type of the resource (stripe and non-stripe) for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Value
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Description string

(Updatable) Description

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Display string

(Updatable) Display name of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Ocid Changes to this property will trigger replacement. string

Ocid of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none
Type
This property is required.
Changes to this property will trigger replacement.
string

Type of the resource (stripe and non-stripe) for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Value
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Description string

(Updatable) Description

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Display string

(Updatable) Display name of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Ocid Changes to this property will trigger replacement. string

Ocid of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
String

Type of the resource (stripe and non-stripe) for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
String

Identifier of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
description String

(Updatable) Description

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
display String

(Updatable) Display name of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. String

Ocid of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
string

Type of the resource (stripe and non-stripe) for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
string

Identifier of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
description string

(Updatable) Description

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
display string

(Updatable) Display name of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. string

Ocid of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
str

Type of the resource (stripe and non-stripe) for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
str

Identifier of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
description str

(Updatable) Description

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
display str

(Updatable) Display name of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. str

Ocid of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none
type
This property is required.
Changes to this property will trigger replacement.
String

Type of the resource (stripe and non-stripe) for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
String

Identifier of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
description String

(Updatable) Description

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
display String

(Updatable) Display name of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
ocid Changes to this property will trigger replacement. String

Ocid of the resource for which Approval Workflow is assigned

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none

DomainsApprovalWorkflowAssignmentIdcsCreatedBy
, DomainsApprovalWorkflowAssignmentIdcsCreatedByArgs

Value
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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

DomainsApprovalWorkflowAssignmentIdcsLastModifiedBy
, DomainsApprovalWorkflowAssignmentIdcsLastModifiedByArgs

Value
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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

DomainsApprovalWorkflowAssignmentMeta
, DomainsApprovalWorkflowAssignmentMetaArgs

Created Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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

DomainsApprovalWorkflowAssignmentTag
, DomainsApprovalWorkflowAssignmentTagArgs

Key
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
string

Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Key
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
string

Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
String

Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
string

Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
str

Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
String

Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none

Import

ApprovalWorkflowAssignments can be imported using the id, e.g.

$ pulumi import oci:Identity/domainsApprovalWorkflowAssignment:DomainsApprovalWorkflowAssignment test_approval_workflow_assignment "idcsEndpoint/{idcsEndpoint}/approvalWorkflowAssignments/{approvalWorkflowAssignmentId}"
Copy

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 oci Terraform Provider.