1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. getDomainsResourceTypeSchemaAttributes
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.Identity.getDomainsResourceTypeSchemaAttributes

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    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,
    });
    
    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)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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
    	})
    }
    
    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,
        });
    
    });
    
    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());
    
        }
    }
    
    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}
    

    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>
    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]
    func GetDomainsResourceTypeSchemaAttributes(ctx *Context, args *GetDomainsResourceTypeSchemaAttributesArgs, opts ...InvokeOption) (*GetDomainsResourceTypeSchemaAttributesResult, error)
    func GetDomainsResourceTypeSchemaAttributesOutput(ctx *Context, args *GetDomainsResourceTypeSchemaAttributesOutputArgs, opts ...InvokeOption) GetDomainsResourceTypeSchemaAttributesResultOutput

    > 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)
    }
    public static CompletableFuture<GetDomainsResourceTypeSchemaAttributesResult> getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Identity/getDomainsResourceTypeSchemaAttributes:getDomainsResourceTypeSchemaAttributes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    IdcsEndpoint 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 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 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 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 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 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 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 bool
    Specifies if the String attribute is case-sensitive
    CompartmentOcid string
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    DeleteInProgress 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 string
    The attribute's human-readable description
    DomainOcid string
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    EndUserMutability string
    Specifies User mutability for this attribute
    EndUserMutabilityAllowedValues List<string>
    Specifies the list of User mutabilities allowed
    Id 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 string
    Indicates that the schema has been added since this release number
    IdcsAddedSinceVersion int
    Indicates that the schema has been added since version
    IdcsAttributeCacheable 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 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 bool
    Specifies whether changes to this attribute value are audited
    IdcsAutoIncrementSeqName string
    Sequence tracking ID name for the attribute
    IdcsCanonicalValueSourceFilter string
    Filter to use when getting canonical values for this schema attribute
    IdcsCanonicalValueSourceResourceType string
    Specifies the Resource type to read from for dynamic canonical values
    IdcsCompositeKeys List<string>
    The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
    IdcsCreatedBies List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy>
    The User or App who created the Resource
    IdcsCsvColumnHeaderName string
    The attribute defining the CSV column header name for import/export
    IdcsCustomAttribute bool
    custom attribute flag.
    IdcsDeprecatedSinceReleaseNumber string
    Indicates that the schema has been deprecated since this release number
    IdcsDeprecatedSinceVersion int
    Indicates that the schema has been deprecated since version
    IdcsDisplayName string
    Specifies the user-friendly displayable attribute name or catalog key used for localization
    IdcsDisplayNameMessageId string
    Localized schema attribute display name for use by UI client for displaying attribute labels
    IdcsFetchComplexAttributeValues 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 string
    Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
    IdcsFullyQualifiedName string
    Fully qualified name of this attribute
    IdcsGenerated bool
    Specifies whether this attribute value was generated
    IdcsIcfAttributeType string
    Maps to ICF data type
    IdcsIcfBundleAttributeName string
    Maps to ICF target attribute name
    IdcsIcfRequired bool
    Metadata to identify the ICF required attribute
    IdcsIndirectRefResourceAttributes List<string>
    Specifies the indirectly referenced Resources
    IdcsInternal 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 List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy>
    The User or App who modified the Resource
    IdcsLastUpgradedInRelease string
    The release number when the resource was upgraded.
    IdcsMaxLength int
    Specifies the maximum length of the attribute
    IdcsMaxValue int
    Specifies the maximum value of the integer attribute
    IdcsMinLength int
    Specifies the minimum length of the attribute
    IdcsMinValue int
    Specifies the minimum value of the integer attribute
    IdcsMultiLanguage bool
    If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
    IdcsPreventedOperations List<string>
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    IdcsRefResourceAttribute string
    Specifies the referenced Resource attribute
    IdcsRefResourceAttributes List<string>
    Specifies the directly referenced Resources
    IdcsSchemaUrn string
    Schema URN string that this attribute belongs to
    IdcsScimCompliant bool
    Indicates if the attribute is scim compliant, default is true
    IdcsSearchable bool
    Specifies whether this attribute can be included in a search filter
    IdcsSensitive string
    Flag to specify if the attribute should be encrypted or hashed
    IdcsTargetAttributeName string
    Target attribute name that this attribute gets mapped to for persistence
    IdcsTargetAttributeNameToMigrateFrom 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 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 string
    Target index name created for this attribute for performance
    IdcsToTargetMapper string
    Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
    IdcsTrimStringValue bool
    Trims any leading and trailing blanks from String values. Default is True.
    IdcsValidateReference bool
    Validate payload reference value during create, replace, and update. Default is True.
    IdcsValuePersisted bool
    Specifies whether the value of the Resource attribute is persisted
    Metas List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta>
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    MultiValued bool
    Indicates the attribute's plurality
    Mutability string
    Specifies if the attribute is mutable
    Name string
    Attribute's name
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ReferenceTypes 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 bool
    Specifies if the attribute is required
    ResourceType string
    ResourceType this attribute belongs to.
    Returned 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 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 List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag>
    A list of tags on this resource.
    TenancyOcid string
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    Type string
    The attribute's data type--for example, String
    Uniqueness 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 []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 bool
    Specifies if the String attribute is case-sensitive
    CompartmentOcid string
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    DeleteInProgress 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 string
    The attribute's human-readable description
    DomainOcid string
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    EndUserMutability string
    Specifies User mutability for this attribute
    EndUserMutabilityAllowedValues []string
    Specifies the list of User mutabilities allowed
    Id 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 string
    Indicates that the schema has been added since this release number
    IdcsAddedSinceVersion int
    Indicates that the schema has been added since version
    IdcsAttributeCacheable 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 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 bool
    Specifies whether changes to this attribute value are audited
    IdcsAutoIncrementSeqName string
    Sequence tracking ID name for the attribute
    IdcsCanonicalValueSourceFilter string
    Filter to use when getting canonical values for this schema attribute
    IdcsCanonicalValueSourceResourceType string
    Specifies the Resource type to read from for dynamic canonical values
    IdcsCompositeKeys []string
    The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
    IdcsCreatedBies []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy
    The User or App who created the Resource
    IdcsCsvColumnHeaderName string
    The attribute defining the CSV column header name for import/export
    IdcsCustomAttribute bool
    custom attribute flag.
    IdcsDeprecatedSinceReleaseNumber string
    Indicates that the schema has been deprecated since this release number
    IdcsDeprecatedSinceVersion int
    Indicates that the schema has been deprecated since version
    IdcsDisplayName string
    Specifies the user-friendly displayable attribute name or catalog key used for localization
    IdcsDisplayNameMessageId string
    Localized schema attribute display name for use by UI client for displaying attribute labels
    IdcsFetchComplexAttributeValues 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 string
    Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
    IdcsFullyQualifiedName string
    Fully qualified name of this attribute
    IdcsGenerated bool
    Specifies whether this attribute value was generated
    IdcsIcfAttributeType string
    Maps to ICF data type
    IdcsIcfBundleAttributeName string
    Maps to ICF target attribute name
    IdcsIcfRequired bool
    Metadata to identify the ICF required attribute
    IdcsIndirectRefResourceAttributes []string
    Specifies the indirectly referenced Resources
    IdcsInternal 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 []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy
    The User or App who modified the Resource
    IdcsLastUpgradedInRelease string
    The release number when the resource was upgraded.
    IdcsMaxLength int
    Specifies the maximum length of the attribute
    IdcsMaxValue int
    Specifies the maximum value of the integer attribute
    IdcsMinLength int
    Specifies the minimum length of the attribute
    IdcsMinValue int
    Specifies the minimum value of the integer attribute
    IdcsMultiLanguage bool
    If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
    IdcsPreventedOperations []string
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    IdcsRefResourceAttribute string
    Specifies the referenced Resource attribute
    IdcsRefResourceAttributes []string
    Specifies the directly referenced Resources
    IdcsSchemaUrn string
    Schema URN string that this attribute belongs to
    IdcsScimCompliant bool
    Indicates if the attribute is scim compliant, default is true
    IdcsSearchable bool
    Specifies whether this attribute can be included in a search filter
    IdcsSensitive string
    Flag to specify if the attribute should be encrypted or hashed
    IdcsTargetAttributeName string
    Target attribute name that this attribute gets mapped to for persistence
    IdcsTargetAttributeNameToMigrateFrom 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 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 string
    Target index name created for this attribute for performance
    IdcsToTargetMapper string
    Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
    IdcsTrimStringValue bool
    Trims any leading and trailing blanks from String values. Default is True.
    IdcsValidateReference bool
    Validate payload reference value during create, replace, and update. Default is True.
    IdcsValuePersisted bool
    Specifies whether the value of the Resource attribute is persisted
    Metas []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    MultiValued bool
    Indicates the attribute's plurality
    Mutability string
    Specifies if the attribute is mutable
    Name string
    Attribute's name
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ReferenceTypes []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 bool
    Specifies if the attribute is required
    ResourceType string
    ResourceType this attribute belongs to.
    Returned 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 []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 []GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag
    A list of tags on this resource.
    TenancyOcid string
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    Type string
    The attribute's data type--for example, String
    Uniqueness 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 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 Boolean
    Specifies if the String attribute is case-sensitive
    compartmentOcid String
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    deleteInProgress 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 String
    The attribute's human-readable description
    domainOcid String
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    endUserMutability String
    Specifies User mutability for this attribute
    endUserMutabilityAllowedValues List<String>
    Specifies the list of User mutabilities allowed
    id 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 String
    Indicates that the schema has been added since this release number
    idcsAddedSinceVersion Integer
    Indicates that the schema has been added since version
    idcsAttributeCacheable 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 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 Boolean
    Specifies whether changes to this attribute value are audited
    idcsAutoIncrementSeqName String
    Sequence tracking ID name for the attribute
    idcsCanonicalValueSourceFilter String
    Filter to use when getting canonical values for this schema attribute
    idcsCanonicalValueSourceResourceType String
    Specifies the Resource type to read from for dynamic canonical values
    idcsCompositeKeys List<String>
    The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
    idcsCreatedBies List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy>
    The User or App who created the Resource
    idcsCsvColumnHeaderName String
    The attribute defining the CSV column header name for import/export
    idcsCustomAttribute Boolean
    custom attribute flag.
    idcsDeprecatedSinceReleaseNumber String
    Indicates that the schema has been deprecated since this release number
    idcsDeprecatedSinceVersion Integer
    Indicates that the schema has been deprecated since version
    idcsDisplayName String
    Specifies the user-friendly displayable attribute name or catalog key used for localization
    idcsDisplayNameMessageId String
    Localized schema attribute display name for use by UI client for displaying attribute labels
    idcsFetchComplexAttributeValues 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 String
    Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
    idcsFullyQualifiedName String
    Fully qualified name of this attribute
    idcsGenerated Boolean
    Specifies whether this attribute value was generated
    idcsIcfAttributeType String
    Maps to ICF data type
    idcsIcfBundleAttributeName String
    Maps to ICF target attribute name
    idcsIcfRequired Boolean
    Metadata to identify the ICF required attribute
    idcsIndirectRefResourceAttributes List<String>
    Specifies the indirectly referenced Resources
    idcsInternal 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 List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy>
    The User or App who modified the Resource
    idcsLastUpgradedInRelease String
    The release number when the resource was upgraded.
    idcsMaxLength Integer
    Specifies the maximum length of the attribute
    idcsMaxValue Integer
    Specifies the maximum value of the integer attribute
    idcsMinLength Integer
    Specifies the minimum length of the attribute
    idcsMinValue Integer
    Specifies the minimum value of the integer attribute
    idcsMultiLanguage Boolean
    If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
    idcsPreventedOperations List<String>
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    idcsRefResourceAttribute String
    Specifies the referenced Resource attribute
    idcsRefResourceAttributes List<String>
    Specifies the directly referenced Resources
    idcsSchemaUrn String
    Schema URN string that this attribute belongs to
    idcsScimCompliant Boolean
    Indicates if the attribute is scim compliant, default is true
    idcsSearchable Boolean
    Specifies whether this attribute can be included in a search filter
    idcsSensitive String
    Flag to specify if the attribute should be encrypted or hashed
    idcsTargetAttributeName String
    Target attribute name that this attribute gets mapped to for persistence
    idcsTargetAttributeNameToMigrateFrom 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 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 String
    Target index name created for this attribute for performance
    idcsToTargetMapper String
    Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
    idcsTrimStringValue Boolean
    Trims any leading and trailing blanks from String values. Default is True.
    idcsValidateReference Boolean
    Validate payload reference value during create, replace, and update. Default is True.
    idcsValuePersisted Boolean
    Specifies whether the value of the Resource attribute is persisted
    metas List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta>
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    multiValued Boolean
    Indicates the attribute's plurality
    mutability String
    Specifies if the attribute is mutable
    name String
    Attribute's name
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    referenceTypes 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 Boolean
    Specifies if the attribute is required
    resourceType String
    ResourceType this attribute belongs to.
    returned 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 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 List<GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag>
    A list of tags on this resource.
    tenancyOcid String
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    type String
    The attribute's data type--for example, String
    uniqueness 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 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 boolean
    Specifies if the String attribute is case-sensitive
    compartmentOcid string
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    deleteInProgress 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 string
    The attribute's human-readable description
    domainOcid string
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    endUserMutability string
    Specifies User mutability for this attribute
    endUserMutabilityAllowedValues string[]
    Specifies the list of User mutabilities allowed
    id 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 string
    Indicates that the schema has been added since this release number
    idcsAddedSinceVersion number
    Indicates that the schema has been added since version
    idcsAttributeCacheable 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 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 boolean
    Specifies whether changes to this attribute value are audited
    idcsAutoIncrementSeqName string
    Sequence tracking ID name for the attribute
    idcsCanonicalValueSourceFilter string
    Filter to use when getting canonical values for this schema attribute
    idcsCanonicalValueSourceResourceType string
    Specifies the Resource type to read from for dynamic canonical values
    idcsCompositeKeys string[]
    The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
    idcsCreatedBies GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy[]
    The User or App who created the Resource
    idcsCsvColumnHeaderName string
    The attribute defining the CSV column header name for import/export
    idcsCustomAttribute boolean
    custom attribute flag.
    idcsDeprecatedSinceReleaseNumber string
    Indicates that the schema has been deprecated since this release number
    idcsDeprecatedSinceVersion number
    Indicates that the schema has been deprecated since version
    idcsDisplayName string
    Specifies the user-friendly displayable attribute name or catalog key used for localization
    idcsDisplayNameMessageId string
    Localized schema attribute display name for use by UI client for displaying attribute labels
    idcsFetchComplexAttributeValues 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 string
    Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
    idcsFullyQualifiedName string
    Fully qualified name of this attribute
    idcsGenerated boolean
    Specifies whether this attribute value was generated
    idcsIcfAttributeType string
    Maps to ICF data type
    idcsIcfBundleAttributeName string
    Maps to ICF target attribute name
    idcsIcfRequired boolean
    Metadata to identify the ICF required attribute
    idcsIndirectRefResourceAttributes string[]
    Specifies the indirectly referenced Resources
    idcsInternal 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 GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy[]
    The User or App who modified the Resource
    idcsLastUpgradedInRelease string
    The release number when the resource was upgraded.
    idcsMaxLength number
    Specifies the maximum length of the attribute
    idcsMaxValue number
    Specifies the maximum value of the integer attribute
    idcsMinLength number
    Specifies the minimum length of the attribute
    idcsMinValue number
    Specifies the minimum value of the integer attribute
    idcsMultiLanguage boolean
    If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
    idcsPreventedOperations string[]
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    idcsRefResourceAttribute string
    Specifies the referenced Resource attribute
    idcsRefResourceAttributes string[]
    Specifies the directly referenced Resources
    idcsSchemaUrn string
    Schema URN string that this attribute belongs to
    idcsScimCompliant boolean
    Indicates if the attribute is scim compliant, default is true
    idcsSearchable boolean
    Specifies whether this attribute can be included in a search filter
    idcsSensitive string
    Flag to specify if the attribute should be encrypted or hashed
    idcsTargetAttributeName string
    Target attribute name that this attribute gets mapped to for persistence
    idcsTargetAttributeNameToMigrateFrom 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 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 string
    Target index name created for this attribute for performance
    idcsToTargetMapper string
    Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
    idcsTrimStringValue boolean
    Trims any leading and trailing blanks from String values. Default is True.
    idcsValidateReference boolean
    Validate payload reference value during create, replace, and update. Default is True.
    idcsValuePersisted boolean
    Specifies whether the value of the Resource attribute is persisted
    metas GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta[]
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    multiValued boolean
    Indicates the attribute's plurality
    mutability string
    Specifies if the attribute is mutable
    name string
    Attribute's name
    ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    referenceTypes 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 boolean
    Specifies if the attribute is required
    resourceType string
    ResourceType this attribute belongs to.
    returned 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 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 GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag[]
    A list of tags on this resource.
    tenancyOcid string
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    type string
    The attribute's data type--for example, String
    uniqueness 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 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 bool
    Specifies if the String attribute is case-sensitive
    compartment_ocid str
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    delete_in_progress 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 str
    The attribute's human-readable description
    domain_ocid str
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    end_user_mutability str
    Specifies User mutability for this attribute
    end_user_mutability_allowed_values Sequence[str]
    Specifies the list of User mutabilities allowed
    id 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 str
    Indicates that the schema has been added since this release number
    idcs_added_since_version int
    Indicates that the schema has been added since version
    idcs_attribute_cacheable 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 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 bool
    Specifies whether changes to this attribute value are audited
    idcs_auto_increment_seq_name str
    Sequence tracking ID name for the attribute
    idcs_canonical_value_source_filter str
    Filter to use when getting canonical values for this schema attribute
    idcs_canonical_value_source_resource_type str
    Specifies the Resource type to read from for dynamic canonical values
    idcs_composite_keys 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 Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy]
    The User or App who created the Resource
    idcs_csv_column_header_name str
    The attribute defining the CSV column header name for import/export
    idcs_custom_attribute bool
    custom attribute flag.
    idcs_deprecated_since_release_number str
    Indicates that the schema has been deprecated since this release number
    idcs_deprecated_since_version int
    Indicates that the schema has been deprecated since version
    idcs_display_name str
    Specifies the user-friendly displayable attribute name or catalog key used for localization
    idcs_display_name_message_id str
    Localized schema attribute display name for use by UI client for displaying attribute labels
    idcs_fetch_complex_attribute_values 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 str
    Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
    idcs_fully_qualified_name str
    Fully qualified name of this attribute
    idcs_generated bool
    Specifies whether this attribute value was generated
    idcs_icf_attribute_type str
    Maps to ICF data type
    idcs_icf_bundle_attribute_name str
    Maps to ICF target attribute name
    idcs_icf_required bool
    Metadata to identify the ICF required attribute
    idcs_indirect_ref_resource_attributes Sequence[str]
    Specifies the indirectly referenced Resources
    idcs_internal 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 Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy]
    The User or App who modified the Resource
    idcs_last_upgraded_in_release str
    The release number when the resource was upgraded.
    idcs_max_length int
    Specifies the maximum length of the attribute
    idcs_max_value int
    Specifies the maximum value of the integer attribute
    idcs_min_length int
    Specifies the minimum length of the attribute
    idcs_min_value int
    Specifies the minimum value of the integer attribute
    idcs_multi_language bool
    If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
    idcs_prevented_operations 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 str
    Specifies the referenced Resource attribute
    idcs_ref_resource_attributes Sequence[str]
    Specifies the directly referenced Resources
    idcs_schema_urn str
    Schema URN string that this attribute belongs to
    idcs_scim_compliant bool
    Indicates if the attribute is scim compliant, default is true
    idcs_searchable bool
    Specifies whether this attribute can be included in a search filter
    idcs_sensitive str
    Flag to specify if the attribute should be encrypted or hashed
    idcs_target_attribute_name str
    Target attribute name that this attribute gets mapped to for persistence
    idcs_target_attribute_name_to_migrate_from 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 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 str
    Target index name created for this attribute for performance
    idcs_to_target_mapper str
    Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
    idcs_trim_string_value bool
    Trims any leading and trailing blanks from String values. Default is True.
    idcs_validate_reference bool
    Validate payload reference value during create, replace, and update. Default is True.
    idcs_value_persisted bool
    Specifies whether the value of the Resource attribute is persisted
    metas Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta]
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    multi_valued bool
    Indicates the attribute's plurality
    mutability str
    Specifies if the attribute is mutable
    name str
    Attribute's name
    ocid str
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    reference_types 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 bool
    Specifies if the attribute is required
    resource_type str
    ResourceType this attribute belongs to.
    returned 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 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 Sequence[identity.GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag]
    A list of tags on this resource.
    tenancy_ocid str
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    type str
    The attribute's data type--for example, String
    uniqueness 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 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 Boolean
    Specifies if the String attribute is case-sensitive
    compartmentOcid String
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    deleteInProgress 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 String
    The attribute's human-readable description
    domainOcid String
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    endUserMutability String
    Specifies User mutability for this attribute
    endUserMutabilityAllowedValues List<String>
    Specifies the list of User mutabilities allowed
    id 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 String
    Indicates that the schema has been added since this release number
    idcsAddedSinceVersion Number
    Indicates that the schema has been added since version
    idcsAttributeCacheable 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 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 Boolean
    Specifies whether changes to this attribute value are audited
    idcsAutoIncrementSeqName String
    Sequence tracking ID name for the attribute
    idcsCanonicalValueSourceFilter String
    Filter to use when getting canonical values for this schema attribute
    idcsCanonicalValueSourceResourceType String
    Specifies the Resource type to read from for dynamic canonical values
    idcsCompositeKeys List<String>
    The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
    idcsCreatedBies List<Property Map>
    The User or App who created the Resource
    idcsCsvColumnHeaderName String
    The attribute defining the CSV column header name for import/export
    idcsCustomAttribute Boolean
    custom attribute flag.
    idcsDeprecatedSinceReleaseNumber String
    Indicates that the schema has been deprecated since this release number
    idcsDeprecatedSinceVersion Number
    Indicates that the schema has been deprecated since version
    idcsDisplayName String
    Specifies the user-friendly displayable attribute name or catalog key used for localization
    idcsDisplayNameMessageId String
    Localized schema attribute display name for use by UI client for displaying attribute labels
    idcsFetchComplexAttributeValues 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 String
    Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
    idcsFullyQualifiedName String
    Fully qualified name of this attribute
    idcsGenerated Boolean
    Specifies whether this attribute value was generated
    idcsIcfAttributeType String
    Maps to ICF data type
    idcsIcfBundleAttributeName String
    Maps to ICF target attribute name
    idcsIcfRequired Boolean
    Metadata to identify the ICF required attribute
    idcsIndirectRefResourceAttributes List<String>
    Specifies the indirectly referenced Resources
    idcsInternal 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 List<Property Map>
    The User or App who modified the Resource
    idcsLastUpgradedInRelease String
    The release number when the resource was upgraded.
    idcsMaxLength Number
    Specifies the maximum length of the attribute
    idcsMaxValue Number
    Specifies the maximum value of the integer attribute
    idcsMinLength Number
    Specifies the minimum length of the attribute
    idcsMinValue Number
    Specifies the minimum value of the integer attribute
    idcsMultiLanguage Boolean
    If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
    idcsPreventedOperations List<String>
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    idcsRefResourceAttribute String
    Specifies the referenced Resource attribute
    idcsRefResourceAttributes List<String>
    Specifies the directly referenced Resources
    idcsSchemaUrn String
    Schema URN string that this attribute belongs to
    idcsScimCompliant Boolean
    Indicates if the attribute is scim compliant, default is true
    idcsSearchable Boolean
    Specifies whether this attribute can be included in a search filter
    idcsSensitive String
    Flag to specify if the attribute should be encrypted or hashed
    idcsTargetAttributeName String
    Target attribute name that this attribute gets mapped to for persistence
    idcsTargetAttributeNameToMigrateFrom 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 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 String
    Target index name created for this attribute for performance
    idcsToTargetMapper String
    Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
    idcsTrimStringValue Boolean
    Trims any leading and trailing blanks from String values. Default is True.
    idcsValidateReference Boolean
    Validate payload reference value during create, replace, and update. Default is True.
    idcsValuePersisted Boolean
    Specifies whether the value of the Resource attribute is persisted
    metas List<Property Map>
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    multiValued Boolean
    Indicates the attribute's plurality
    mutability String
    Specifies if the attribute is mutable
    name String
    Attribute's name
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    referenceTypes 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 Boolean
    Specifies if the attribute is required
    resourceType String
    ResourceType this attribute belongs to.
    returned 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 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 List<Property Map>
    A list of tags on this resource.
    tenancyOcid String
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    type String
    The attribute's data type--for example, String
    uniqueness 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 string
    The displayName of the User or App who modified this Resource
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Ref string
    The URI of the SCIM resource that represents the User or App who modified this Resource
    Type string
    The attribute's data type--for example, String
    Value string
    Value of the tag.
    Display string
    The displayName of the User or App who modified this Resource
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Ref string
    The URI of the SCIM resource that represents the User or App who modified this Resource
    Type string
    The attribute's data type--for example, String
    Value string
    Value of the tag.
    display String
    The displayName of the User or App who modified this Resource
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref String
    The URI of the SCIM resource that represents the User or App who modified this Resource
    type String
    The attribute's data type--for example, String
    value String
    Value of the tag.
    display string
    The displayName of the User or App who modified this Resource
    ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref string
    The URI of the SCIM resource that represents the User or App who modified this Resource
    type string
    The attribute's data type--for example, String
    value string
    Value of the tag.
    display str
    The displayName of the User or App who modified this Resource
    ocid str
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref str
    The URI of the SCIM resource that represents the User or App who modified this Resource
    type str
    The attribute's data type--for example, String
    value str
    Value of the tag.
    display String
    The displayName of the User or App who modified this Resource
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref String
    The URI of the SCIM resource that represents the User or App who modified this Resource
    type String
    The attribute's data type--for example, String
    value String
    Value of the tag.

    GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy

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

    GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta

    Created string
    The DateTime the Resource was added to the Service Provider
    LastModified string
    The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
    Location string
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    ResourceType string
    ResourceType this attribute belongs to.
    Version string
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    Created string
    The DateTime the Resource was added to the Service Provider
    LastModified string
    The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
    Location string
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    ResourceType string
    ResourceType this attribute belongs to.
    Version string
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created String
    The DateTime the Resource was added to the Service Provider
    lastModified String
    The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
    location String
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resourceType String
    ResourceType this attribute belongs to.
    version String
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created string
    The DateTime the Resource was added to the Service Provider
    lastModified string
    The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
    location string
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resourceType string
    ResourceType this attribute belongs to.
    version string
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created str
    The DateTime the Resource was added to the Service Provider
    last_modified str
    The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
    location str
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resource_type str
    ResourceType this attribute belongs to.
    version str
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created String
    The DateTime the Resource was added to the Service Provider
    lastModified String
    The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
    location String
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resourceType String
    ResourceType this attribute belongs to.
    version String
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag

    Key string
    Key or name of the tag.
    Value string
    Value of the tag.
    Key string
    Key or name of the tag.
    Value string
    Value of the tag.
    key String
    Key or name of the tag.
    value String
    Value of the tag.
    key string
    Key or name of the tag.
    value string
    Value of the tag.
    key str
    Key or name of the tag.
    value str
    Value of the tag.
    key String
    Key or name of the tag.
    value 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.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi