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

oci.Identity.getDomainsResourceTypeSchemaAttributes

Explore with Pulumi AI

This data source provides the list of Resource Type Schema Attributes in Oracle Cloud Infrastructure Identity Domains service.

Search Resource Type Schema Attributes

Example Usage

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

const testResourceTypeSchemaAttributes = oci.Identity.getDomainsResourceTypeSchemaAttributes({
    idcsEndpoint: testDomain.url,
    resourceTypeSchemaAttributeCount: resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount,
    resourceTypeSchemaAttributeFilter: resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter,
    attributeSets: ["all"],
    attributes: "",
    authorization: resourceTypeSchemaAttributeAuthorization,
    resourceTypeSchemaVersion: resourceTypeSchemaAttributeResourceTypeSchemaVersion,
    startIndex: resourceTypeSchemaAttributeStartIndex,
});
Copy
import pulumi
import pulumi_oci as oci

test_resource_type_schema_attributes = oci.Identity.get_domains_resource_type_schema_attributes(idcs_endpoint=test_domain["url"],
    resource_type_schema_attribute_count=resource_type_schema_attribute_resource_type_schema_attribute_count,
    resource_type_schema_attribute_filter=resource_type_schema_attribute_resource_type_schema_attribute_filter,
    attribute_sets=["all"],
    attributes="",
    authorization=resource_type_schema_attribute_authorization,
    resource_type_schema_version=resource_type_schema_attribute_resource_type_schema_version,
    start_index=resource_type_schema_attribute_start_index)
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.GetDomainsResourceTypeSchemaAttributes(ctx, &identity.GetDomainsResourceTypeSchemaAttributesArgs{
			IdcsEndpoint:                      testDomain.Url,
			ResourceTypeSchemaAttributeCount:  pulumi.IntRef(resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount),
			ResourceTypeSchemaAttributeFilter: pulumi.StringRef(resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter),
			AttributeSets: []string{
				"all",
			},
			Attributes:                pulumi.StringRef(""),
			Authorization:             pulumi.StringRef(resourceTypeSchemaAttributeAuthorization),
			ResourceTypeSchemaVersion: pulumi.StringRef(resourceTypeSchemaAttributeResourceTypeSchemaVersion),
			StartIndex:                pulumi.IntRef(resourceTypeSchemaAttributeStartIndex),
		}, nil)
		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 testResourceTypeSchemaAttributes = Oci.Identity.GetDomainsResourceTypeSchemaAttributes.Invoke(new()
    {
        IdcsEndpoint = testDomain.Url,
        ResourceTypeSchemaAttributeCount = resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount,
        ResourceTypeSchemaAttributeFilter = resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter,
        AttributeSets = new[]
        {
            "all",
        },
        Attributes = "",
        Authorization = resourceTypeSchemaAttributeAuthorization,
        ResourceTypeSchemaVersion = resourceTypeSchemaAttributeResourceTypeSchemaVersion,
        StartIndex = resourceTypeSchemaAttributeStartIndex,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.IdentityFunctions;
import com.pulumi.oci.Identity.inputs.GetDomainsResourceTypeSchemaAttributesArgs;
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) {
        final var testResourceTypeSchemaAttributes = IdentityFunctions.getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs.builder()
            .idcsEndpoint(testDomain.url())
            .resourceTypeSchemaAttributeCount(resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount)
            .resourceTypeSchemaAttributeFilter(resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter)
            .attributeSets("all")
            .attributes("")
            .authorization(resourceTypeSchemaAttributeAuthorization)
            .resourceTypeSchemaVersion(resourceTypeSchemaAttributeResourceTypeSchemaVersion)
            .startIndex(resourceTypeSchemaAttributeStartIndex)
            .build());

    }
}
Copy
variables:
  testResourceTypeSchemaAttributes:
    fn::invoke:
      function: oci:Identity:getDomainsResourceTypeSchemaAttributes
      arguments:
        idcsEndpoint: ${testDomain.url}
        resourceTypeSchemaAttributeCount: ${resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount}
        resourceTypeSchemaAttributeFilter: ${resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter}
        attributeSets:
          - all
        attributes: ""
        authorization: ${resourceTypeSchemaAttributeAuthorization}
        resourceTypeSchemaVersion: ${resourceTypeSchemaAttributeResourceTypeSchemaVersion}
        startIndex: ${resourceTypeSchemaAttributeStartIndex}
Copy

Using getDomainsResourceTypeSchemaAttributes

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getDomainsResourceTypeSchemaAttributes(args: GetDomainsResourceTypeSchemaAttributesArgs, opts?: InvokeOptions): Promise<GetDomainsResourceTypeSchemaAttributesResult>
function getDomainsResourceTypeSchemaAttributesOutput(args: GetDomainsResourceTypeSchemaAttributesOutputArgs, opts?: InvokeOptions): Output<GetDomainsResourceTypeSchemaAttributesResult>
Copy
def get_domains_resource_type_schema_attributes(attribute_sets: Optional[Sequence[str]] = None,
                                                attributes: Optional[str] = None,
                                                authorization: Optional[str] = None,
                                                compartment_id: Optional[str] = None,
                                                idcs_endpoint: Optional[str] = None,
                                                resource_type_schema_attribute_count: Optional[int] = None,
                                                resource_type_schema_attribute_filter: Optional[str] = None,
                                                resource_type_schema_version: Optional[str] = None,
                                                sort_by: Optional[str] = None,
                                                sort_order: Optional[str] = None,
                                                start_index: Optional[int] = None,
                                                opts: Optional[InvokeOptions] = None) -> GetDomainsResourceTypeSchemaAttributesResult
