Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Identity.getDomainsResourceTypeSchemaAttributes
Explore with Pulumi AI
This data source provides the list of Resource Type Schema Attributes in Oracle Cloud Infrastructure Identity Domains service.
Search Resource Type Schema Attributes
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testResourceTypeSchemaAttributes = oci.Identity.getDomainsResourceTypeSchemaAttributes({
    idcsEndpoint: testDomain.url,
    resourceTypeSchemaAttributeCount: resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount,
    resourceTypeSchemaAttributeFilter: resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter,
    attributeSets: ["all"],
    attributes: "",
    authorization: resourceTypeSchemaAttributeAuthorization,
    resourceTypeSchemaVersion: resourceTypeSchemaAttributeResourceTypeSchemaVersion,
    startIndex: resourceTypeSchemaAttributeStartIndex,
});
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/v2/go/oci/identity"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := identity.GetDomainsResourceTypeSchemaAttributes(ctx, &identity.GetDomainsResourceTypeSchemaAttributesArgs{
			IdcsEndpoint:                      testDomain.Url,
			ResourceTypeSchemaAttributeCount:  pulumi.IntRef(resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount),
			ResourceTypeSchemaAttributeFilter: pulumi.StringRef(resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter),
			AttributeSets: []string{
				"all",
			},
			Attributes:                pulumi.StringRef(""),
			Authorization:             pulumi.StringRef(resourceTypeSchemaAttributeAuthorization),
			ResourceTypeSchemaVersion: pulumi.StringRef(resourceTypeSchemaAttributeResourceTypeSchemaVersion),
			StartIndex:                pulumi.IntRef(resourceTypeSchemaAttributeStartIndex),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
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)
public static Output<GetDomainsResourceTypeSchemaAttributesResult> getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Identity/getDomainsResourceTypeSchemaAttributes:getDomainsResourceTypeSchemaAttributes
  arguments:
    # arguments dictionaryThe 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.
- 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
- ResourceType intSchema Attribute Count 
- 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).
- ResourceType stringSchema Attribute Filter 
- 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.
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- 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
- ResourceType intSchema Attribute Count 
- 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).
- ResourceType stringSchema Attribute Filter 
- 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.
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- 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
- resourceType IntegerSchema Attribute Count 
- 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).
- resourceType StringSchema Attribute Filter 
- 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.
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- 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
- resourceType numberSchema Attribute Count 
- 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).
- resourceType stringSchema Attribute Filter 
- 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.
- resourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- 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_ intschema_ attribute_ count 
- 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_ strschema_ attribute_ filter 
- 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_ strschema_ version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- 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
- resourceType NumberSchema Attribute Count 
- 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).
- resourceType StringSchema Attribute Filter 
- 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.
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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
- ItemsPer intPage 
- The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- ResourceType List<GetSchema Attributes Domains Resource Type Schema Attributes Resource Type Schema Attribute> 
- 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
- string
- CompartmentId string
- ResourceType intSchema Attribute Count 
- ResourceType stringSchema Attribute Filter 
- ResourceType stringSchema Version 
- 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
- ItemsPer intPage 
- The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- ResourceType []GetSchema Attributes Domains Resource Type Schema Attributes Resource Type Schema Attribute 
- 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
- string
- CompartmentId string
- ResourceType intSchema Attribute Count 
- ResourceType stringSchema Attribute Filter 
- ResourceType stringSchema Version 
- 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
- itemsPer IntegerPage 
- The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resourceType List<GetSchema Attributes Domains Resource Type Schema Attributes Resource Type Schema Attribute> 
- 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
- String
- compartmentId String
- resourceType IntegerSchema Attribute Count 
- resourceType StringSchema Attribute Filter 
- resourceType StringSchema Version 
- 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
- itemsPer numberPage 
- The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resourceType GetSchema Attributes Domains Resource Type Schema Attributes Resource Type Schema Attribute[] 
- 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
- string
- compartmentId string
- resourceType numberSchema Attribute Count 
- resourceType stringSchema Attribute Filter 
- resourceType stringSchema Version 
- 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_ intpage 
- The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resource_type_ Sequence[Getschema_ attributes Domains Resource Type Schema Attributes Resource Type Schema Attribute] 
- 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
- str
- compartment_id str
- resource_type_ intschema_ attribute_ count 
- resource_type_ strschema_ attribute_ filter 
- resource_type_ strschema_ version 
- 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
- itemsPer NumberPage 
- The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resourceType List<Property Map>Schema Attributes 
- 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
- String
- compartmentId String
- resourceType NumberSchema Attribute Count 
- resourceType StringSchema Attribute Filter 
- resourceType StringSchema Version 
- 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.
- DeleteIn boolProgress 
- 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.
- EndUser stringMutability 
- Specifies User mutability for this attribute
- EndUser List<string>Mutability Allowed Values 
- 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.
- IdcsAdded stringSince Release Number 
- Indicates that the schema has been added since this release number
- IdcsAdded intSince Version 
- Indicates that the schema has been added since version
- IdcsAttribute boolCacheable 
- 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.
- IdcsAttribute boolMappable 
- 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
- IdcsAuto stringIncrement Seq Name 
- Sequence tracking ID name for the attribute
- IdcsCanonical stringValue Source Filter 
- Filter to use when getting canonical values for this schema attribute
- IdcsCanonical stringValue Source Resource Type 
- Specifies the Resource type to read from for dynamic canonical values
- IdcsComposite List<string>Keys 
- The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- IdcsCreated List<GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By> 
- The User or App who created the Resource
- IdcsCsv stringColumn Header Name 
- The attribute defining the CSV column header name for import/export
- IdcsCustom boolAttribute 
- custom attribute flag.
- IdcsDeprecated stringSince Release Number 
- Indicates that the schema has been deprecated since this release number
- IdcsDeprecated intSince Version 
- Indicates that the schema has been deprecated since version
- IdcsDisplay stringName 
- Specifies the user-friendly displayable attribute name or catalog key used for localization
- IdcsDisplay stringName Message Id 
- Localized schema attribute display name for use by UI client for displaying attribute labels
- IdcsFetch boolComplex Attribute Values 
- 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.
 
