Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.Identity.getDomainsResourceTypeSchemaAttributes
Explore with Pulumi AI
This data source provides the list of Resource Type Schema Attributes in Oracle Cloud Infrastructure Identity Domains service.
Search Resource Type Schema Attributes
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testResourceTypeSchemaAttributes = oci.Identity.getDomainsResourceTypeSchemaAttributes({
idcsEndpoint: testDomain.url,
resourceTypeSchemaAttributeCount: resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount,
resourceTypeSchemaAttributeFilter: resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter,
attributeSets: ["all"],
attributes: "",
authorization: resourceTypeSchemaAttributeAuthorization,
resourceTypeSchemaVersion: resourceTypeSchemaAttributeResourceTypeSchemaVersion,
startIndex: resourceTypeSchemaAttributeStartIndex,
});
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 dictionary
The following arguments are supported:
- Idcs
Endpoint This property is required. string - The basic endpoint for the identity domain
- Attribute
Sets 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.
- Compartment
Id string - 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 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.
- Resource
Type 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.
- Sort
By string - Sort
Order string - 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.
- Idcs
Endpoint This property is required. string - The basic endpoint for the identity domain
- Attribute
Sets []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.
- Compartment
Id string - 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 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.
- Resource
Type 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.
- Sort
By string - Sort
Order string - 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.
- idcs
Endpoint This property is required. String - The basic endpoint for the identity domain
- attribute
Sets 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.
- compartment
Id String - resource
Type 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).
- resource
Type 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.
- resource
Type 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.
- sort
By String - sort
Order String - start
Index 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.
- idcs
Endpoint This property is required. string - The basic endpoint for the identity domain
- attribute
Sets 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.
- compartment
Id string - resource
Type 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).
- resource
Type 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.
- resource
Type 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.
- sort
By string - sort
Order string - start
Index number - OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
- idcs_
endpoint This property is required. str - The basic endpoint for the identity domain
- attribute_
sets Sequence[str] - A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- idcs
Endpoint This property is required. String - The basic endpoint for the identity domain
- attribute
Sets 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.
- compartment
Id String - resource
Type 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).
- resource
Type 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.
- resource
Type 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.
- sort
By String - sort
Order String - start
Index 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.
- Idcs
Endpoint string - Items
Per intPage - The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- Resource
Type 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.
- 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 List<string> - Attributes string
- string
- Compartment
Id string - Resource
Type intSchema Attribute Count - Resource
Type stringSchema Attribute Filter - Resource
Type stringSchema Version - Sort
By string - Sort
Order string - 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.
- Idcs
Endpoint string - Items
Per intPage - The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- Resource
Type []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.
- 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 []string - Attributes string
- string
- Compartment
Id string - Resource
Type intSchema Attribute Count - Resource
Type stringSchema Attribute Filter - Resource
Type stringSchema Version - Sort
By string - Sort
Order string - 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.
- idcs
Endpoint String - items
Per IntegerPage - The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resource
Type 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.
- total
Results 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.
- attribute
Sets List<String> - attributes String
- String
- compartment
Id String - resource
Type IntegerSchema Attribute Count - resource
Type StringSchema Attribute Filter - resource
Type StringSchema Version - sort
By String - sort
Order String - start
Index 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.
- idcs
Endpoint string - items
Per numberPage - The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resource
Type 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.
- total
Results 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.
- attribute
Sets string[] - attributes string
- string
- compartment
Id string - resource
Type numberSchema Attribute Count - resource
Type stringSchema Attribute Filter - resource
Type stringSchema Version - sort
By string - sort
Order string - start
Index 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[identity.schema_ attributes Get 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.
- idcs
Endpoint String - items
Per NumberPage - The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
- resource
Type 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.
- total
Results 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.
- attribute
Sets List<String> - attributes String
- String
- compartment
Id String - resource
Type NumberSchema Attribute Count - resource
Type StringSchema Attribute Filter - resource
Type StringSchema Version - sort
By String - sort
Order String - start
Index 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
- Canonical
Values This property is required. List<string> - A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
- Case
Exact This property is required. bool - Specifies if the String attribute is case-sensitive
- Compartment
Ocid This property is required. string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In Progress This property is required. bool - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Description
This property is required. string - The attribute's human-readable description
- Domain
Ocid This property is required. string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- End
User Mutability This property is required. string - Specifies User mutability for this attribute
- End
User Mutability Allowed Values This property is required. List<string> - Specifies the list of User mutabilities allowed
- Id
This property is required. string - Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- Idcs
Added Since Release Number This property is required. string - Indicates that the schema has been added since this release number
- Idcs
Added Since Version This property is required. int - Indicates that the schema has been added since version
- Idcs
Attribute Cacheable This property is required. bool - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- Idcs
Attribute Mappable This property is required. bool - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- Idcs
Auditable This property is required. bool - Specifies whether changes to this attribute value are audited
- Idcs
Auto Increment Seq Name This property is required. string - Sequence tracking ID name for the attribute
- Idcs
Canonical Value Source Filter This property is required. string - Filter to use when getting canonical values for this schema attribute
- Idcs
Canonical Value Source Resource Type This property is required. string - Specifies the Resource type to read from for dynamic canonical values
- Idcs
Composite Keys This property is required. List<string> - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- Idcs
Created Bies This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By> - The User or App who created the Resource
- Idcs
Csv Column Header Name This property is required. string - The attribute defining the CSV column header name for import/export
- Idcs
Custom Attribute This property is required. bool - custom attribute flag.
- Idcs
Deprecated Since Release Number This property is required. string - Indicates that the schema has been deprecated since this release number
- Idcs
Deprecated Since Version This property is required. int - Indicates that the schema has been deprecated since version
- Idcs
Display Name This property is required. string - Specifies the user-friendly displayable attribute name or catalog key used for localization
- Idcs
Display Name Message Id This property is required. string - Localized schema attribute display name for use by UI client for displaying attribute labels
- Idcs
Fetch Complex Attribute Values This property is required. bool - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- Idcs
From Target Mapper This property is required. string - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- Idcs
Fully Qualified Name This property is required. string - Fully qualified name of this attribute
- Idcs
Generated This property is required. bool - Specifies whether this attribute value was generated
- Idcs
Icf Attribute Type This property is required. string - Maps to ICF data type
- Idcs
Icf Bundle Attribute Name This property is required. string - Maps to ICF target attribute name
- Idcs
Icf Required This property is required. bool - Metadata to identify the ICF required attribute
- Idcs
Indirect Ref Resource Attributes This property is required. List<string> - Specifies the indirectly referenced Resources
- Idcs
Internal This property is required. bool - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- Idcs
Last Modified Bies This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By> - The User or App who modified the Resource
- Idcs
Last Upgraded In Release This property is required. string - The release number when the resource was upgraded.
- Idcs
Max Length This property is required. int - Specifies the maximum length of the attribute
- Idcs
Max Value This property is required. int - Specifies the maximum value of the integer attribute
- Idcs
Min Length This property is required. int - Specifies the minimum length of the attribute
- Idcs
Min Value This property is required. int - Specifies the minimum value of the integer attribute
- Idcs
Multi Language This property is required. bool - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- Idcs
Prevented Operations This property is required. List<string> - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Idcs
Ref Resource Attribute This property is required. string - Specifies the referenced Resource attribute
- Idcs
Ref Resource Attributes This property is required. List<string> - Specifies the directly referenced Resources
- Idcs
Schema Urn This property is required. string - Schema URN string that this attribute belongs to
- Idcs
Scim Compliant This property is required. bool - Indicates if the attribute is scim compliant, default is true
- Idcs
Searchable This property is required. bool - Specifies whether this attribute can be included in a search filter
- Idcs
Sensitive This property is required. string - Flag to specify if the attribute should be encrypted or hashed
- Idcs
Target Attribute Name This property is required. string - Target attribute name that this attribute gets mapped to for persistence
- Idcs
Target Attribute Name To Migrate From This property is required. string - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- Idcs
Target Norm Attribute Name This property is required. string - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- Idcs
Target Unique Constraint Name This property is required. string - Target index name created for this attribute for performance
- Idcs
To Target Mapper This property is required. string - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- Idcs
Trim String Value This property is required. bool - Trims any leading and trailing blanks from String values. Default is True.
- Idcs
Validate Reference This property is required. bool - Validate payload reference value during create, replace, and update. Default is True.
- Idcs
Value Persisted This property is required. bool - Specifies whether the value of the Resource attribute is persisted
- Metas
This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Multi
Valued This property is required. bool - Indicates the attribute's plurality
- Mutability
This property is required. string - Specifies if the attribute is mutable
- Name
This property is required. string - Attribute's name
- Ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Reference
Types This property is required. List<string> - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- Required
This property is required. bool - Specifies if the attribute is required
- Resource
Type This property is required. string - ResourceType this attribute belongs to.
- Returned
This property is required. string - A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- Schemas
This property is required. List<string> - The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag> - A list of tags on this resource.
- Tenancy
Ocid This property is required. string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Type
This property is required. string - The attribute's data type--for example, String
- Uniqueness
This property is required. string - A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- Canonical
Values This property is required. []string - A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
- Case
Exact This property is required. bool - Specifies if the String attribute is case-sensitive
- Compartment
Ocid This property is required. string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In Progress This property is required. bool - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Description
This property is required. string - The attribute's human-readable description
- Domain
Ocid This property is required. string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- End
User Mutability This property is required. string - Specifies User mutability for this attribute
- End
User Mutability Allowed Values This property is required. []string - Specifies the list of User mutabilities allowed
- Id
This property is required. string - Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- Idcs
Added Since Release Number This property is required. string - Indicates that the schema has been added since this release number
- Idcs
Added Since Version This property is required. int - Indicates that the schema has been added since version
- Idcs
Attribute Cacheable This property is required. bool - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- Idcs
Attribute Mappable This property is required. bool - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- Idcs
Auditable This property is required. bool - Specifies whether changes to this attribute value are audited
- Idcs
Auto Increment Seq Name This property is required. string - Sequence tracking ID name for the attribute
- Idcs
Canonical Value Source Filter This property is required. string - Filter to use when getting canonical values for this schema attribute
- Idcs
Canonical Value Source Resource Type This property is required. string - Specifies the Resource type to read from for dynamic canonical values
- Idcs
Composite Keys This property is required. []string - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- Idcs
Created Bies This property is required. []GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By - The User or App who created the Resource
- Idcs
Csv Column Header Name This property is required. string - The attribute defining the CSV column header name for import/export
- Idcs
Custom Attribute This property is required. bool - custom attribute flag.
- Idcs
Deprecated Since Release Number This property is required. string - Indicates that the schema has been deprecated since this release number
- Idcs
Deprecated Since Version This property is required. int - Indicates that the schema has been deprecated since version
- Idcs
Display Name This property is required. string - Specifies the user-friendly displayable attribute name or catalog key used for localization
- Idcs
Display Name Message Id This property is required. string - Localized schema attribute display name for use by UI client for displaying attribute labels
- Idcs
Fetch Complex Attribute Values This property is required. bool - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- Idcs
From Target Mapper This property is required. string - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- Idcs
Fully Qualified Name This property is required. string - Fully qualified name of this attribute
- Idcs
Generated This property is required. bool - Specifies whether this attribute value was generated
- Idcs
Icf Attribute Type This property is required. string - Maps to ICF data type
- Idcs
Icf Bundle Attribute Name This property is required. string - Maps to ICF target attribute name
- Idcs
Icf Required This property is required. bool - Metadata to identify the ICF required attribute
- Idcs
Indirect Ref Resource Attributes This property is required. []string - Specifies the indirectly referenced Resources
- Idcs
Internal This property is required. bool - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- Idcs
Last Modified Bies This property is required. []GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By - The User or App who modified the Resource
- Idcs
Last Upgraded In Release This property is required. string - The release number when the resource was upgraded.
- Idcs
Max Length This property is required. int - Specifies the maximum length of the attribute
- Idcs
Max Value This property is required. int - Specifies the maximum value of the integer attribute
- Idcs
Min Length This property is required. int - Specifies the minimum length of the attribute
- Idcs
Min Value This property is required. int - Specifies the minimum value of the integer attribute
- Idcs
Multi Language This property is required. bool - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- Idcs
Prevented Operations This property is required. []string - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Idcs
Ref Resource Attribute This property is required. string - Specifies the referenced Resource attribute
- Idcs
Ref Resource Attributes This property is required. []string - Specifies the directly referenced Resources
- Idcs
Schema Urn This property is required. string - Schema URN string that this attribute belongs to
- Idcs
Scim Compliant This property is required. bool - Indicates if the attribute is scim compliant, default is true
- Idcs
Searchable This property is required. bool - Specifies whether this attribute can be included in a search filter
- Idcs
Sensitive This property is required. string - Flag to specify if the attribute should be encrypted or hashed
- Idcs
Target Attribute Name This property is required. string - Target attribute name that this attribute gets mapped to for persistence
- Idcs
Target Attribute Name To Migrate From This property is required. string - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- Idcs
Target Norm Attribute Name This property is required. string - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- Idcs
Target Unique Constraint Name This property is required. string - Target index name created for this attribute for performance
- Idcs
To Target Mapper This property is required. string - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- Idcs
Trim String Value This property is required. bool - Trims any leading and trailing blanks from String values. Default is True.
- Idcs
Validate Reference This property is required. bool - Validate payload reference value during create, replace, and update. Default is True.
- Idcs
Value Persisted This property is required. bool - Specifies whether the value of the Resource attribute is persisted
- Metas
This property is required. []GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Multi
Valued This property is required. bool - Indicates the attribute's plurality
- Mutability
This property is required. string - Specifies if the attribute is mutable
- Name
This property is required. string - Attribute's name
- Ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Reference
Types This property is required. []string - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- Required
This property is required. bool - Specifies if the attribute is required
- Resource
Type This property is required. string - ResourceType this attribute belongs to.
- Returned
This property is required. string - A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- Schemas
This property is required. []string - The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
This property is required. []GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag - A list of tags on this resource.
- Tenancy
Ocid This property is required. string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Type
This property is required. string - The attribute's data type--for example, String
- Uniqueness
This property is required. string - A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical
Values This property is required. 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".
- case
Exact This property is required. Boolean - Specifies if the String attribute is case-sensitive
- compartment
Ocid This property is required. String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In Progress This property is required. Boolean - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description
This property is required. String - The attribute's human-readable description
- domain
Ocid This property is required. String - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end
User Mutability This property is required. String - Specifies User mutability for this attribute
- end
User Mutability Allowed Values This property is required. List<String> - Specifies the list of User mutabilities allowed
- id
This property is required. String - Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs
Added Since Release Number This property is required. String - Indicates that the schema has been added since this release number
- idcs
Added Since Version This property is required. Integer - Indicates that the schema has been added since version
- idcs
Attribute Cacheable This property is required. Boolean - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs
Attribute Mappable This property is required. Boolean - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs
Auditable This property is required. Boolean - Specifies whether changes to this attribute value are audited
- idcs
Auto Increment Seq Name This property is required. String - Sequence tracking ID name for the attribute
- idcs
Canonical Value Source Filter This property is required. String - Filter to use when getting canonical values for this schema attribute
- idcs
Canonical Value Source Resource Type This property is required. String - Specifies the Resource type to read from for dynamic canonical values
- idcs
Composite Keys This property is required. List<String> - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs
Created Bies This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By> - The User or App who created the Resource
- idcs
Csv Column Header Name This property is required. String - The attribute defining the CSV column header name for import/export
- idcs
Custom Attribute This property is required. Boolean - custom attribute flag.
- idcs
Deprecated Since Release Number This property is required. String - Indicates that the schema has been deprecated since this release number
- idcs
Deprecated Since Version This property is required. Integer - Indicates that the schema has been deprecated since version
- idcs
Display Name This property is required. String - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs
Display Name Message Id This property is required. String - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs
Fetch Complex Attribute Values This property is required. Boolean - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs
From Target Mapper This property is required. String - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs
Fully Qualified Name This property is required. String - Fully qualified name of this attribute
- idcs
Generated This property is required. Boolean - Specifies whether this attribute value was generated
- idcs
Icf Attribute Type This property is required. String - Maps to ICF data type
- idcs
Icf Bundle Attribute Name This property is required. String - Maps to ICF target attribute name
- idcs
Icf Required This property is required. Boolean - Metadata to identify the ICF required attribute
- idcs
Indirect Ref Resource Attributes This property is required. List<String> - Specifies the indirectly referenced Resources
- idcs
Internal This property is required. Boolean - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- idcs
Last Modified Bies This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By> - The User or App who modified the Resource
- idcs
Last Upgraded In Release This property is required. String - The release number when the resource was upgraded.
- idcs
Max Length This property is required. Integer - Specifies the maximum length of the attribute
- idcs
Max Value This property is required. Integer - Specifies the maximum value of the integer attribute
- idcs
Min Length This property is required. Integer - Specifies the minimum length of the attribute
- idcs
Min Value This property is required. Integer - Specifies the minimum value of the integer attribute
- idcs
Multi Language This property is required. Boolean - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs
Prevented Operations This property is required. List<String> - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs
Ref Resource Attribute This property is required. String - Specifies the referenced Resource attribute
- idcs
Ref Resource Attributes This property is required. List<String> - Specifies the directly referenced Resources
- idcs
Schema Urn This property is required. String - Schema URN string that this attribute belongs to
- idcs
Scim Compliant This property is required. Boolean - Indicates if the attribute is scim compliant, default is true
- idcs
Searchable This property is required. Boolean - Specifies whether this attribute can be included in a search filter
- idcs
Sensitive This property is required. String - Flag to specify if the attribute should be encrypted or hashed
- idcs
Target Attribute Name This property is required. String - Target attribute name that this attribute gets mapped to for persistence
- idcs
Target Attribute Name To Migrate From This property is required. String - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs
Target Norm Attribute Name This property is required. String - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs
Target Unique Constraint Name This property is required. String - Target index name created for this attribute for performance
- idcs
To Target Mapper This property is required. String - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs
Trim String Value This property is required. Boolean - Trims any leading and trailing blanks from String values. Default is True.
- idcs
Validate Reference This property is required. Boolean - Validate payload reference value during create, replace, and update. Default is True.
- idcs
Value Persisted This property is required. Boolean - Specifies whether the value of the Resource attribute is persisted
- metas
This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- multi
Valued This property is required. Boolean - Indicates the attribute's plurality
- mutability
This property is required. String - Specifies if the attribute is mutable
- name
This property is required. String - Attribute's name
- ocid
This property is required. String - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference
Types This property is required. List<String> - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required
This property is required. Boolean - Specifies if the attribute is required
- resource
Type This property is required. String - ResourceType this attribute belongs to.
- returned
This property is required. String - A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas
This property is required. List<String> - The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
This property is required. List<GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag> - A list of tags on this resource.
- tenancy
Ocid This property is required. String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type
This property is required. String - The attribute's data type--for example, String
- uniqueness
This property is required. String - A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical
Values This property is required. string[] - A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
- case
Exact This property is required. boolean - Specifies if the String attribute is case-sensitive
- compartment
Ocid This property is required. string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In Progress This property is required. boolean - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description
This property is required. string - The attribute's human-readable description
- domain
Ocid This property is required. string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end
User Mutability This property is required. string - Specifies User mutability for this attribute
- end
User Mutability Allowed Values This property is required. string[] - Specifies the list of User mutabilities allowed
- id
This property is required. string - Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs
Added Since Release Number This property is required. string - Indicates that the schema has been added since this release number
- idcs
Added Since Version This property is required. number - Indicates that the schema has been added since version
- idcs
Attribute Cacheable This property is required. boolean - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs
Attribute Mappable This property is required. boolean - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs
Auditable This property is required. boolean - Specifies whether changes to this attribute value are audited
- idcs
Auto Increment Seq Name This property is required. string - Sequence tracking ID name for the attribute
- idcs
Canonical Value Source Filter This property is required. string - Filter to use when getting canonical values for this schema attribute
- idcs
Canonical Value Source Resource Type This property is required. string - Specifies the Resource type to read from for dynamic canonical values
- idcs
Composite Keys This property is required. string[] - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs
Created Bies This property is required. GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By[] - The User or App who created the Resource
- idcs
Csv Column Header Name This property is required. string - The attribute defining the CSV column header name for import/export
- idcs
Custom Attribute This property is required. boolean - custom attribute flag.
- idcs
Deprecated Since Release Number This property is required. string - Indicates that the schema has been deprecated since this release number
- idcs
Deprecated Since Version This property is required. number - Indicates that the schema has been deprecated since version
- idcs
Display Name This property is required. string - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs
Display Name Message Id This property is required. string - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs
Fetch Complex Attribute Values This property is required. boolean - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs
From Target Mapper This property is required. string - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs
Fully Qualified Name This property is required. string - Fully qualified name of this attribute
- idcs
Generated This property is required. boolean - Specifies whether this attribute value was generated
- idcs
Icf Attribute Type This property is required. string - Maps to ICF data type
- idcs
Icf Bundle Attribute Name This property is required. string - Maps to ICF target attribute name
- idcs
Icf Required This property is required. boolean - Metadata to identify the ICF required attribute
- idcs
Indirect Ref Resource Attributes This property is required. string[] - Specifies the indirectly referenced Resources
- idcs
Internal This property is required. boolean - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- idcs
Last Modified Bies This property is required. GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By[] - The User or App who modified the Resource
- idcs
Last Upgraded In Release This property is required. string - The release number when the resource was upgraded.
- idcs
Max Length This property is required. number - Specifies the maximum length of the attribute
- idcs
Max Value This property is required. number - Specifies the maximum value of the integer attribute
- idcs
Min Length This property is required. number - Specifies the minimum length of the attribute
- idcs
Min Value This property is required. number - Specifies the minimum value of the integer attribute
- idcs
Multi Language This property is required. boolean - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs
Prevented Operations This property is required. string[] - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs
Ref Resource Attribute This property is required. string - Specifies the referenced Resource attribute
- idcs
Ref Resource Attributes This property is required. string[] - Specifies the directly referenced Resources
- idcs
Schema Urn This property is required. string - Schema URN string that this attribute belongs to
- idcs
Scim Compliant This property is required. boolean - Indicates if the attribute is scim compliant, default is true
- idcs
Searchable This property is required. boolean - Specifies whether this attribute can be included in a search filter
- idcs
Sensitive This property is required. string - Flag to specify if the attribute should be encrypted or hashed
- idcs
Target Attribute Name This property is required. string - Target attribute name that this attribute gets mapped to for persistence
- idcs
Target Attribute Name To Migrate From This property is required. string - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs
Target Norm Attribute Name This property is required. string - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs
Target Unique Constraint Name This property is required. string - Target index name created for this attribute for performance
- idcs
To Target Mapper This property is required. string - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs
Trim String Value This property is required. boolean - Trims any leading and trailing blanks from String values. Default is True.
- idcs
Validate Reference This property is required. boolean - Validate payload reference value during create, replace, and update. Default is True.
- idcs
Value Persisted This property is required. boolean - Specifies whether the value of the Resource attribute is persisted
- metas
This property is required. GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Meta[] - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- multi
Valued This property is required. boolean - Indicates the attribute's plurality
- mutability
This property is required. string - Specifies if the attribute is mutable
- name
This property is required. string - Attribute's name
- ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference
Types This property is required. string[] - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required
This property is required. boolean - Specifies if the attribute is required
- resource
Type This property is required. string - ResourceType this attribute belongs to.
- returned
This property is required. string - A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas
This property is required. string[] - The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
This property is required. GetDomains Resource Type Schema Attributes Resource Type Schema Attribute Tag[] - A list of tags on this resource.
- tenancy
Ocid This property is required. string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type
This property is required. string - The attribute's data type--for example, String
- uniqueness
This property is required. string - A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical_
values This property is required. Sequence[str] - A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
- case_
exact This property is required. bool - Specifies if the String attribute is case-sensitive
- compartment_
ocid This property is required. str - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete_
in_ progress This property is required. bool - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description
This property is required. str - The attribute's human-readable description
- domain_
ocid This property is required. str - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end_
user_ mutability This property is required. str - Specifies User mutability for this attribute
- end_
user_ mutability_ allowed_ values This property is required. Sequence[str] - Specifies the list of User mutabilities allowed
- id
This property is required. str - Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs_
added_ since_ release_ number This property is required. str - Indicates that the schema has been added since this release number
- idcs_
added_ since_ version This property is required. int - Indicates that the schema has been added since version
- idcs_
attribute_ cacheable This property is required. bool - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs_
attribute_ mappable This property is required. bool - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs_
auditable This property is required. bool - Specifies whether changes to this attribute value are audited
- idcs_
auto_ increment_ seq_ name This property is required. str - Sequence tracking ID name for the attribute
- idcs_
canonical_ value_ source_ filter This property is required. str - Filter to use when getting canonical values for this schema attribute
- idcs_
canonical_ value_ source_ resource_ type This property is required. str - Specifies the Resource type to read from for dynamic canonical values
- idcs_
composite_ keys This property is required. Sequence[str] - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs_
created_ bies This property is required. Sequence[identity.Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By] - The User or App who created the Resource
- idcs_
csv_ column_ header_ name This property is required. str - The attribute defining the CSV column header name for import/export
- idcs_
custom_ attribute This property is required. bool - custom attribute flag.
- idcs_
deprecated_ since_ release_ number This property is required. str - Indicates that the schema has been deprecated since this release number
- idcs_
deprecated_ since_ version This property is required. int - Indicates that the schema has been deprecated since version
- idcs_
display_ name This property is required. str - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs_
display_ name_ message_ id This property is required. str - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs_
fetch_ complex_ attribute_ values This property is required. bool - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs_
from_ target_ mapper This property is required. str - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs_
fully_ qualified_ name This property is required. str - Fully qualified name of this attribute
- idcs_
generated This property is required. bool - Specifies whether this attribute value was generated
- idcs_
icf_ attribute_ type This property is required. str - Maps to ICF data type
- idcs_
icf_ bundle_ attribute_ name This property is required. str - Maps to ICF target attribute name
- idcs_
icf_ required This property is required. bool - Metadata to identify the ICF required attribute
- idcs_
indirect_ ref_ resource_ attributes This property is required. Sequence[str] - Specifies the indirectly referenced Resources
- idcs_
internal This property is required. bool - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- idcs_
last_ modified_ bies This property is required. Sequence[identity.Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By] - The User or App who modified the Resource
- idcs_
last_ upgraded_ in_ release This property is required. str - The release number when the resource was upgraded.
- idcs_
max_ length This property is required. int - Specifies the maximum length of the attribute
- idcs_
max_ value This property is required. int - Specifies the maximum value of the integer attribute
- idcs_
min_ length This property is required. int - Specifies the minimum length of the attribute
- idcs_
min_ value This property is required. int - Specifies the minimum value of the integer attribute
- idcs_
multi_ language This property is required. bool - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs_
prevented_ operations This property is required. Sequence[str] - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs_
ref_ resource_ attribute This property is required. str - Specifies the referenced Resource attribute
- idcs_
ref_ resource_ attributes This property is required. Sequence[str] - Specifies the directly referenced Resources
- idcs_
schema_ urn This property is required. str - Schema URN string that this attribute belongs to
- idcs_
scim_ compliant This property is required. bool - Indicates if the attribute is scim compliant, default is true
- idcs_
searchable This property is required. bool - Specifies whether this attribute can be included in a search filter
- idcs_
sensitive This property is required. str - Flag to specify if the attribute should be encrypted or hashed
- idcs_
target_ attribute_ name This property is required. str - Target attribute name that this attribute gets mapped to for persistence
- idcs_
target_ attribute_ name_ to_ migrate_ from This property is required. str - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs_
target_ norm_ attribute_ name This property is required. str - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs_
target_ unique_ constraint_ name This property is required. str - Target index name created for this attribute for performance
- idcs_
to_ target_ mapper This property is required. str - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs_
trim_ string_ value This property is required. bool - Trims any leading and trailing blanks from String values. Default is True.
- idcs_
validate_ reference This property is required. bool - Validate payload reference value during create, replace, and update. Default is True.
- idcs_
value_ persisted This property is required. bool - Specifies whether the value of the Resource attribute is persisted
- metas
This property is required. Sequence[identity.Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Meta] - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- multi_
valued This property is required. bool - Indicates the attribute's plurality
- mutability
This property is required. str - Specifies if the attribute is mutable
- name
This property is required. str - Attribute's name
- ocid
This property is required. str - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference_
types This property is required. Sequence[str] - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required
This property is required. bool - Specifies if the attribute is required
- resource_
type This property is required. str - ResourceType this attribute belongs to.
- returned
This property is required. str - A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas
This property is required. Sequence[str] - The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
This property is required. Sequence[identity.Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Tag] - A list of tags on this resource.
- tenancy_
ocid This property is required. str - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type
This property is required. str - The attribute's data type--for example, String
- uniqueness
This property is required. str - A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical
Values This property is required. List<String> - A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
- case
Exact This property is required. Boolean - Specifies if the String attribute is case-sensitive
- compartment
Ocid This property is required. String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In Progress This property is required. Boolean - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description
This property is required. String - The attribute's human-readable description
- domain
Ocid This property is required. String - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end
User Mutability This property is required. String - Specifies User mutability for this attribute
- end
User Mutability Allowed Values This property is required. List<String> - Specifies the list of User mutabilities allowed
- id
This property is required. String - Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs
Added Since Release Number This property is required. String - Indicates that the schema has been added since this release number
- idcs
Added Since Version This property is required. Number - Indicates that the schema has been added since version
- idcs
Attribute Cacheable This property is required. Boolean - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs
Attribute Mappable This property is required. Boolean - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs
Auditable This property is required. Boolean - Specifies whether changes to this attribute value are audited
- idcs
Auto Increment Seq Name This property is required. String - Sequence tracking ID name for the attribute
- idcs
Canonical Value Source Filter This property is required. String - Filter to use when getting canonical values for this schema attribute
- idcs
Canonical Value Source Resource Type This property is required. String - Specifies the Resource type to read from for dynamic canonical values
- idcs
Composite Keys This property is required. List<String> - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs
Created Bies This property is required. List<Property Map> - The User or App who created the Resource
- idcs
Csv Column Header Name This property is required. String - The attribute defining the CSV column header name for import/export
- idcs
Custom Attribute This property is required. Boolean - custom attribute flag.
- idcs
Deprecated Since Release Number This property is required. String - Indicates that the schema has been deprecated since this release number
- idcs
Deprecated Since Version This property is required. Number - Indicates that the schema has been deprecated since version
- idcs
Display Name This property is required. String - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs
Display Name Message Id This property is required. String - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs
Fetch Complex Attribute Values This property is required. Boolean - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs
From Target Mapper This property is required. String - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs
Fully Qualified Name This property is required. String - Fully qualified name of this attribute
- idcs
Generated This property is required. Boolean - Specifies whether this attribute value was generated
- idcs
Icf Attribute Type This property is required. String - Maps to ICF data type
- idcs
Icf Bundle Attribute Name This property is required. String - Maps to ICF target attribute name
- idcs
Icf Required This property is required. Boolean - Metadata to identify the ICF required attribute
- idcs
Indirect Ref Resource Attributes This property is required. List<String> - Specifies the indirectly referenced Resources
- idcs
Internal This property is required. Boolean - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- idcs
Last Modified Bies This property is required. List<Property Map> - The User or App who modified the Resource
- idcs
Last Upgraded In Release This property is required. String - The release number when the resource was upgraded.
- idcs
Max Length This property is required. Number - Specifies the maximum length of the attribute
- idcs
Max Value This property is required. Number - Specifies the maximum value of the integer attribute
- idcs
Min Length This property is required. Number - Specifies the minimum length of the attribute
- idcs
Min Value This property is required. Number - Specifies the minimum value of the integer attribute
- idcs
Multi Language This property is required. Boolean - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs
Prevented Operations This property is required. List<String> - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs
Ref Resource Attribute This property is required. String - Specifies the referenced Resource attribute
- idcs
Ref Resource Attributes This property is required. List<String> - Specifies the directly referenced Resources
- idcs
Schema Urn This property is required. String - Schema URN string that this attribute belongs to
- idcs
Scim Compliant This property is required. Boolean - Indicates if the attribute is scim compliant, default is true
- idcs
Searchable This property is required. Boolean - Specifies whether this attribute can be included in a search filter
- idcs
Sensitive This property is required. String - Flag to specify if the attribute should be encrypted or hashed
- idcs
Target Attribute Name This property is required. String - Target attribute name that this attribute gets mapped to for persistence
- idcs
Target Attribute Name To Migrate From This property is required. String - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs
Target Norm Attribute Name This property is required. String - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs
Target Unique Constraint Name This property is required. String - Target index name created for this attribute for performance
- idcs
To Target Mapper This property is required. String - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs
Trim String Value This property is required. Boolean - Trims any leading and trailing blanks from String values. Default is True.
- idcs
Validate Reference This property is required. Boolean - Validate payload reference value during create, replace, and update. Default is True.
- idcs
Value Persisted This property is required. Boolean - Specifies whether the value of the Resource attribute is persisted
- metas
This property is required. List<Property Map> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- multi
Valued This property is required. Boolean - Indicates the attribute's plurality
- mutability
This property is required. String - Specifies if the attribute is mutable
- name
This property is required. String - Attribute's name
- ocid
This property is required. String - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference
Types This property is required. List<String> - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required
This property is required. Boolean - Specifies if the attribute is required
- resource
Type This property is required. String - ResourceType this attribute belongs to.
- returned
This property is required. String - A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas
This property is required. List<String> - The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
This property is required. List<Property Map>- A list of tags on this resource.
- tenancy
Ocid This property is required. String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type
This property is required. String - The attribute's data type--for example, String
- uniqueness
This property is required. String - A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy
- Display
This property is required. string - The displayName of the User or App who modified this Resource
- Ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref
This property is required. string - The URI of the SCIM resource that represents the User or App who modified this Resource
- Type
This property is required. string - The attribute's data type--for example, String
- Value
This property is required. string - Value of the tag.
- Display
This property is required. string - The displayName of the User or App who modified this Resource
- Ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref
This property is required. string - The URI of the SCIM resource that represents the User or App who modified this Resource
- Type
This property is required. string - The attribute's data type--for example, String
- Value
This property is required. string - Value of the tag.
- display
This property is required. String - The displayName of the User or App who modified this Resource
- ocid
This property is required. String - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. String - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. String - The attribute's data type--for example, String
- value
This property is required. String - Value of the tag.
- display
This property is required. string - The displayName of the User or App who modified this Resource
- ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. string - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. string - The attribute's data type--for example, String
- value
This property is required. string - Value of the tag.
- display
This property is required. str - The displayName of the User or App who modified this Resource
- ocid
This property is required. str - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. str - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. str - The attribute's data type--for example, String
- value
This property is required. str - Value of the tag.
- display
This property is required. String - The displayName of the User or App who modified this Resource
- ocid
This property is required. String - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. String - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. String - The attribute's data type--for example, String
- value
This property is required. String - Value of the tag.
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy
- Display
This property is required. string - The displayName of the User or App who modified this Resource
- Ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref
This property is required. string - The URI of the SCIM resource that represents the User or App who modified this Resource
- Type
This property is required. string - The attribute's data type--for example, String
- Value
This property is required. string - Value of the tag.
- Display
This property is required. string - The displayName of the User or App who modified this Resource
- Ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref
This property is required. string - The URI of the SCIM resource that represents the User or App who modified this Resource
- Type
This property is required. string - The attribute's data type--for example, String
- Value
This property is required. string - Value of the tag.
- display
This property is required. String - The displayName of the User or App who modified this Resource
- ocid
This property is required. String - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. String - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. String - The attribute's data type--for example, String
- value
This property is required. String - Value of the tag.
- display
This property is required. string - The displayName of the User or App who modified this Resource
- ocid
This property is required. string - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. string - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. string - The attribute's data type--for example, String
- value
This property is required. string - Value of the tag.
- display
This property is required. str - The displayName of the User or App who modified this Resource
- ocid
This property is required. str - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. str - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. str - The attribute's data type--for example, String
- value
This property is required. str - Value of the tag.
- display
This property is required. String - The displayName of the User or App who modified this Resource
- ocid
This property is required. String - Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref
This property is required. String - The URI of the SCIM resource that represents the User or App who modified this Resource
- type
This property is required. String - The attribute's data type--for example, String
- value
This property is required. String - Value of the tag.
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta
- Created
This property is required. string - The DateTime the Resource was added to the Service Provider
- Last
Modified This property is required. string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location
This property is required. string - The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type This property is required. string - ResourceType this attribute belongs to.
- Version
This property is required. string - The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- Created
This property is required. string - The DateTime the Resource was added to the Service Provider
- Last
Modified This property is required. string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location
This property is required. string - The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type This property is required. string - ResourceType this attribute belongs to.
- Version
This property is required. string - The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created
This property is required. String - The DateTime the Resource was added to the Service Provider
- last
Modified This property is required. String - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location
This property is required. String - The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type This property is required. String - ResourceType this attribute belongs to.
- version
This property is required. String - The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created
This property is required. string - The DateTime the Resource was added to the Service Provider
- last
Modified This property is required. string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location
This property is required. string - The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type This property is required. string - ResourceType this attribute belongs to.
- version
This property is required. string - The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created
This property is required. str - The DateTime the Resource was added to the Service Provider
- last_
modified This property is required. str - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location
This property is required. str - The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource_
type This property is required. str - ResourceType this attribute belongs to.
- version
This property is required. str - The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created
This property is required. String - The DateTime the Resource was added to the Service Provider
- last
Modified This property is required. String - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location
This property is required. String - The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type This property is required. String - ResourceType this attribute belongs to.
- version
This property is required. String - The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.