def get_domains_resource_type_schema_attributes_output(attribute_sets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                attributes: Optional[pulumi.Input[str]] = None,
                                                authorization: Optional[pulumi.Input[str]] = None,
                                                compartment_id: Optional[pulumi.Input[str]] = None,
                                                idcs_endpoint: Optional[pulumi.Input[str]] = None,
                                                resource_type_schema_attribute_count: Optional[pulumi.Input[int]] = None,
                                                resource_type_schema_attribute_filter: Optional[pulumi.Input[str]] = None,
                                                resource_type_schema_version: Optional[pulumi.Input[str]] = None,
                                                sort_by: Optional[pulumi.Input[str]] = None,
                                                sort_order: Optional[pulumi.Input[str]] = None,
                                                start_index: Optional[pulumi.Input[int]] = None,
                                                opts: Optional[InvokeOptions] = None) -> Output[GetDomainsResourceTypeSchemaAttributesResult]
Copy
func GetDomainsResourceTypeSchemaAttributes(ctx *Context, args *GetDomainsResourceTypeSchemaAttributesArgs, opts ...InvokeOption) (*GetDomainsResourceTypeSchemaAttributesResult, error)
func GetDomainsResourceTypeSchemaAttributesOutput(ctx *Context, args *GetDomainsResourceTypeSchemaAttributesOutputArgs, opts ...InvokeOption) GetDomainsResourceTypeSchemaAttributesResultOutput
Copy

> Note: This function is named GetDomainsResourceTypeSchemaAttributes in the Go SDK.

public static class GetDomainsResourceTypeSchemaAttributes 
{
    public static Task<GetDomainsResourceTypeSchemaAttributesResult> InvokeAsync(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions? opts = null)
    public static Output<GetDomainsResourceTypeSchemaAttributesResult> Invoke(GetDomainsResourceTypeSchemaAttributesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDomainsResourceTypeSchemaAttributesResult> getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions options)
public static Output<GetDomainsResourceTypeSchemaAttributesResult> getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Identity/getDomainsResourceTypeSchemaAttributes:getDomainsResourceTypeSchemaAttributes
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
AttributeSets List<string>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
CompartmentId string
ResourceTypeSchemaAttributeCount int
OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
ResourceTypeSchemaAttributeFilter string
OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
ResourceTypeSchemaVersion 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.
SortBy string
SortOrder string
StartIndex int
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
AttributeSets []string
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
CompartmentId string
ResourceTypeSchemaAttributeCount int
OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
ResourceTypeSchemaAttributeFilter string
OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
ResourceTypeSchemaVersion 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.
SortBy string
SortOrder string
StartIndex int
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
idcsEndpoint This property is required. String
The basic endpoint for the identity domain
attributeSets List<String>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentId String
resourceTypeSchemaAttributeCount Integer
OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
resourceTypeSchemaAttributeFilter String
OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
resourceTypeSchemaVersion 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.
sortBy String
sortOrder String
startIndex Integer
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
idcsEndpoint This property is required. string
The basic endpoint for the identity domain
attributeSets string[]
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentId string
resourceTypeSchemaAttributeCount number
OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
resourceTypeSchemaAttributeFilter string
OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
resourceTypeSchemaVersion 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.
sortBy string
sortOrder string
startIndex number
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
idcs_endpoint This property is required. str
The basic endpoint for the identity domain
attribute_sets Sequence[str]
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes str
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization 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_id str
resource_type_schema_attribute_count int
OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
resource_type_schema_attribute_filter str
OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
resource_type_schema_version 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.
sort_by str
sort_order str
start_index int
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
idcsEndpoint This property is required. String
The basic endpoint for the identity domain
attributeSets List<String>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentId String
resourceTypeSchemaAttributeCount Number
OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
resourceTypeSchemaAttributeFilter String
OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
resourceTypeSchemaVersion 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.
sortBy String
sortOrder String
startIndex Number
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.

getDomainsResourceTypeSchemaAttributes Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
IdcsEndpoint string
ItemsPerPage int
The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
ResourceTypeSchemaAttributes List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttribute>
The list of resource_type_schema_attributes.
Schemas List<string>
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. 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. REQUIRED.
TotalResults int
The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
AttributeSets List<string>
Attributes string
Authorization string
CompartmentId string
ResourceTypeSchemaAttributeCount int
ResourceTypeSchemaAttributeFilter string
ResourceTypeSchemaVersion string
SortBy string
SortOrder string
StartIndex int
The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
Id string
The provider-assigned unique ID for this managed resource.
IdcsEndpoint string
ItemsPerPage int
The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
ResourceTypeSchemaAttributes []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttribute
The list of resource_type_schema_attributes.
Schemas []string
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. 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. REQUIRED.
TotalResults int
The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
AttributeSets []string
Attributes string
Authorization string
CompartmentId string
ResourceTypeSchemaAttributeCount int
ResourceTypeSchemaAttributeFilter string
ResourceTypeSchemaVersion string
SortBy string
SortOrder string
StartIndex int
The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
id String
The provider-assigned unique ID for this managed resource.
idcsEndpoint String
itemsPerPage Integer
The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
resourceTypeSchemaAttributes List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttribute>
The list of resource_type_schema_attributes.
schemas List<String>
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. 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. REQUIRED.
totalResults Integer
The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
attributeSets List<String>
attributes String
authorization String
compartmentId String
resourceTypeSchemaAttributeCount Integer
resourceTypeSchemaAttributeFilter String
resourceTypeSchemaVersion String
sortBy String
sortOrder String
startIndex Integer
The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
id string
The provider-assigned unique ID for this managed resource.
idcsEndpoint string
itemsPerPage number
The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
resourceTypeSchemaAttributes GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttribute[]
The list of resource_type_schema_attributes.
schemas string[]
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. 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. REQUIRED.
totalResults number
The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
attributeSets string[]
attributes string
authorization string
compartmentId string
resourceTypeSchemaAttributeCount number
resourceTypeSchemaAttributeFilter string
resourceTypeSchemaVersion string
sortBy string
sortOrder string
startIndex number
The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
id str
The provider-assigned unique ID for this managed resource.
idcs_endpoint str
items_per_page int
The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
resource_type_schema_attributes Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttribute]
The list of resource_type_schema_attributes.
schemas Sequence[str]
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. 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. REQUIRED.
total_results int
The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
attribute_sets Sequence[str]
attributes str
authorization str
compartment_id str
resource_type_schema_attribute_count int
resource_type_schema_attribute_filter str
resource_type_schema_version str
sort_by str
sort_order str
start_index int
The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
id String
The provider-assigned unique ID for this managed resource.
idcsEndpoint String
itemsPerPage Number
The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
resourceTypeSchemaAttributes List<Property Map>
The list of resource_type_schema_attributes.
schemas List<String>
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. 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. REQUIRED.
totalResults Number
The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
attributeSets List<String>
attributes String
authorization String
compartmentId String
resourceTypeSchemaAttributeCount Number
resourceTypeSchemaAttributeFilter String
resourceTypeSchemaVersion String
sortBy String
sortOrder String
startIndex Number
The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.