- IdcsFrom stringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- IdcsFully stringQualified Name 
- Fully qualified name of this attribute
- IdcsGenerated bool
- Specifies whether this attribute value was generated
- IdcsIcf stringAttribute Type 
- Maps to ICF data type
- IdcsIcf stringBundle Attribute Name 
- Maps to ICF target attribute name
- IdcsIcf boolRequired 
- Metadata to identify the ICF required attribute
- IdcsIndirect List<string>Ref Resource Attributes 
- 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.
- IdcsLast List<GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By> 
- The User or App who modified the Resource
- IdcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- IdcsMax intLength 
- Specifies the maximum length of the attribute
- IdcsMax intValue 
- Specifies the maximum value of the integer attribute
- IdcsMin intLength 
- Specifies the minimum length of the attribute
- IdcsMin intValue 
- Specifies the minimum value of the integer attribute
- IdcsMulti boolLanguage 
- If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- IdcsPrevented List<string>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- IdcsRef stringResource Attribute 
- Specifies the referenced Resource attribute
- IdcsRef List<string>Resource Attributes 
- Specifies the directly referenced Resources
- IdcsSchema stringUrn 
- Schema URN string that this attribute belongs to
- IdcsScim boolCompliant 
- 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
- IdcsTarget stringAttribute Name 
- Target attribute name that this attribute gets mapped to for persistence
- IdcsTarget stringAttribute Name To Migrate From 
- Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- IdcsTarget stringNorm Attribute Name 
- 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.
- IdcsTarget stringUnique Constraint Name 
- Target index name created for this attribute for performance
- IdcsTo stringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- IdcsTrim boolString Value 
- Trims any leading and trailing blanks from String values. Default is True.
- IdcsValidate boolReference 
- Validate payload reference value during create, replace, and update. Default is True.
- IdcsValue boolPersisted 
- Specifies whether the value of the Resource attribute is persisted
- Metas
List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta> 
- 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.
- 
List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag> 
- 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.
- DeleteIn boolProgress 
- 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.
- EndUser stringMutability 
- Specifies User mutability for this attribute
- EndUser []stringMutability Allowed Values 
- 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.
- IdcsAdded stringSince Release Number 
- Indicates that the schema has been added since this release number
- IdcsAdded intSince Version 
- Indicates that the schema has been added since version
- IdcsAttribute boolCacheable 
- 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.
- IdcsAttribute boolMappable 
- 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
- IdcsAuto stringIncrement Seq Name 
- Sequence tracking ID name for the attribute
- IdcsCanonical stringValue Source Filter 
- Filter to use when getting canonical values for this schema attribute
- IdcsCanonical stringValue Source Resource Type 
- Specifies the Resource type to read from for dynamic canonical values
- IdcsComposite []stringKeys 
- The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- IdcsCreated []GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By 
- The User or App who created the Resource
- IdcsCsv stringColumn Header Name 
- The attribute defining the CSV column header name for import/export
- IdcsCustom boolAttribute 
- custom attribute flag.
- IdcsDeprecated stringSince Release Number 
- Indicates that the schema has been deprecated since this release number
- IdcsDeprecated intSince Version 
- Indicates that the schema has been deprecated since version
- IdcsDisplay stringName 
- Specifies the user-friendly displayable attribute name or catalog key used for localization
- IdcsDisplay stringName Message Id 
- Localized schema attribute display name for use by UI client for displaying attribute labels
- IdcsFetch boolComplex Attribute Values 
- 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.
 
