1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. DomainsMyRequest
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Identity.DomainsMyRequest

Explore with Pulumi AI

This resource provides the My Request resource in Oracle Cloud Infrastructure Identity Domains service.

Create a Request

** IMPORTANT ** In our latest release, the property status is changed to readonly. It will now be automatically handled by the system. Please remove any manual assignment to this property to use the latest version.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testMyRequest = new oci.identity.DomainsMyRequest("test_my_request", {
    approvalDetails: [{}],
    idcsEndpoint: testDomain.url,
    justification: myRequestJustification,
    requesting: {
        type: myRequestRequestingType,
        value: groupToRequest.id,
        description: myRequestRequestingDescription,
    },
    schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:Request"],
    action: myRequestAction,
    attributeSets: ["all"],
    attributes: "",
    authorization: myRequestAuthorization,
    ocid: myRequestOcid,
    requestor: {
        value: myRequestRequestorValue,
    },
    resourceTypeSchemaVersion: myRequestResourceTypeSchemaVersion,
    tags: [{
        key: myRequestTagsKey,
        value: myRequestTagsValue,
    }],
});
Copy
import pulumi
import pulumi_oci as oci

test_my_request = oci.identity.DomainsMyRequest("test_my_request",
    approval_details=[{}],
    idcs_endpoint=test_domain["url"],
    justification=my_request_justification,
    requesting={
        "type": my_request_requesting_type,
        "value": group_to_request["id"],
        "description": my_request_requesting_description,
    },
    schemas=["urn:ietf:params:scim:schemas:oracle:idcs:Request"],
    action=my_request_action,
    attribute_sets=["all"],
    attributes="",
    authorization=my_request_authorization,
    ocid=my_request_ocid,
    requestor={
        "value": my_request_requestor_value,
    },
    resource_type_schema_version=my_request_resource_type_schema_version,
    tags=[{
        "key": my_request_tags_key,
        "value": my_request_tags_value,
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/identity"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := identity.NewDomainsMyRequest(ctx, "test_my_request", &identity.DomainsMyRequestArgs{
			ApprovalDetails: identity.DomainsMyRequestApprovalDetailArray{
				&identity.DomainsMyRequestApprovalDetailArgs{},
			},
			IdcsEndpoint:  pulumi.Any(testDomain.Url),
			Justification: pulumi.Any(myRequestJustification),
			Requesting: &identity.DomainsMyRequestRequestingArgs{
				Type:        pulumi.Any(myRequestRequestingType),
				Value:       pulumi.Any(groupToRequest.Id),
				Description: pulumi.Any(myRequestRequestingDescription),
			},
			Schemas: pulumi.StringArray{
				pulumi.String("urn:ietf:params:scim:schemas:oracle:idcs:Request"),
			},
			Action: pulumi.Any(myRequestAction),
			AttributeSets: pulumi.StringArray{
				pulumi.String("all"),
			},
			Attributes:    pulumi.String(""),
			Authorization: pulumi.Any(myRequestAuthorization),
			Ocid:          pulumi.Any(myRequestOcid),
			Requestor: &identity.DomainsMyRequestRequestorArgs{
				Value: pulumi.Any(myRequestRequestorValue),
			},
			ResourceTypeSchemaVersion: pulumi.Any(myRequestResourceTypeSchemaVersion),
			Tags: identity.DomainsMyRequestTagArray{
				&identity.DomainsMyRequestTagArgs{
					Key:   pulumi.Any(myRequestTagsKey),
					Value: pulumi.Any(myRequestTagsValue),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testMyRequest = new Oci.Identity.DomainsMyRequest("test_my_request", new()
    {
        ApprovalDetails = new[]
        {
            null,
        },
        IdcsEndpoint = testDomain.Url,
        Justification = myRequestJustification,
        Requesting = new Oci.Identity.Inputs.DomainsMyRequestRequestingArgs
        {
            Type = myRequestRequestingType,
            Value = groupToRequest.Id,
            Description = myRequestRequestingDescription,
        },
        Schemas = new[]
        {
            "urn:ietf:params:scim:schemas:oracle:idcs:Request",
        },
        Action = myRequestAction,
        AttributeSets = new[]
        {
            "all",
        },
        Attributes = "",
        Authorization = myRequestAuthorization,
        Ocid = myRequestOcid,
        Requestor = new Oci.Identity.Inputs.DomainsMyRequestRequestorArgs
        {
            Value = myRequestRequestorValue,
        },
        ResourceTypeSchemaVersion = myRequestResourceTypeSchemaVersion,
        Tags = new[]
        {
            new Oci.Identity.Inputs.DomainsMyRequestTagArgs
            {
                Key = myRequestTagsKey,
                Value = myRequestTagsValue,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.DomainsMyRequest;
import com.pulumi.oci.Identity.DomainsMyRequestArgs;
import com.pulumi.oci.Identity.inputs.DomainsMyRequestApprovalDetailArgs;
import com.pulumi.oci.Identity.inputs.DomainsMyRequestRequestingArgs;
import com.pulumi.oci.Identity.inputs.DomainsMyRequestRequestorArgs;
import com.pulumi.oci.Identity.inputs.DomainsMyRequestTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testMyRequest = new DomainsMyRequest("testMyRequest", DomainsMyRequestArgs.builder()
            .approvalDetails(DomainsMyRequestApprovalDetailArgs.builder()
                .build())
            .idcsEndpoint(testDomain.url())
            .justification(myRequestJustification)
            .requesting(DomainsMyRequestRequestingArgs.builder()
                .type(myRequestRequestingType)
                .value(groupToRequest.id())
                .description(myRequestRequestingDescription)
                .build())
            .schemas("urn:ietf:params:scim:schemas:oracle:idcs:Request")
            .action(myRequestAction)
            .attributeSets("all")
            .attributes("")
            .authorization(myRequestAuthorization)
            .ocid(myRequestOcid)
            .requestor(DomainsMyRequestRequestorArgs.builder()
                .value(myRequestRequestorValue)
                .build())
            .resourceTypeSchemaVersion(myRequestResourceTypeSchemaVersion)
            .tags(DomainsMyRequestTagArgs.builder()
                .key(myRequestTagsKey)
                .value(myRequestTagsValue)
                .build())
            .build());

    }
}
Copy
resources:
  testMyRequest:
    type: oci:Identity:DomainsMyRequest
    name: test_my_request
    properties:
      approvalDetails:
        - {}
      idcsEndpoint: ${testDomain.url}
      justification: ${myRequestJustification}
      requesting:
        type: ${myRequestRequestingType}
        value: ${groupToRequest.id}
        description: ${myRequestRequestingDescription}
      schemas:
        - urn:ietf:params:scim:schemas:oracle:idcs:Request
      action: ${myRequestAction}
      attributeSets:
        - all
      attributes: ""
      authorization: ${myRequestAuthorization}
      ocid: ${myRequestOcid}
      requestor:
        value: ${myRequestRequestorValue}
      resourceTypeSchemaVersion: ${myRequestResourceTypeSchemaVersion}
      tags:
        - key: ${myRequestTagsKey}
          value: ${myRequestTagsValue}
Copy

Create DomainsMyRequest Resource

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

Constructor syntax

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

@overload
def DomainsMyRequest(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     idcs_endpoint: Optional[str] = None,
                     schemas: Optional[Sequence[str]] = None,
                     requesting: Optional[_identity.DomainsMyRequestRequestingArgs] = None,
                     justification: Optional[str] = None,
                     attributes: Optional[str] = None,
                     authorization: Optional[str] = None,
                     action: Optional[str] = None,
                     ocid: Optional[str] = None,
                     attribute_sets: Optional[Sequence[str]] = None,
                     requestor: Optional[_identity.DomainsMyRequestRequestorArgs] = None,
                     resource_type_schema_version: Optional[str] = None,
                     approval_details: Optional[Sequence[_identity.DomainsMyRequestApprovalDetailArgs]] = None,
                     tags: Optional[Sequence[_identity.DomainsMyRequestTagArgs]] = None)
func NewDomainsMyRequest(ctx *Context, name string, args DomainsMyRequestArgs, opts ...ResourceOption) (*DomainsMyRequest, error)
public DomainsMyRequest(string name, DomainsMyRequestArgs args, CustomResourceOptions? opts = null)
public DomainsMyRequest(String name, DomainsMyRequestArgs args)
public DomainsMyRequest(String name, DomainsMyRequestArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsMyRequest
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. DomainsMyRequestArgs
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. DomainsMyRequestArgs
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. DomainsMyRequestArgs
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. DomainsMyRequestArgs
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. DomainsMyRequestArgs
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 domainsMyRequestResource = new Oci.Identity.DomainsMyRequest("domainsMyRequestResource", new()
{
    IdcsEndpoint = "string",
    Schemas = new[]
    {
        "string",
    },
    Requesting = new Oci.Identity.Inputs.DomainsMyRequestRequestingArgs
    {
        Type = "string",
        Value = "string",
        Description = "string",
        Display = "string",
        Ref = "string",
    },
    Justification = "string",
    Attributes = "string",
    Authorization = "string",
    Action = "string",
    Ocid = "string",
    AttributeSets = new[]
    {
        "string",
    },
    Requestor = new Oci.Identity.Inputs.DomainsMyRequestRequestorArgs
    {
        Value = "string",
        Display = "string",
        Ref = "string",
    },
    ResourceTypeSchemaVersion = "string",
    ApprovalDetails = new[]
    {
        new Oci.Identity.Inputs.DomainsMyRequestApprovalDetailArgs
        {
            ApprovalType = "string",
            ApproverDisplayName = "string",
            ApproverId = "string",
            Justification = "string",
            Order = 0,
            Status = "string",
            TimeUpdated = "string",
        },
    },
    Tags = new[]
    {
        new Oci.Identity.Inputs.DomainsMyRequestTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
Copy
example, err := Identity.NewDomainsMyRequest(ctx, "domainsMyRequestResource", &Identity.DomainsMyRequestArgs{
	IdcsEndpoint: pulumi.String("string"),
	Schemas: pulumi.StringArray{
		pulumi.String("string"),
	},
	Requesting: &identity.DomainsMyRequestRequestingArgs{
		Type:        pulumi.String("string"),
		Value:       pulumi.String("string"),
		Description: pulumi.String("string"),
		Display:     pulumi.String("string"),
		Ref:         pulumi.String("string"),
	},
	Justification: pulumi.String("string"),
	Attributes:    pulumi.String("string"),
	Authorization: pulumi.String("string"),
	Action:        pulumi.String("string"),
	Ocid:          pulumi.String("string"),
	AttributeSets: pulumi.StringArray{
		pulumi.String("string"),
	},
	Requestor: &identity.DomainsMyRequestRequestorArgs{
		Value:   pulumi.String("string"),
		Display: pulumi.String("string"),
		Ref:     pulumi.String("string"),
	},
	ResourceTypeSchemaVersion: pulumi.String("string"),
	ApprovalDetails: identity.DomainsMyRequestApprovalDetailArray{
		&identity.DomainsMyRequestApprovalDetailArgs{
			ApprovalType:        pulumi.String("string"),
			ApproverDisplayName: pulumi.String("string"),
			ApproverId:          pulumi.String("string"),
			Justification:       pulumi.String("string"),
			Order:               pulumi.Int(0),
			Status:              pulumi.String("string"),
			TimeUpdated:         pulumi.String("string"),
		},
	},
	Tags: identity.DomainsMyRequestTagArray{
		&identity.DomainsMyRequestTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
Copy
var domainsMyRequestResource = new DomainsMyRequest("domainsMyRequestResource", DomainsMyRequestArgs.builder()
    .idcsEndpoint("string")
    .schemas("string")
    .requesting(DomainsMyRequestRequestingArgs.builder()
        .type("string")
        .value("string")
        .description("string")
        .display("string")
        .ref("string")
        .build())
    .justification("string")
    .attributes("string")
    .authorization("string")
    .action("string")
    .ocid("string")
    .attributeSets("string")
    .requestor(DomainsMyRequestRequestorArgs.builder()
        .value("string")
        .display("string")
        .ref("string")
        .build())
    .resourceTypeSchemaVersion("string")
    .approvalDetails(DomainsMyRequestApprovalDetailArgs.builder()
        .approvalType("string")
        .approverDisplayName("string")
        .approverId("string")
        .justification("string")
        .order(0)
        .status("string")
        .timeUpdated("string")
        .build())
    .tags(DomainsMyRequestTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
Copy
domains_my_request_resource = oci.identity.DomainsMyRequest("domainsMyRequestResource",
    idcs_endpoint="string",
    schemas=["string"],
    requesting={
        "type": "string",
        "value": "string",
        "description": "string",
        "display": "string",
        "ref": "string",
    },
    justification="string",
    attributes="string",
    authorization="string",
    action="string",
    ocid="string",
    attribute_sets=["string"],
    requestor={
        "value": "string",
        "display": "string",
        "ref": "string",
    },
    resource_type_schema_version="string",
    approval_details=[{
        "approval_type": "string",
        "approver_display_name": "string",
        "approver_id": "string",
        "justification": "string",
        "order": 0,
        "status": "string",
        "time_updated": "string",
    }],
    tags=[{
        "key": "string",
        "value": "string",
    }])
Copy
const domainsMyRequestResource = new oci.identity.DomainsMyRequest("domainsMyRequestResource", {
    idcsEndpoint: "string",
    schemas: ["string"],
    requesting: {
        type: "string",
        value: "string",
        description: "string",
        display: "string",
        ref: "string",
    },
    justification: "string",
    attributes: "string",
    authorization: "string",
    action: "string",
    ocid: "string",
    attributeSets: ["string"],
    requestor: {
        value: "string",
        display: "string",
        ref: "string",
    },
    resourceTypeSchemaVersion: "string",
    approvalDetails: [{
        approvalType: "string",
        approverDisplayName: "string",
        approverId: "string",
        justification: "string",
        order: 0,
        status: "string",
        timeUpdated: "string",
    }],
    tags: [{
        key: "string",
        value: "string",
    }],
});
Copy
type: oci:Identity:DomainsMyRequest
properties:
    action: string
    approvalDetails:
        - approvalType: string
          approverDisplayName: string
          approverId: string
          justification: string
          order: 0
          status: string
          timeUpdated: string
    attributeSets:
        - string
    attributes: string
    authorization: string
    idcsEndpoint: string
    justification: string
    ocid: string
    requesting:
        description: string
        display: string
        ref: string
        type: string
        value: string
    requestor:
        display: string
        ref: string
        value: string
    resourceTypeSchemaVersion: string
    schemas:
        - string
    tags:
        - key: string
          value: string
Copy

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

IdcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
Justification
This property is required.
Changes to this property will trigger replacement.
string

justification

SCIM++ Properties:

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
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
Action Changes to this property will trigger replacement. string

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ApprovalDetails Changes to this property will trigger replacement. List<DomainsMyRequestApprovalDetail>

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
Requestor Changes to this property will trigger replacement. DomainsMyRequestRequestor

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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<DomainsMyRequestTag>

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
IdcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
Justification
This property is required.
Changes to this property will trigger replacement.
string

justification

SCIM++ Properties:

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
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
Action Changes to this property will trigger replacement. string

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

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

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
Requestor Changes to this property will trigger replacement. DomainsMyRequestRequestorArgs

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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. []DomainsMyRequestTagArgs

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
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
String
The basic endpoint for the identity domain
justification
This property is required.
Changes to this property will trigger replacement.
String

justification

SCIM++ Properties:

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
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
action Changes to this property will trigger replacement. String

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
approvalDetails Changes to this property will trigger replacement. List<DomainsMyRequestApprovalDetail>

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
requestor Changes to this property will trigger replacement. DomainsMyRequestRequestor

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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<DomainsMyRequestTag>

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
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
justification
This property is required.
Changes to this property will trigger replacement.
string

justification

SCIM++ Properties:

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
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
action Changes to this property will trigger replacement. string

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

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

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
requestor Changes to this property will trigger replacement. DomainsMyRequestRequestor

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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. DomainsMyRequestTag[]

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
idcs_endpoint
This property is required.
Changes to this property will trigger replacement.
str
The basic endpoint for the identity domain
justification
This property is required.
Changes to this property will trigger replacement.
str

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
requesting
This property is required.
Changes to this property will trigger replacement.
identity.DomainsMyRequestRequestingArgs

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
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
action Changes to this property will trigger replacement. str

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
approval_details Changes to this property will trigger replacement. Sequence[identity.DomainsMyRequestApprovalDetailArgs]

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
requestor Changes to this property will trigger replacement. identity.DomainsMyRequestRequestorArgs

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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.DomainsMyRequestTagArgs]

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
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
String
The basic endpoint for the identity domain
justification
This property is required.
Changes to this property will trigger replacement.
String

justification

SCIM++ Properties:

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
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
action Changes to this property will trigger replacement. String

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
approvalDetails Changes to this property will trigger replacement. List<Property Map>

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
requestor Changes to this property will trigger replacement. Property Map

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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 DomainsMyRequest 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
Expires string

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
Id string
The provider-assigned unique ID for this managed resource.
IdcsCreatedBies List<DomainsMyRequestIdcsCreatedBy>

(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<DomainsMyRequestIdcsLastModifiedBy>

(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<DomainsMyRequestMeta>

(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
Status string

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • 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

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
Expires string

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
Id string
The provider-assigned unique ID for this managed resource.
IdcsCreatedBies []DomainsMyRequestIdcsCreatedBy

(Updatable) The User or App who created the Resource

SCIM++ Properties:

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

(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 []DomainsMyRequestMeta

(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
Status string

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • 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

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
expires String

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
id String
The provider-assigned unique ID for this managed resource.
idcsCreatedBies List<DomainsMyRequestIdcsCreatedBy>

(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<DomainsMyRequestIdcsLastModifiedBy>

(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<DomainsMyRequestMeta>

(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
status String

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • 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

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
expires string

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
id string
The provider-assigned unique ID for this managed resource.
idcsCreatedBies DomainsMyRequestIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

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

(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 DomainsMyRequestMeta[]

(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
status string

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • 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

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
expires str

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
id str
The provider-assigned unique ID for this managed resource.
idcs_created_bies Sequence[identity.DomainsMyRequestIdcsCreatedBy]

(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.DomainsMyRequestIdcsLastModifiedBy]

(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.DomainsMyRequestMeta]

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

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • 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

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
expires String

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • 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
status String

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • 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

Look up Existing DomainsMyRequest Resource

Get an existing DomainsMyRequest 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?: DomainsMyRequestState, opts?: CustomResourceOptions): DomainsMyRequest
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action: Optional[str] = None,
        approval_details: Optional[Sequence[_identity.DomainsMyRequestApprovalDetailArgs]] = 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,
        expires: Optional[str] = None,
        idcs_created_bies: Optional[Sequence[_identity.DomainsMyRequestIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[_identity.DomainsMyRequestIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        justification: Optional[str] = None,
        metas: Optional[Sequence[_identity.DomainsMyRequestMetaArgs]] = None,
        ocid: Optional[str] = None,
        requesting: Optional[_identity.DomainsMyRequestRequestingArgs] = None,
        requestor: Optional[_identity.DomainsMyRequestRequestorArgs] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        status: Optional[str] = None,
        tags: Optional[Sequence[_identity.DomainsMyRequestTagArgs]] = None,
        tenancy_ocid: Optional[str] = None) -> DomainsMyRequest
func GetDomainsMyRequest(ctx *Context, name string, id IDInput, state *DomainsMyRequestState, opts ...ResourceOption) (*DomainsMyRequest, error)
public static DomainsMyRequest Get(string name, Input<string> id, DomainsMyRequestState? state, CustomResourceOptions? opts = null)
public static DomainsMyRequest get(String name, Output<String> id, DomainsMyRequestState state, CustomResourceOptions options)
resources:  _:    type: oci:Identity:DomainsMyRequest    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:
Action Changes to this property will trigger replacement. string

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ApprovalDetails Changes to this property will trigger replacement. List<DomainsMyRequestApprovalDetail>

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
Expires string

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
IdcsCreatedBies List<DomainsMyRequestIdcsCreatedBy>

(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<DomainsMyRequestIdcsLastModifiedBy>

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

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Metas List<DomainsMyRequestMeta>

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
Requestor Changes to this property will trigger replacement. DomainsMyRequestRequestor

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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
Status string

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Tags Changes to this property will trigger replacement. List<DomainsMyRequestTag>

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

Action Changes to this property will trigger replacement. string

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

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

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
Expires string

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
IdcsCreatedBies []DomainsMyRequestIdcsCreatedByArgs

(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 []DomainsMyRequestIdcsLastModifiedByArgs

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

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Metas []DomainsMyRequestMetaArgs

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
Requestor Changes to this property will trigger replacement. DomainsMyRequestRequestorArgs

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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
Status string

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Tags Changes to this property will trigger replacement. []DomainsMyRequestTagArgs

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

action Changes to this property will trigger replacement. String

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
approvalDetails Changes to this property will trigger replacement. List<DomainsMyRequestApprovalDetail>

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
expires String

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
idcsCreatedBies List<DomainsMyRequestIdcsCreatedBy>

(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<DomainsMyRequestIdcsLastModifiedBy>

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

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
metas List<DomainsMyRequestMeta>

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
requestor Changes to this property will trigger replacement. DomainsMyRequestRequestor

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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
status String

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
tags Changes to this property will trigger replacement. List<DomainsMyRequestTag>

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

action Changes to this property will trigger replacement. string

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

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

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
expires string

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
idcsCreatedBies DomainsMyRequestIdcsCreatedBy[]

(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 DomainsMyRequestIdcsLastModifiedBy[]

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

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
metas DomainsMyRequestMeta[]

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

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
requestor Changes to this property will trigger replacement. DomainsMyRequestRequestor

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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
status string

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
tags Changes to this property will trigger replacement. DomainsMyRequestTag[]

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

action Changes to this property will trigger replacement. str

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
approval_details Changes to this property will trigger replacement. Sequence[identity.DomainsMyRequestApprovalDetailArgs]

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
expires str

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
idcs_created_bies Sequence[identity.DomainsMyRequestIdcsCreatedByArgs]

(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.DomainsMyRequestIdcsLastModifiedByArgs]

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

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
metas Sequence[identity.DomainsMyRequestMetaArgs]

(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
requesting Changes to this property will trigger replacement. identity.DomainsMyRequestRequestingArgs

Requestable resource reference.

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
requestor Changes to this property will trigger replacement. identity.DomainsMyRequestRequestorArgs

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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
status str

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
tags Changes to this property will trigger replacement. Sequence[identity.DomainsMyRequestTagArgs]

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

action Changes to this property will trigger replacement. String

Requestor can set action to CANCEL to cancel the request or to ESCALATE to escalate the request while the request status is IN_PROGRESS. Requestor can't escalate the request if canceling or escalation is in progress.

Added In: 2307071836

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
approvalDetails Changes to this property will trigger replacement. List<Property Map>

Approvals created for this request.

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • returned: request
  • type: complex
  • 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
expires String

(Updatable) Time by when Request expires

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • 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
justification Changes to this property will trigger replacement. String

justification

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • 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
requesting Changes to this property will trigger replacement. Property Map

Requestable resource reference.

SCIM++ Properties:

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

Requesting User

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
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
status String

(Updatable) status.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • 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

DomainsMyRequestApprovalDetail
, DomainsMyRequestApprovalDetailArgs

ApprovalType string

(Updatable) Approval Type (Escalation or Regular)

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
ApproverDisplayName string

(Updatable) Approver display name

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
ApproverId string

(Updatable) Approver Id

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
Justification string

(Updatable) Approval Justification

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
Order int

(Updatable) Approval Order

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: integer
  • uniqueness: none
  • mutability: readOnly
Status string

(Updatable) Approval Status

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
TimeUpdated string

(Updatable) Approval Update Time

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: dateTime
  • uniqueness: none
  • mutability: readOnly
ApprovalType string

(Updatable) Approval Type (Escalation or Regular)

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
ApproverDisplayName string

(Updatable) Approver display name

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
ApproverId string

(Updatable) Approver Id

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
Justification string

(Updatable) Approval Justification

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
Order int

(Updatable) Approval Order

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: integer
  • uniqueness: none
  • mutability: readOnly
Status string

(Updatable) Approval Status

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
TimeUpdated string

(Updatable) Approval Update Time

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: dateTime
  • uniqueness: none
  • mutability: readOnly
approvalType String

(Updatable) Approval Type (Escalation or Regular)

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approverDisplayName String

(Updatable) Approver display name

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approverId String

(Updatable) Approver Id

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
justification String

(Updatable) Approval Justification

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
order Integer

(Updatable) Approval Order

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: integer
  • uniqueness: none
  • mutability: readOnly
status String

(Updatable) Approval Status

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
timeUpdated String

(Updatable) Approval Update Time

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: dateTime
  • uniqueness: none
  • mutability: readOnly
approvalType string

(Updatable) Approval Type (Escalation or Regular)

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approverDisplayName string

(Updatable) Approver display name

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approverId string

(Updatable) Approver Id

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
justification string

(Updatable) Approval Justification

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
order number

(Updatable) Approval Order

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: integer
  • uniqueness: none
  • mutability: readOnly
status string

(Updatable) Approval Status

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
timeUpdated string

(Updatable) Approval Update Time

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: dateTime
  • uniqueness: none
  • mutability: readOnly
approval_type str

(Updatable) Approval Type (Escalation or Regular)

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approver_display_name str

(Updatable) Approver display name

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approver_id str

(Updatable) Approver Id

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
justification str

(Updatable) Approval Justification

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
order int

(Updatable) Approval Order

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: integer
  • uniqueness: none
  • mutability: readOnly
status str

(Updatable) Approval Status

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
time_updated str

(Updatable) Approval Update Time

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: dateTime
  • uniqueness: none
  • mutability: readOnly
approvalType String

(Updatable) Approval Type (Escalation or Regular)

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approverDisplayName String

(Updatable) Approver display name

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
approverId String

(Updatable) Approver Id

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
justification String

(Updatable) Approval Justification

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
order Number

(Updatable) Approval Order

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: integer
  • uniqueness: none
  • mutability: readOnly
status String

(Updatable) Approval Status

Added In: 2307071836

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • returned: default
  • type: string
  • uniqueness: none
  • mutability: readOnly
timeUpdated String

(Updatable) Approval Update Time

Added In: 2307071836

SCIM++ Properties:

  • multiValued: false
  • idcsSearchable: false
  • returned: default
  • type: dateTime
  • uniqueness: none
  • mutability: readOnly

DomainsMyRequestIdcsCreatedBy
, DomainsMyRequestIdcsCreatedByArgs

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 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 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 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 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 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 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

DomainsMyRequestIdcsLastModifiedBy
, DomainsMyRequestIdcsLastModifiedByArgs

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 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 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 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 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 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 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

DomainsMyRequestMeta
, DomainsMyRequestMetaArgs

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

DomainsMyRequestRequesting
, DomainsMyRequestRequestingArgs

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

Requestable type. Allowed values are Group and App.

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Value
This property is required.
Changes to this property will trigger replacement.
string

Resource identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Description string

Resource description

Added In: 2307071836

SCIM++ Properties:

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

Resource display name

SCIM++ Properties:

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

(Updatable) Resource URI

SCIM++ Properties:

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

Requestable type. Allowed values are Group and App.

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Value
This property is required.
Changes to this property will trigger replacement.
string

Resource identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Description string

Resource description

Added In: 2307071836

SCIM++ Properties:

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

Resource display name

SCIM++ Properties:

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

(Updatable) Resource URI

SCIM++ Properties:

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

Requestable type. Allowed values are Group and App.

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
String

Resource identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
description String

Resource description

Added In: 2307071836

SCIM++ Properties:

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

Resource display name

SCIM++ Properties:

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

(Updatable) Resource URI

SCIM++ Properties:

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

Requestable type. Allowed values are Group and App.

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
string

Resource identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
description string

Resource description

Added In: 2307071836

SCIM++ Properties:

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

Resource display name

SCIM++ Properties:

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

(Updatable) Resource URI

SCIM++ Properties:

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

Requestable type. Allowed values are Group and App.

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
str

Resource identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
description str

Resource description

Added In: 2307071836

SCIM++ Properties:

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

Resource display name

SCIM++ Properties:

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

(Updatable) Resource URI

SCIM++ Properties:

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

Requestable type. Allowed values are Group and App.

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: Requestable Type
  • idcsDefaultValue: Group
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value
This property is required.
Changes to this property will trigger replacement.
String

Resource identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requesting_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
description String

Resource description

Added In: 2307071836

SCIM++ Properties:

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

Resource display name

SCIM++ Properties:

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

(Updatable) Resource URI

SCIM++ Properties:

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

DomainsMyRequestRequestor
, DomainsMyRequestRequestorArgs

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

User identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requestor_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Display string

User display name

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) User URI

SCIM++ Properties:

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

User identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requestor_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Display string

User display name

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) User URI

SCIM++ Properties:

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

User identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requestor_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display String

User display name

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) User URI

SCIM++ Properties:

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

User identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requestor_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display string

User display name

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref string

(Updatable) User URI

SCIM++ Properties:

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

User identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requestor_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display str

User display name

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref str

(Updatable) User URI

SCIM++ Properties:

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

User identifier

SCIM++ Properties:

  • caseExact: true
  • idcsCsvAttributeName: requestor_id
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display String

User display name

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) User URI

SCIM++ Properties:

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

DomainsMyRequestTag
, DomainsMyRequestTagArgs

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

Import is not supported for this resource.

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.