Supporting Types

GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttribute

CanonicalValues This property is required. List<string>
A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
CaseExact This property is required. bool
Specifies if the String attribute is case-sensitive
CompartmentOcid This property is required. string
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
DeleteInProgress This property is required. bool
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.
Description This property is required. string
The attribute's human-readable description
DomainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
EndUserMutability This property is required. string
Specifies User mutability for this attribute
EndUserMutabilityAllowedValues This property is required. List<string>
Specifies the list of User mutabilities allowed
Id This property is required. string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
IdcsAddedSinceReleaseNumber This property is required. string
Indicates that the schema has been added since this release number
IdcsAddedSinceVersion This property is required. int
Indicates that the schema has been added since version
IdcsAttributeCacheable This property is required. bool
Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
IdcsAttributeMappable This property is required. bool
Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
IdcsAuditable This property is required. bool
Specifies whether changes to this attribute value are audited
IdcsAutoIncrementSeqName This property is required. string
Sequence tracking ID name for the attribute
IdcsCanonicalValueSourceFilter This property is required. string
Filter to use when getting canonical values for this schema attribute
IdcsCanonicalValueSourceResourceType This property is required. string
Specifies the Resource type to read from for dynamic canonical values
IdcsCompositeKeys This property is required. List<string>
The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
IdcsCreatedBies This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy>
The User or App who created the Resource
IdcsCsvColumnHeaderName This property is required. string
The attribute defining the CSV column header name for import/export
IdcsCustomAttribute This property is required. bool
custom attribute flag.
IdcsDeprecatedSinceReleaseNumber This property is required. string
Indicates that the schema has been deprecated since this release number
IdcsDeprecatedSinceVersion This property is required. int
Indicates that the schema has been deprecated since version
IdcsDisplayName This property is required. string
Specifies the user-friendly displayable attribute name or catalog key used for localization
IdcsDisplayNameMessageId This property is required. string
Localized schema attribute display name for use by UI client for displaying attribute labels
IdcsFetchComplexAttributeValues This property is required. bool
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • idcsSearchable: true
  • returned: default
  • type: boolean
  • uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
IdcsFromTargetMapper This property is required. string
Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
IdcsFullyQualifiedName This property is required. string
Fully qualified name of this attribute
IdcsGenerated This property is required. bool
Specifies whether this attribute value was generated
IdcsIcfAttributeType This property is required. string
Maps to ICF data type
IdcsIcfBundleAttributeName This property is required. string
Maps to ICF target attribute name
IdcsIcfRequired This property is required. bool
Metadata to identify the ICF required attribute
IdcsIndirectRefResourceAttributes This property is required. List<string>
Specifies the indirectly referenced Resources
IdcsInternal This property is required. bool
Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
IdcsLastModifiedBies This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy>
The User or App who modified the Resource
IdcsLastUpgradedInRelease This property is required. string
The release number when the resource was upgraded.
IdcsMaxLength This property is required. int
Specifies the maximum length of the attribute
IdcsMaxValue This property is required. int
Specifies the maximum value of the integer attribute
IdcsMinLength This property is required. int
Specifies the minimum length of the attribute
IdcsMinValue This property is required. int
Specifies the minimum value of the integer attribute
IdcsMultiLanguage This property is required. bool
If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
IdcsPreventedOperations This property is required. List<string>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
IdcsRefResourceAttribute This property is required. string
Specifies the referenced Resource attribute
IdcsRefResourceAttributes This property is required. List<string>
Specifies the directly referenced Resources
IdcsSchemaUrn This property is required. string
Schema URN string that this attribute belongs to
IdcsScimCompliant This property is required. bool
Indicates if the attribute is scim compliant, default is true
IdcsSearchable This property is required. bool
Specifies whether this attribute can be included in a search filter
IdcsSensitive This property is required. string
Flag to specify if the attribute should be encrypted or hashed
IdcsTargetAttributeName This property is required. string
Target attribute name that this attribute gets mapped to for persistence
IdcsTargetAttributeNameToMigrateFrom This property is required. string
Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
IdcsTargetNormAttributeName This property is required. string
Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
IdcsTargetUniqueConstraintName This property is required. string
Target index name created for this attribute for performance
IdcsToTargetMapper This property is required. string
Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
IdcsTrimStringValue This property is required. bool
Trims any leading and trailing blanks from String values. Default is True.
IdcsValidateReference This property is required. bool
Validate payload reference value during create, replace, and update. Default is True.
IdcsValuePersisted This property is required. bool
Specifies whether the value of the Resource attribute is persisted
Metas This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
MultiValued This property is required. bool
Indicates the attribute's plurality
Mutability This property is required. string
Specifies if the attribute is mutable
Name This property is required. string
Attribute's name
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ReferenceTypes This property is required. List<string>
The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
Required This property is required. bool
Specifies if the attribute is required
ResourceType This property is required. string
ResourceType this attribute belongs to.
Returned This property is required. string
A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
Schemas This property is required. List<string>
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. 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. REQUIRED.
Tags This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag>
A list of tags on this resource.
TenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Type This property is required. string
The attribute's data type--for example, String
Uniqueness This property is required. string
A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
CanonicalValues This property is required. []string
A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
CaseExact This property is required. bool
Specifies if the String attribute is case-sensitive
CompartmentOcid This property is required. string
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
DeleteInProgress This property is required. bool
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.
Description This property is required. string
The attribute's human-readable description
DomainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
EndUserMutability This property is required. string
Specifies User mutability for this attribute
EndUserMutabilityAllowedValues This property is required. []string
Specifies the list of User mutabilities allowed
Id This property is required. string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
IdcsAddedSinceReleaseNumber This property is required. string
Indicates that the schema has been added since this release number
IdcsAddedSinceVersion This property is required. int
Indicates that the schema has been added since version
IdcsAttributeCacheable This property is required. bool
Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
IdcsAttributeMappable This property is required. bool
Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
IdcsAuditable This property is required. bool
Specifies whether changes to this attribute value are audited
IdcsAutoIncrementSeqName This property is required. string
Sequence tracking ID name for the attribute
IdcsCanonicalValueSourceFilter This property is required. string
Filter to use when getting canonical values for this schema attribute
IdcsCanonicalValueSourceResourceType This property is required. string
Specifies the Resource type to read from for dynamic canonical values
IdcsCompositeKeys This property is required. []string
The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
IdcsCreatedBies This property is required. []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy
The User or App who created the Resource
IdcsCsvColumnHeaderName This property is required. string
The attribute defining the CSV column header name for import/export
IdcsCustomAttribute This property is required. bool
custom attribute flag.
IdcsDeprecatedSinceReleaseNumber This property is required. string
Indicates that the schema has been deprecated since this release number
IdcsDeprecatedSinceVersion This property is required. int
Indicates that the schema has been deprecated since version
IdcsDisplayName This property is required. string
Specifies the user-friendly displayable attribute name or catalog key used for localization
IdcsDisplayNameMessageId This property is required. string
Localized schema attribute display name for use by UI client for displaying attribute labels
IdcsFetchComplexAttributeValues This property is required. bool
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • idcsSearchable: true
  • returned: default
  • type: boolean
  • uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