- IdcsFrom stringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- IdcsFully stringQualified Name 
- Fully qualified name of this attribute
- IdcsGenerated bool
- Specifies whether this attribute value was generated
- IdcsIcf stringAttribute Type 
- Maps to ICF data type
- IdcsIcf stringBundle Attribute Name 
- Maps to ICF target attribute name
- IdcsIcf boolRequired 
- Metadata to identify the ICF required attribute
- IdcsIndirect []stringRef Resource Attributes 
- 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.
- IdcsLast []GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By 
- The User or App who modified the Resource
- IdcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- IdcsMax intLength 
- Specifies the maximum length of the attribute
- IdcsMax intValue 
- Specifies the maximum value of the integer attribute
- IdcsMin intLength 
- Specifies the minimum length of the attribute
- IdcsMin intValue 
- Specifies the minimum value of the integer attribute
- IdcsMulti boolLanguage 
- If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- IdcsPrevented []stringOperations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- IdcsRef stringResource Attribute 
- Specifies the referenced Resource attribute
- IdcsRef []stringResource Attributes 
- Specifies the directly referenced Resources
- IdcsSchema stringUrn 
- Schema URN string that this attribute belongs to
- IdcsScim boolCompliant 
- 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
- IdcsTarget stringAttribute Name 
- Target attribute name that this attribute gets mapped to for persistence
- IdcsTarget stringAttribute Name To Migrate From 
- Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- IdcsTarget stringNorm Attribute Name 
- 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.
- IdcsTarget stringUnique Constraint Name 
- Target index name created for this attribute for performance
- IdcsTo stringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- IdcsTrim boolString Value 
- Trims any leading and trailing blanks from String values. Default is True.
- IdcsValidate boolReference 
- Validate payload reference value during create, replace, and update. Default is True.
- IdcsValue boolPersisted 
- Specifies whether the value of the Resource attribute is persisted
- Metas
[]GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta 
- 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.
- 
[]GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag 
- 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.
- deleteIn BooleanProgress 
- 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.
- endUser StringMutability 
- Specifies User mutability for this attribute
- endUser List<String>Mutability Allowed Values 
- 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.
- idcsAdded StringSince Release Number 
- Indicates that the schema has been added since this release number
- idcsAdded IntegerSince Version 
- Indicates that the schema has been added since version
- idcsAttribute BooleanCacheable 
- 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.
- idcsAttribute BooleanMappable 
- 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
- idcsAuto StringIncrement Seq Name 
- Sequence tracking ID name for the attribute
- idcsCanonical StringValue Source Filter 
- Filter to use when getting canonical values for this schema attribute
- idcsCanonical StringValue Source Resource Type 
- Specifies the Resource type to read from for dynamic canonical values
- idcsComposite List<String>Keys 
- The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcsCreated List<GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By> 
- The User or App who created the Resource
- idcsCsv StringColumn Header Name 
- The attribute defining the CSV column header name for import/export
- idcsCustom BooleanAttribute 
- custom attribute flag.
- idcsDeprecated StringSince Release Number 
- Indicates that the schema has been deprecated since this release number
- idcsDeprecated IntegerSince Version 
- Indicates that the schema has been deprecated since version
- idcsDisplay StringName 
- Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcsDisplay StringName Message Id 
- Localized schema attribute display name for use by UI client for displaying attribute labels
- idcsFetch BooleanComplex Attribute Values 
- 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.
 