IdcsFromTargetMapper This property is required. string
Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
IdcsFullyQualifiedName This property is required. string
Fully qualified name of this attribute
IdcsGenerated This property is required. bool
Specifies whether this attribute value was generated
IdcsIcfAttributeType This property is required. string
Maps to ICF data type
IdcsIcfBundleAttributeName This property is required. string
Maps to ICF target attribute name
IdcsIcfRequired This property is required. bool
Metadata to identify the ICF required attribute
IdcsIndirectRefResourceAttributes This property is required. []string
Specifies the indirectly referenced Resources
IdcsInternal This property is required. bool
Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
IdcsLastModifiedBies This property is required. []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy
The User or App who modified the Resource
IdcsLastUpgradedInRelease This property is required. string
The release number when the resource was upgraded.
IdcsMaxLength This property is required. int
Specifies the maximum length of the attribute
IdcsMaxValue This property is required. int
Specifies the maximum value of the integer attribute
IdcsMinLength This property is required. int
Specifies the minimum length of the attribute
IdcsMinValue This property is required. int
Specifies the minimum value of the integer attribute
IdcsMultiLanguage This property is required. bool
If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
IdcsPreventedOperations This property is required. []string
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
IdcsRefResourceAttribute This property is required. string
Specifies the referenced Resource attribute
IdcsRefResourceAttributes This property is required. []string
Specifies the directly referenced Resources
IdcsSchemaUrn This property is required. string
Schema URN string that this attribute belongs to
IdcsScimCompliant This property is required. bool
Indicates if the attribute is scim compliant, default is true
IdcsSearchable This property is required. bool
Specifies whether this attribute can be included in a search filter
IdcsSensitive This property is required. string
Flag to specify if the attribute should be encrypted or hashed
IdcsTargetAttributeName This property is required. string
Target attribute name that this attribute gets mapped to for persistence
IdcsTargetAttributeNameToMigrateFrom This property is required. string
Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
IdcsTargetNormAttributeName This property is required. string
Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
IdcsTargetUniqueConstraintName This property is required. string
Target index name created for this attribute for performance
IdcsToTargetMapper This property is required. string
Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
IdcsTrimStringValue This property is required. bool
Trims any leading and trailing blanks from String values. Default is True.
IdcsValidateReference This property is required. bool
Validate payload reference value during create, replace, and update. Default is True.
IdcsValuePersisted This property is required. bool
Specifies whether the value of the Resource attribute is persisted
Metas This property is required. []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
MultiValued This property is required. bool
Indicates the attribute's plurality
Mutability This property is required. string
Specifies if the attribute is mutable
Name This property is required. string
Attribute's name
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ReferenceTypes This property is required. []string
The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
Required This property is required. bool
Specifies if the attribute is required
ResourceType This property is required. string
ResourceType this attribute belongs to.
Returned This property is required. string
A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
Schemas This property is required. []string
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. 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. REQUIRED.
Tags This property is required. []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag
A list of tags on this resource.
TenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Type This property is required. string
The attribute's data type--for example, String
Uniqueness This property is required. string
A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
canonicalValues This property is required. List<String>
A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
caseExact This property is required. Boolean
Specifies if the String attribute is case-sensitive
compartmentOcid This property is required. String
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
deleteInProgress This property is required. Boolean
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.
description This property is required. String
The attribute's human-readable description
domainOcid This property is required. String
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
endUserMutability This property is required. String
Specifies User mutability for this attribute
endUserMutabilityAllowedValues This property is required. List<String>
Specifies the list of User mutabilities allowed
id This property is required. String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcsAddedSinceReleaseNumber This property is required. String
Indicates that the schema has been added since this release number
idcsAddedSinceVersion This property is required. Integer
Indicates that the schema has been added since version
idcsAttributeCacheable This property is required. Boolean
Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
idcsAttributeMappable This property is required. Boolean
Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
idcsAuditable This property is required. Boolean
Specifies whether changes to this attribute value are audited
idcsAutoIncrementSeqName This property is required. String
Sequence tracking ID name for the attribute
idcsCanonicalValueSourceFilter This property is required. String
Filter to use when getting canonical values for this schema attribute
idcsCanonicalValueSourceResourceType This property is required. String
Specifies the Resource type to read from for dynamic canonical values
idcsCompositeKeys This property is required. List<String>
The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
idcsCreatedBies This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy>
The User or App who created the Resource
idcsCsvColumnHeaderName This property is required. String
The attribute defining the CSV column header name for import/export
idcsCustomAttribute This property is required. Boolean
custom attribute flag.
idcsDeprecatedSinceReleaseNumber This property is required. String
Indicates that the schema has been deprecated since this release number
idcsDeprecatedSinceVersion This property is required. Integer
Indicates that the schema has been deprecated since version
idcsDisplayName This property is required. String
Specifies the user-friendly displayable attribute name or catalog key used for localization
idcsDisplayNameMessageId This property is required. String
Localized schema attribute display name for use by UI client for displaying attribute labels
idcsFetchComplexAttributeValues This property is required. Boolean
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • idcsSearchable: true
  • returned: default
  • type: boolean
  • uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
idcsFromTargetMapper This property is required. String
Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
idcsFullyQualifiedName This property is required. String
Fully qualified name of this attribute
idcsGenerated This property is required. Boolean
Specifies whether this attribute value was generated
idcsIcfAttributeType This property is required. String
Maps to ICF data type
idcsIcfBundleAttributeName This property is required. String
Maps to ICF target attribute name
idcsIcfRequired This property is required. Boolean
Metadata to identify the ICF required attribute
idcsIndirectRefResourceAttributes This property is required. List<String>
Specifies the indirectly referenced Resources
idcsInternal This property is required. Boolean
Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
idcsLastModifiedBies This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy>
The User or App who modified the Resource
idcsLastUpgradedInRelease This property is required. String
The release number when the resource was upgraded.
idcsMaxLength This property is required. Integer
Specifies the maximum length of the attribute
idcsMaxValue This property is required. Integer
Specifies the maximum value of the integer attribute
idcsMinLength This property is required. Integer
Specifies the minimum length of the attribute
idcsMinValue This property is required. Integer
Specifies the minimum value of the integer attribute
idcsMultiLanguage This property is required. Boolean
If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
idcsPreventedOperations This property is required. List<String>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
idcsRefResourceAttribute This property is required. String
Specifies the referenced Resource attribute
idcsRefResourceAttributes This property is required. List<String>
Specifies the directly referenced Resources
idcsSchemaUrn This property is required. String
Schema URN string that this attribute belongs to
idcsScimCompliant This property is required. Boolean
Indicates if the attribute is scim compliant, default is true
idcsSearchable This property is required. Boolean
Specifies whether this attribute can be included in a search filter
idcsSensitive This property is required. String
Flag to specify if the attribute should be encrypted or hashed
idcsTargetAttributeName This property is required. String
Target attribute name that this attribute gets mapped to for persistence
idcsTargetAttributeNameToMigrateFrom This property is required. String
Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
idcsTargetNormAttributeName This property is required. String
Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
idcsTargetUniqueConstraintName This property is required. String
Target index name created for this attribute for performance
idcsToTargetMapper This property is required. String
Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
idcsTrimStringValue This property is required. Boolean
Trims any leading and trailing blanks from String values. Default is True.
idcsValidateReference This property is required. Boolean
Validate payload reference value during create, replace, and update. Default is True.
idcsValuePersisted This property is required. Boolean
Specifies whether the value of the Resource attribute is persisted
metas This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
multiValued This property is required. Boolean
Indicates the attribute's plurality
mutability This property is required. String
Specifies if the attribute is mutable
name This property is required. String
Attribute's name
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
referenceTypes This property is required. List<String>
The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
required This property is required. Boolean
Specifies if the attribute is required
resourceType This property is required. String
ResourceType this attribute belongs to.
returned This property is required. String
A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
schemas This property is required. List<String>
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. 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. REQUIRED.
tags This property is required. List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag>
A list of tags on this resource.
tenancyOcid This property is required. String
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
type This property is required. String
The attribute's data type--for example, String
uniqueness This property is required. String
A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
canonicalValues This property is required. string[]
A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
caseExact This property is required. boolean
Specifies if the String attribute is case-sensitive
compartmentOcid This property is required. string
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
deleteInProgress This property is required. boolean
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.
description This property is required. string
The attribute's human-readable description
domainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
endUserMutability This property is required. string
Specifies User mutability for this attribute
endUserMutabilityAllowedValues This property is required. string[]
Specifies the list of User mutabilities allowed
id This property is required. string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcsAddedSinceReleaseNumber This property is required. string
Indicates that the schema has been added since this release number
idcsAddedSinceVersion This property is required. number
Indicates that the schema has been added since version
idcsAttributeCacheable This property is required. boolean
Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
idcsAttributeMappable This property is required. boolean
Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
idcsAuditable This property is required. boolean
Specifies whether changes to this attribute value are audited
idcsAutoIncrementSeqName This property is required. string
Sequence tracking ID name for the attribute
idcsCanonicalValueSourceFilter This property is required. string
Filter to use when getting canonical values for this schema attribute
idcsCanonicalValueSourceResourceType This property is required. string
Specifies the Resource type to read from for dynamic canonical values
idcsCompositeKeys This property is required. string[]
The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
idcsCreatedBies This property is required. GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy[]
The User or App who created the Resource
idcsCsvColumnHeaderName This property is required. string
The attribute defining the CSV column header name for import/export
idcsCustomAttribute This property is required. boolean
custom attribute flag.
idcsDeprecatedSinceReleaseNumber This property is required. string
Indicates that the schema has been deprecated since this release number
idcsDeprecatedSinceVersion This property is required. number
Indicates that the schema has been deprecated since version
idcsDisplayName This property is required. string
Specifies the user-friendly displayable attribute name or catalog key used for localization
idcsDisplayNameMessageId This property is required. string
Localized schema attribute display name for use by UI client for displaying attribute labels
idcsFetchComplexAttributeValues This property is required. boolean
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • idcsSearchable: true
  • returned: default
  • type: boolean
  • uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