- idcsFrom StringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcsFully StringQualified Name 
- Fully qualified name of this attribute
- idcsGenerated Boolean
- Specifies whether this attribute value was generated
- idcsIcf StringAttribute Type 
- Maps to ICF data type
- idcsIcf StringBundle Attribute Name 
- Maps to ICF target attribute name
- idcsIcf BooleanRequired 
- Metadata to identify the ICF required attribute
- idcsIndirect List<String>Ref Resource Attributes 
- 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.
- idcsLast List<GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By> 
- The User or App who modified the Resource
- idcsLast StringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsMax IntegerLength 
- Specifies the maximum length of the attribute
- idcsMax IntegerValue 
- Specifies the maximum value of the integer attribute
- idcsMin IntegerLength 
- Specifies the minimum length of the attribute
- idcsMin IntegerValue 
- Specifies the minimum value of the integer attribute
- idcsMulti BooleanLanguage 
- If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcsPrevented List<String>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcsRef StringResource Attribute 
- Specifies the referenced Resource attribute
- idcsRef List<String>Resource Attributes 
- Specifies the directly referenced Resources
- idcsSchema StringUrn 
- Schema URN string that this attribute belongs to
- idcsScim BooleanCompliant 
- 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
- idcsTarget StringAttribute Name 
- Target attribute name that this attribute gets mapped to for persistence
- idcsTarget StringAttribute Name To Migrate From 
- Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcsTarget StringNorm Attribute Name 
- 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.
- idcsTarget StringUnique Constraint Name 
- Target index name created for this attribute for performance
- idcsTo StringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcsTrim BooleanString Value 
- Trims any leading and trailing blanks from String values. Default is True.
- idcsValidate BooleanReference 
- Validate payload reference value during create, replace, and update. Default is True.
- idcsValue BooleanPersisted 
- Specifies whether the value of the Resource attribute is persisted
- metas
List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta> 
- 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.
- 
List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag> 
- 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.
- deleteIn booleanProgress 
- 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.
- endUser stringMutability 
- Specifies User mutability for this attribute
- endUser string[]Mutability Allowed Values 
- 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.
- idcsAdded stringSince Release Number 
- Indicates that the schema has been added since this release number
- idcsAdded numberSince Version 
- Indicates that the schema has been added since version
- idcsAttribute booleanCacheable 
- 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.
- idcsAttribute booleanMappable 
- 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
- idcsAuto stringIncrement Seq Name 
- Sequence tracking ID name for the attribute
- idcsCanonical stringValue Source Filter 
- Filter to use when getting canonical values for this schema attribute
- idcsCanonical stringValue Source Resource Type 
- Specifies the Resource type to read from for dynamic canonical values
- idcsComposite string[]Keys 
- The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcsCreated GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By[] 
- The User or App who created the Resource
- idcsCsv stringColumn Header Name 
- The attribute defining the CSV column header name for import/export
- idcsCustom booleanAttribute 
- custom attribute flag.
- idcsDeprecated stringSince Release Number 
- Indicates that the schema has been deprecated since this release number
- idcsDeprecated numberSince Version 
- Indicates that the schema has been deprecated since version
- idcsDisplay stringName 
- Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcsDisplay stringName Message Id 
- Localized schema attribute display name for use by UI client for displaying attribute labels
- idcsFetch booleanComplex Attribute Values 
- 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.
 