idcsFromTargetMapper This property is required. string
Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
idcsFullyQualifiedName This property is required. string
Fully qualified name of this attribute
idcsGenerated This property is required. boolean
Specifies whether this attribute value was generated
idcsIcfAttributeType This property is required. string
Maps to ICF data type
idcsIcfBundleAttributeName This property is required. string
Maps to ICF target attribute name
idcsIcfRequired This property is required. boolean
Metadata to identify the ICF required attribute
idcsIndirectRefResourceAttributes This property is required. string[]
Specifies the indirectly referenced Resources
idcsInternal This property is required. boolean
Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
idcsLastModifiedBies This property is required. GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy[]
The User or App who modified the Resource
idcsLastUpgradedInRelease This property is required. string
The release number when the resource was upgraded.
idcsMaxLength This property is required. number
Specifies the maximum length of the attribute
idcsMaxValue This property is required. number
Specifies the maximum value of the integer attribute
idcsMinLength This property is required. number
Specifies the minimum length of the attribute
idcsMinValue This property is required. number
Specifies the minimum value of the integer attribute
idcsMultiLanguage This property is required. boolean
If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
idcsPreventedOperations This property is required. string[]
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
idcsRefResourceAttribute This property is required. string
Specifies the referenced Resource attribute
idcsRefResourceAttributes This property is required. string[]
Specifies the directly referenced Resources
idcsSchemaUrn This property is required. string
Schema URN string that this attribute belongs to
idcsScimCompliant This property is required. boolean
Indicates if the attribute is scim compliant, default is true
idcsSearchable This property is required. boolean
Specifies whether this attribute can be included in a search filter
idcsSensitive This property is required. string
Flag to specify if the attribute should be encrypted or hashed
idcsTargetAttributeName This property is required. string
Target attribute name that this attribute gets mapped to for persistence
idcsTargetAttributeNameToMigrateFrom This property is required. string
Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
idcsTargetNormAttributeName This property is required. string
Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
idcsTargetUniqueConstraintName This property is required. string
Target index name created for this attribute for performance
idcsToTargetMapper This property is required. string
Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
idcsTrimStringValue This property is required. boolean
Trims any leading and trailing blanks from String values. Default is True.
idcsValidateReference This property is required. boolean
Validate payload reference value during create, replace, and update. Default is True.
idcsValuePersisted This property is required. boolean
Specifies whether the value of the Resource attribute is persisted
metas This property is required. GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta[]
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
multiValued This property is required. boolean
Indicates the attribute's plurality
mutability This property is required. string
Specifies if the attribute is mutable
name This property is required. string
Attribute's name
ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
referenceTypes This property is required. string[]
The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
required This property is required. boolean
Specifies if the attribute is required
resourceType This property is required. string
ResourceType this attribute belongs to.
returned This property is required. string
A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
schemas This property is required. string[]
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. 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. REQUIRED.
tags This property is required. GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag[]
A list of tags on this resource.
tenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
type This property is required. string
The attribute's data type--for example, String
uniqueness This property is required. string
A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
canonical_values This property is required. Sequence[str]
A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
case_exact This property is required. bool
Specifies if the String attribute is case-sensitive
compartment_ocid This property is required. str
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
delete_in_progress This property is required. bool
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.
description This property is required. str
The attribute's human-readable description
domain_ocid This property is required. str
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
end_user_mutability This property is required. str
Specifies User mutability for this attribute
end_user_mutability_allowed_values This property is required. Sequence[str]
Specifies the list of User mutabilities allowed
id This property is required. str
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcs_added_since_release_number This property is required. str
Indicates that the schema has been added since this release number
idcs_added_since_version This property is required. int
Indicates that the schema has been added since version
idcs_attribute_cacheable This property is required. bool
Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
idcs_attribute_mappable This property is required. bool
Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
idcs_auditable This property is required. bool
Specifies whether changes to this attribute value are audited
idcs_auto_increment_seq_name This property is required. str
Sequence tracking ID name for the attribute
idcs_canonical_value_source_filter This property is required. str
Filter to use when getting canonical values for this schema attribute
idcs_canonical_value_source_resource_type This property is required. str
Specifies the Resource type to read from for dynamic canonical values
idcs_composite_keys This property is required. Sequence[str]
The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
idcs_created_bies This property is required. Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy]
The User or App who created the Resource
idcs_csv_column_header_name This property is required. str
The attribute defining the CSV column header name for import/export
idcs_custom_attribute This property is required. bool
custom attribute flag.
idcs_deprecated_since_release_number This property is required. str
Indicates that the schema has been deprecated since this release number
idcs_deprecated_since_version This property is required. int
Indicates that the schema has been deprecated since version
idcs_display_name This property is required. str
Specifies the user-friendly displayable attribute name or catalog key used for localization
idcs_display_name_message_id This property is required. str
Localized schema attribute display name for use by UI client for displaying attribute labels
idcs_fetch_complex_attribute_values This property is required. bool
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • idcsSearchable: true
  • returned: default
  • type: boolean
  • uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
idcs_from_target_mapper This property is required. str
Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
idcs_fully_qualified_name This property is required. str
Fully qualified name of this attribute
idcs_generated This property is required. bool
Specifies whether this attribute value was generated
idcs_icf_attribute_type This property is required. str
Maps to ICF data type
idcs_icf_bundle_attribute_name This property is required. str
Maps to ICF target attribute name
idcs_icf_required This property is required. bool
Metadata to identify the ICF required attribute
idcs_indirect_ref_resource_attributes This property is required. Sequence[str]
Specifies the indirectly referenced Resources
idcs_internal This property is required. bool
Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
idcs_last_modified_bies This property is required. Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy]
The User or App who modified the Resource
idcs_last_upgraded_in_release This property is required. str
The release number when the resource was upgraded.
idcs_max_length This property is required. int
Specifies the maximum length of the attribute
idcs_max_value This property is required. int
Specifies the maximum value of the integer attribute
idcs_min_length This property is required. int
Specifies the minimum length of the attribute
idcs_min_value This property is required. int
Specifies the minimum value of the integer attribute
idcs_multi_language This property is required. bool
If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
idcs_prevented_operations This property is required. Sequence[str]
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
idcs_ref_resource_attribute This property is required. str
Specifies the referenced Resource attribute
idcs_ref_resource_attributes This property is required. Sequence[str]
Specifies the directly referenced Resources
idcs_schema_urn This property is required. str
Schema URN string that this attribute belongs to
idcs_scim_compliant This property is required. bool
Indicates if the attribute is scim compliant, default is true
idcs_searchable This property is required. bool
Specifies whether this attribute can be included in a search filter
idcs_sensitive This property is required. str
Flag to specify if the attribute should be encrypted or hashed
idcs_target_attribute_name This property is required. str
Target attribute name that this attribute gets mapped to for persistence
idcs_target_attribute_name_to_migrate_from This property is required. str
Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
idcs_target_norm_attribute_name This property is required. str
Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
idcs_target_unique_constraint_name This property is required. str
Target index name created for this attribute for performance
idcs_to_target_mapper This property is required. str
Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
idcs_trim_string_value This property is required. bool
Trims any leading and trailing blanks from String values. Default is True.
idcs_validate_reference This property is required. bool
Validate payload reference value during create, replace, and update. Default is True.
idcs_value_persisted This property is required. bool
Specifies whether the value of the Resource attribute is persisted
metas This property is required. Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta]
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
multi_valued This property is required. bool
Indicates the attribute's plurality
mutability This property is required. str
Specifies if the attribute is mutable
name This property is required. str
Attribute's name
ocid This property is required. str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
reference_types This property is required. Sequence[str]
The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
required This property is required. bool
Specifies if the attribute is required
resource_type This property is required. str
ResourceType this attribute belongs to.
returned This property is required. str
A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
schemas This property is required. Sequence[str]
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. 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. REQUIRED.
tags This property is required. Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag]
A list of tags on this resource.
tenancy_ocid This property is required. str
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
type This property is required. str
The attribute's data type--for example, String
uniqueness This property is required. str
A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
canonicalValues This property is required. List<String>
A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
caseExact This property is required. Boolean
Specifies if the String attribute is case-sensitive
compartmentOcid This property is required. String
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
deleteInProgress This property is required. Boolean
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.
description This property is required. String
The attribute's human-readable description
domainOcid This property is required. String
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
endUserMutability This property is required. String
Specifies User mutability for this attribute
endUserMutabilityAllowedValues This property is required. List<String>
Specifies the list of User mutabilities allowed
id This property is required. String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcsAddedSinceReleaseNumber This property is required. String
Indicates that the schema has been added since this release number
idcsAddedSinceVersion This property is required. Number
Indicates that the schema has been added since version
idcsAttributeCacheable This property is required. Boolean
Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
idcsAttributeMappable This property is required. Boolean
Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
idcsAuditable This property is required. Boolean
Specifies whether changes to this attribute value are audited
idcsAutoIncrementSeqName This property is required. String
Sequence tracking ID name for the attribute
idcsCanonicalValueSourceFilter This property is required. String
Filter to use when getting canonical values for this schema attribute
idcsCanonicalValueSourceResourceType This property is required. String
Specifies the Resource type to read from for dynamic canonical values
idcsCompositeKeys This property is required. List<String>
The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
idcsCreatedBies This property is required. List<Property Map>
The User or App who created the Resource
idcsCsvColumnHeaderName This property is required. String
The attribute defining the CSV column header name for import/export
idcsCustomAttribute This property is required. Boolean
custom attribute flag.
idcsDeprecatedSinceReleaseNumber This property is required. String
Indicates that the schema has been deprecated since this release number
idcsDeprecatedSinceVersion This property is required. Number
Indicates that the schema has been deprecated since version
idcsDisplayName This property is required. String
Specifies the user-friendly displayable attribute name or catalog key used for localization
idcsDisplayNameMessageId This property is required. String
Localized schema attribute display name for use by UI client for displaying attribute labels
idcsFetchComplexAttributeValues This property is required. Boolean
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • idcsSearchable: true
  • returned: default
  • type: boolean
  • uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