- idcsFrom stringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcsFully stringQualified Name 
- Fully qualified name of this attribute
- idcsGenerated boolean
- Specifies whether this attribute value was generated
- idcsIcf stringAttribute Type 
- Maps to ICF data type
- idcsIcf stringBundle Attribute Name 
- Maps to ICF target attribute name
- idcsIcf booleanRequired 
- Metadata to identify the ICF required attribute
- idcsIndirect string[]Ref Resource Attributes 
- 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.
- idcsLast GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By[] 
- The User or App who modified the Resource
- idcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsMax numberLength 
- Specifies the maximum length of the attribute
- idcsMax numberValue 
- Specifies the maximum value of the integer attribute
- idcsMin numberLength 
- Specifies the minimum length of the attribute
- idcsMin numberValue 
- Specifies the minimum value of the integer attribute
- idcsMulti booleanLanguage 
- If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcsPrevented string[]Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcsRef stringResource Attribute 
- Specifies the referenced Resource attribute
- idcsRef string[]Resource Attributes 
- Specifies the directly referenced Resources
- idcsSchema stringUrn 
- Schema URN string that this attribute belongs to
- idcsScim booleanCompliant 
- 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
- idcsTarget stringAttribute Name 
- Target attribute name that this attribute gets mapped to for persistence
- idcsTarget stringAttribute Name To Migrate From 
- Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcsTarget stringNorm Attribute Name 
- 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.
- idcsTarget stringUnique Constraint Name 
- Target index name created for this attribute for performance
- idcsTo stringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcsTrim booleanString Value 
- Trims any leading and trailing blanks from String values. Default is True.
- idcsValidate booleanReference 
- Validate payload reference value during create, replace, and update. Default is True.
- idcsValue booleanPersisted 
- Specifies whether the value of the Resource attribute is persisted
- metas
GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta[] 
- 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.
- 
GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag[] 
- 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_ boolprogress 
- 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_ strmutability 
- Specifies User mutability for this attribute
- end_user_ Sequence[str]mutability_ allowed_ values 
- 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_ strsince_ release_ number 
- Indicates that the schema has been added since this release number
- idcs_added_ intsince_ version 
- Indicates that the schema has been added since version
- idcs_attribute_ boolcacheable 
- 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_ boolmappable 
- 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_ strincrement_ seq_ name 
- Sequence tracking ID name for the attribute
- idcs_canonical_ strvalue_ source_ filter 
- Filter to use when getting canonical values for this schema attribute
- idcs_canonical_ strvalue_ source_ resource_ type 
- Specifies the Resource type to read from for dynamic canonical values
- idcs_composite_ Sequence[str]keys 
- The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs_created_ Sequence[Getbies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By] 
- The User or App who created the Resource
- idcs_csv_ strcolumn_ header_ name 
- The attribute defining the CSV column header name for import/export
- idcs_custom_ boolattribute 
- custom attribute flag.
- idcs_deprecated_ strsince_ release_ number 
- Indicates that the schema has been deprecated since this release number
- idcs_deprecated_ intsince_ version 
- Indicates that the schema has been deprecated since version
- idcs_display_ strname 
- Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs_display_ strname_ message_ id 
- Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs_fetch_ boolcomplex_ attribute_ values 
- 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_ strtarget_ mapper 
- Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs_fully_ strqualified_ name 
- Fully qualified name of this attribute
- idcs_generated bool
- Specifies whether this attribute value was generated
- idcs_icf_ strattribute_ type 
- Maps to ICF data type
- idcs_icf_ strbundle_ attribute_ name 
- Maps to ICF target attribute name
- idcs_icf_ boolrequired 
- Metadata to identify the ICF required attribute
- idcs_indirect_ Sequence[str]ref_ resource_ attributes 
- 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_ Sequence[Getmodified_ bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By] 
- The User or App who modified the Resource
- idcs_last_ strupgraded_ in_ release 
- The release number when the resource was upgraded.
- idcs_max_ intlength 
- Specifies the maximum length of the attribute
- idcs_max_ intvalue 
- Specifies the maximum value of the integer attribute
- idcs_min_ intlength 
- Specifies the minimum length of the attribute
- idcs_min_ intvalue 
- Specifies the minimum value of the integer attribute
- idcs_multi_ boollanguage 
- If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs_prevented_ Sequence[str]operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs_ref_ strresource_ attribute 
- Specifies the referenced Resource attribute
- idcs_ref_ Sequence[str]resource_ attributes 
- Specifies the directly referenced Resources
- idcs_schema_ strurn 
- Schema URN string that this attribute belongs to
- idcs_scim_ boolcompliant 
- 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_ strattribute_ name 
- Target attribute name that this attribute gets mapped to for persistence
- idcs_target_ strattribute_ name_ to_ migrate_ from 
- 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_ strnorm_ attribute_ name 
- 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_ strunique_ constraint_ name 
- Target index name created for this attribute for performance
- idcs_to_ strtarget_ mapper 
- Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs_trim_ boolstring_ value 
- Trims any leading and trailing blanks from String values. Default is True.
- idcs_validate_ boolreference 
- Validate payload reference value during create, replace, and update. Default is True.
- idcs_value_ boolpersisted 
- Specifies whether the value of the Resource attribute is persisted
- metas
Sequence[GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta] 
- 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.
- 
Sequence[GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag] 
- 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.
- deleteIn BooleanProgress 
- 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.
- endUser StringMutability 
- Specifies User mutability for this attribute
- endUser List<String>Mutability Allowed Values 
- 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.
- idcsAdded StringSince Release Number 
- Indicates that the schema has been added since this release number
- idcsAdded NumberSince Version 
- Indicates that the schema has been added since version
- idcsAttribute BooleanCacheable 
- 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.
- idcsAttribute BooleanMappable 
- 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
- idcsAuto StringIncrement Seq Name 
- Sequence tracking ID name for the attribute
- idcsCanonical StringValue Source Filter 
- Filter to use when getting canonical values for this schema attribute
- idcsCanonical StringValue Source Resource Type 
- Specifies the Resource type to read from for dynamic canonical values
- idcsComposite List<String>Keys 
- The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcsCreated List<Property Map>Bies 
- The User or App who created the Resource
- idcsCsv StringColumn Header Name 
- The attribute defining the CSV column header name for import/export
- idcsCustom BooleanAttribute 
- custom attribute flag.
- idcsDeprecated StringSince Release Number 
- Indicates that the schema has been deprecated since this release number
- idcsDeprecated NumberSince Version 
- Indicates that the schema has been deprecated since version
- idcsDisplay StringName 
- Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcsDisplay StringName Message Id 
- Localized schema attribute display name for use by UI client for displaying attribute labels
- idcsFetch BooleanComplex Attribute Values 
- 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.
 