idcsFromTargetMapper This property is required. String
Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
idcsFullyQualifiedName This property is required. String
Fully qualified name of this attribute
idcsGenerated This property is required. Boolean
Specifies whether this attribute value was generated
idcsIcfAttributeType This property is required. String
Maps to ICF data type
idcsIcfBundleAttributeName This property is required. String
Maps to ICF target attribute name
idcsIcfRequired This property is required. Boolean
Metadata to identify the ICF required attribute
idcsIndirectRefResourceAttributes This property is required. List<String>
Specifies the indirectly referenced Resources
idcsInternal This property is required. Boolean
Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
idcsLastModifiedBies This property is required. List<Property Map>
The User or App who modified the Resource
idcsLastUpgradedInRelease This property is required. String
The release number when the resource was upgraded.
idcsMaxLength This property is required. Number
Specifies the maximum length of the attribute
idcsMaxValue This property is required. Number
Specifies the maximum value of the integer attribute
idcsMinLength This property is required. Number
Specifies the minimum length of the attribute
idcsMinValue This property is required. Number
Specifies the minimum value of the integer attribute
idcsMultiLanguage This property is required. Boolean
If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
idcsPreventedOperations This property is required. List<String>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
idcsRefResourceAttribute This property is required. String
Specifies the referenced Resource attribute
idcsRefResourceAttributes This property is required. List<String>
Specifies the directly referenced Resources
idcsSchemaUrn This property is required. String
Schema URN string that this attribute belongs to
idcsScimCompliant This property is required. Boolean
Indicates if the attribute is scim compliant, default is true
idcsSearchable This property is required. Boolean
Specifies whether this attribute can be included in a search filter
idcsSensitive This property is required. String
Flag to specify if the attribute should be encrypted or hashed
idcsTargetAttributeName This property is required. String
Target attribute name that this attribute gets mapped to for persistence
idcsTargetAttributeNameToMigrateFrom This property is required. String
Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
idcsTargetNormAttributeName This property is required. String
Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
idcsTargetUniqueConstraintName This property is required. String
Target index name created for this attribute for performance
idcsToTargetMapper This property is required. String
Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
idcsTrimStringValue This property is required. Boolean
Trims any leading and trailing blanks from String values. Default is True.
idcsValidateReference This property is required. Boolean
Validate payload reference value during create, replace, and update. Default is True.
idcsValuePersisted This property is required. Boolean
Specifies whether the value of the Resource attribute is persisted
metas This property is required. List<Property Map>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
multiValued This property is required. Boolean
Indicates the attribute's plurality
mutability This property is required. String
Specifies if the attribute is mutable
name This property is required. String
Attribute's name
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
referenceTypes This property is required. List<String>
The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
required This property is required. Boolean
Specifies if the attribute is required
resourceType This property is required. String
ResourceType this attribute belongs to.
returned This property is required. String
A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
schemas This property is required. List<String>
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. 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. REQUIRED.
tags This property is required. List<Property Map>
A list of tags on this resource.
tenancyOcid This property is required. String
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
type This property is required. String
The attribute's data type--for example, String
uniqueness This property is required. String
A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".

GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy

Display This property is required. string
The displayName of the User or App who modified this Resource
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
The URI of the SCIM resource that represents the User or App who modified this Resource
Type This property is required. string
The attribute's data type--for example, String
Value This property is required. string
Value of the tag.
Display This property is required. string
The displayName of the User or App who modified this Resource
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
The URI of the SCIM resource that represents the User or App who modified this Resource
Type This property is required. string
The attribute's data type--for example, String
Value This property is required. string
Value of the tag.
display This property is required. String
The displayName of the User or App who modified this Resource
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. String
The attribute's data type--for example, String
value This property is required. String
Value of the tag.
display This property is required. string
The displayName of the User or App who modified this Resource
ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. string
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. string
The attribute's data type--for example, String
value This property is required. string
Value of the tag.
display This property is required. str
The displayName of the User or App who modified this Resource
ocid This property is required. str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. str
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. str
The attribute's data type--for example, String
value This property is required. str
Value of the tag.
display This property is required. String
The displayName of the User or App who modified this Resource
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. String
The attribute's data type--for example, String
value This property is required. String
Value of the tag.

GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy

Display This property is required. string
The displayName of the User or App who modified this Resource
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
The URI of the SCIM resource that represents the User or App who modified this Resource
Type This property is required. string
The attribute's data type--for example, String
Value This property is required. string
Value of the tag.
Display This property is required. string
The displayName of the User or App who modified this Resource
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
The URI of the SCIM resource that represents the User or App who modified this Resource
Type This property is required. string
The attribute's data type--for example, String
Value This property is required. string
Value of the tag.
display This property is required. String
The displayName of the User or App who modified this Resource
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. String
The attribute's data type--for example, String
value This property is required. String
Value of the tag.
display This property is required. string
The displayName of the User or App who modified this Resource
ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. string
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. string
The attribute's data type--for example, String
value This property is required. string
Value of the tag.
display This property is required. str
The displayName of the User or App who modified this Resource
ocid This property is required. str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. str
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. str
The attribute's data type--for example, String
value This property is required. str
Value of the tag.
display This property is required. String
The displayName of the User or App who modified this Resource
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
The URI of the SCIM resource that represents the User or App who modified this Resource
type This property is required. String
The attribute's data type--for example, String
value This property is required. String
Value of the tag.

GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta

Created This property is required. string
The DateTime the Resource was added to the Service Provider
LastModified This property is required. 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.
Location This property is required. string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
ResourceType This property is required. string
ResourceType this attribute belongs to.
Version This property is required. string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
Created This property is required. string
The DateTime the Resource was added to the Service Provider
LastModified This property is required. 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.
Location This property is required. string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
ResourceType This property is required. string
ResourceType this attribute belongs to.
Version This property is required. string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
created This property is required. String
The DateTime the Resource was added to the Service Provider
lastModified This property is required. 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.
location This property is required. String
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
resourceType This property is required. String
ResourceType this attribute belongs to.
version This property is required. String
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
created This property is required. string
The DateTime the Resource was added to the Service Provider
lastModified This property is required. 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.
location This property is required. string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
resourceType This property is required. string
ResourceType this attribute belongs to.
version This property is required. string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
created This property is required. str
The DateTime the Resource was added to the Service Provider
last_modified This property is required. 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.
location This property is required. str
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
resource_type This property is required. str
ResourceType this attribute belongs to.
version This property is required. str
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
created This property is required. String
The DateTime the Resource was added to the Service Provider
lastModified This property is required. 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.
location This property is required. String
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
resourceType This property is required. String
ResourceType this attribute belongs to.
version This property is required. String
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag

Key This property is required. string
Key or name of the tag.
Value This property is required. string
Value of the tag.
Key This property is required. string
Key or name of the tag.
Value This property is required. string
Value of the tag.
key This property is required. String
Key or name of the tag.
value This property is required. String
Value of the tag.
key This property is required. string
Key or name of the tag.
value This property is required. string
Value of the tag.
key This property is required. str
Key or name of the tag.
value This property is required. str
Value of the tag.
key This property is required. String
Key or name of the tag.
value This property is required. String
Value of the tag.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.