- idcsFrom StringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcsFully StringQualified Name 
- Fully qualified name of this attribute
- idcsGenerated Boolean
- Specifies whether this attribute value was generated
- idcsIcf StringAttribute Type 
- Maps to ICF data type
- idcsIcf StringBundle Attribute Name 
- Maps to ICF target attribute name
- idcsIcf BooleanRequired 
- Metadata to identify the ICF required attribute
- idcsIndirect List<String>Ref Resource Attributes 
- 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.
- idcsLast List<Property Map>Modified Bies 
- The User or App who modified the Resource
- idcsLast StringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsMax NumberLength 
- Specifies the maximum length of the attribute
- idcsMax NumberValue 
- Specifies the maximum value of the integer attribute
- idcsMin NumberLength 
- Specifies the minimum length of the attribute
- idcsMin NumberValue 
- Specifies the minimum value of the integer attribute
- idcsMulti BooleanLanguage 
- If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcsPrevented List<String>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcsRef StringResource Attribute 
- Specifies the referenced Resource attribute
- idcsRef List<String>Resource Attributes 
- Specifies the directly referenced Resources
- idcsSchema StringUrn 
- Schema URN string that this attribute belongs to
- idcsScim BooleanCompliant 
- 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
- idcsTarget StringAttribute Name 
- Target attribute name that this attribute gets mapped to for persistence
- idcsTarget StringAttribute Name To Migrate From 
- Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcsTarget StringNorm Attribute Name 
- 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.
- idcsTarget StringUnique Constraint Name 
- Target index name created for this attribute for performance
- idcsTo StringTarget Mapper 
- Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcsTrim BooleanString Value 
- Trims any leading and trailing blanks from String values. Default is True.
- idcsValidate BooleanReference 
- Validate payload reference value during create, replace, and update. Default is True.
- idcsValue BooleanPersisted 
- 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.
- 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          
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.