Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.Identity.getDomainsResourceTypeSchemaAttributes
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides the list of Resource Type Schema Attributes in Oracle Cloud Infrastructure Identity Domains service.
Search Resource Type Schema Attributes
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testResourceTypeSchemaAttributes = oci.Identity.getDomainsResourceTypeSchemaAttributes({
idcsEndpoint: testDomain.url,
resourceTypeSchemaAttributeCount: resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount,
resourceTypeSchemaAttributeFilter: resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter,
attributeSets: ["all"],
attributes: "",
authorization: resourceTypeSchemaAttributeAuthorization,
resourceTypeSchemaVersion: resourceTypeSchemaAttributeResourceTypeSchemaVersion,
startIndex: resourceTypeSchemaAttributeStartIndex,
});
import pulumi
import pulumi_oci as oci
test_resource_type_schema_attributes = oci.Identity.get_domains_resource_type_schema_attributes(idcs_endpoint=test_domain["url"],
resource_type_schema_attribute_count=resource_type_schema_attribute_resource_type_schema_attribute_count,
resource_type_schema_attribute_filter=resource_type_schema_attribute_resource_type_schema_attribute_filter,
attribute_sets=["all"],
attributes="",
authorization=resource_type_schema_attribute_authorization,
resource_type_schema_version=resource_type_schema_attribute_resource_type_schema_version,
start_index=resource_type_schema_attribute_start_index)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Identity.GetDomainsResourceTypeSchemaAttributes(ctx, &identity.GetDomainsResourceTypeSchemaAttributesArgs{
IdcsEndpoint: testDomain.Url,
ResourceTypeSchemaAttributeCount: pulumi.IntRef(resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount),
ResourceTypeSchemaAttributeFilter: pulumi.StringRef(resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter),
AttributeSets: []string{
"all",
},
Attributes: pulumi.StringRef(""),
Authorization: pulumi.StringRef(resourceTypeSchemaAttributeAuthorization),
ResourceTypeSchemaVersion: pulumi.StringRef(resourceTypeSchemaAttributeResourceTypeSchemaVersion),
StartIndex: pulumi.IntRef(resourceTypeSchemaAttributeStartIndex),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testResourceTypeSchemaAttributes = Oci.Identity.GetDomainsResourceTypeSchemaAttributes.Invoke(new()
{
IdcsEndpoint = testDomain.Url,
ResourceTypeSchemaAttributeCount = resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount,
ResourceTypeSchemaAttributeFilter = resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter,
AttributeSets = new[]
{
"all",
},
Attributes = "",
Authorization = resourceTypeSchemaAttributeAuthorization,
ResourceTypeSchemaVersion = resourceTypeSchemaAttributeResourceTypeSchemaVersion,
StartIndex = resourceTypeSchemaAttributeStartIndex,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.IdentityFunctions;
import com.pulumi.oci.Identity.inputs.GetDomainsResourceTypeSchemaAttributesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testResourceTypeSchemaAttributes = IdentityFunctions.getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs.builder()
.idcsEndpoint(testDomain.url())
.resourceTypeSchemaAttributeCount(resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount)
.resourceTypeSchemaAttributeFilter(resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter)
.attributeSets("all")
.attributes("")
.authorization(resourceTypeSchemaAttributeAuthorization)
.resourceTypeSchemaVersion(resourceTypeSchemaAttributeResourceTypeSchemaVersion)
.startIndex(resourceTypeSchemaAttributeStartIndex)
.build());
}
}
variables:
testResourceTypeSchemaAttributes:
fn::invoke:
Function: oci:Identity:getDomainsResourceTypeSchemaAttributes
Arguments:
idcsEndpoint: ${testDomain.url}
resourceTypeSchemaAttributeCount: ${resourceTypeSchemaAttributeResourceTypeSchemaAttributeCount}
resourceTypeSchemaAttributeFilter: ${resourceTypeSchemaAttributeResourceTypeSchemaAttributeFilter}
attributeSets:
- all
attributes:
authorization: ${resourceTypeSchemaAttributeAuthorization}
resourceTypeSchemaVersion: ${resourceTypeSchemaAttributeResourceTypeSchemaVersion}
startIndex: ${resourceTypeSchemaAttributeStartIndex}
Using getDomainsResourceTypeSchemaAttributes
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDomainsResourceTypeSchemaAttributes(args: GetDomainsResourceTypeSchemaAttributesArgs, opts?: InvokeOptions): Promise<GetDomainsResourceTypeSchemaAttributesResult>
function getDomainsResourceTypeSchemaAttributesOutput(args: GetDomainsResourceTypeSchemaAttributesOutputArgs, opts?: InvokeOptions): Output<GetDomainsResourceTypeSchemaAttributesResult>
def get_domains_resource_type_schema_attributes(attribute_sets: Optional[Sequence[str]] = None,
attributes: Optional[str] = None,
authorization: Optional[str] = None,
compartment_id: Optional[str] = None,
idcs_endpoint: Optional[str] = None,
resource_type_schema_attribute_count: Optional[int] = None,
resource_type_schema_attribute_filter: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
sort_by: Optional[str] = None,
sort_order: Optional[str] = None,
start_index: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetDomainsResourceTypeSchemaAttributesResult
def get_domains_resource_type_schema_attributes_output(attribute_sets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
attributes: Optional[pulumi.Input[str]] = None,
authorization: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
idcs_endpoint: Optional[pulumi.Input[str]] = None,
resource_type_schema_attribute_count: Optional[pulumi.Input[int]] = None,
resource_type_schema_attribute_filter: Optional[pulumi.Input[str]] = None,
resource_type_schema_version: Optional[pulumi.Input[str]] = None,
sort_by: Optional[pulumi.Input[str]] = None,
sort_order: Optional[pulumi.Input[str]] = None,
start_index: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDomainsResourceTypeSchemaAttributesResult]
func GetDomainsResourceTypeSchemaAttributes(ctx *Context, args *GetDomainsResourceTypeSchemaAttributesArgs, opts ...InvokeOption) (*GetDomainsResourceTypeSchemaAttributesResult, error)
func GetDomainsResourceTypeSchemaAttributesOutput(ctx *Context, args *GetDomainsResourceTypeSchemaAttributesOutputArgs, opts ...InvokeOption) GetDomainsResourceTypeSchemaAttributesResultOutput
> Note: This function is named GetDomainsResourceTypeSchemaAttributes
in the Go SDK.
public static class GetDomainsResourceTypeSchemaAttributes
{
public static Task<GetDomainsResourceTypeSchemaAttributesResult> InvokeAsync(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions? opts = null)
public static Output<GetDomainsResourceTypeSchemaAttributesResult> Invoke(GetDomainsResourceTypeSchemaAttributesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDomainsResourceTypeSchemaAttributesResult> getDomainsResourceTypeSchemaAttributes(GetDomainsResourceTypeSchemaAttributesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Identity/getDomainsResourceTypeSchemaAttributes:getDomainsResourceTypeSchemaAttributes
arguments:
# arguments dictionary
The following arguments are supported:
- Idcs
Endpoint 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 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 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 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 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 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 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 bool - Specifies if the String attribute is case-sensitive
- Compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In boolProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Description string
- The attribute's human-readable description
- Domain
Ocid string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- End
User stringMutability - Specifies User mutability for this attribute
- End
User List<string>Mutability Allowed Values - Specifies the list of User mutabilities allowed
- Id string
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- Idcs
Added stringSince Release Number - Indicates that the schema has been added since this release number
- Idcs
Added intSince Version - Indicates that the schema has been added since version
- Idcs
Attribute boolCacheable - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- Idcs
Attribute boolMappable - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- Idcs
Auditable bool - Specifies whether changes to this attribute value are audited
- Idcs
Auto stringIncrement Seq Name - Sequence tracking ID name for the attribute
- Idcs
Canonical stringValue Source Filter - Filter to use when getting canonical values for this schema attribute
- Idcs
Canonical stringValue Source Resource Type - Specifies the Resource type to read from for dynamic canonical values
- Idcs
Composite List<string>Keys - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- Idcs
Created List<GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By> - The User or App who created the Resource
- Idcs
Csv stringColumn Header Name - The attribute defining the CSV column header name for import/export
- Idcs
Custom boolAttribute - custom attribute flag.
- Idcs
Deprecated stringSince Release Number - Indicates that the schema has been deprecated since this release number
- Idcs
Deprecated intSince Version - Indicates that the schema has been deprecated since version
- Idcs
Display stringName - Specifies the user-friendly displayable attribute name or catalog key used for localization
- Idcs
Display stringName Message Id - Localized schema attribute display name for use by UI client for displaying attribute labels
- Idcs
Fetch boolComplex Attribute Values - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- Idcs
From stringTarget Mapper - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- Idcs
Fully stringQualified Name - Fully qualified name of this attribute
- Idcs
Generated bool - Specifies whether this attribute value was generated
- Idcs
Icf stringAttribute Type - Maps to ICF data type
- Idcs
Icf stringBundle Attribute Name - Maps to ICF target attribute name
- Idcs
Icf boolRequired - Metadata to identify the ICF required attribute
- Idcs
Indirect List<string>Ref Resource Attributes - Specifies the indirectly referenced Resources
- Idcs
Internal bool - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- Idcs
Last List<GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By> - The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- Idcs
Max intLength - Specifies the maximum length of the attribute
- Idcs
Max intValue - Specifies the maximum value of the integer attribute
- Idcs
Min intLength - Specifies the minimum length of the attribute
- Idcs
Min intValue - Specifies the minimum value of the integer attribute
- Idcs
Multi boolLanguage - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- Idcs
Prevented List<string>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Idcs
Ref stringResource Attribute - Specifies the referenced Resource attribute
- Idcs
Ref List<string>Resource Attributes - Specifies the directly referenced Resources
- Idcs
Schema stringUrn - Schema URN string that this attribute belongs to
- Idcs
Scim boolCompliant - Indicates if the attribute is scim compliant, default is true
- Idcs
Searchable bool - Specifies whether this attribute can be included in a search filter
- Idcs
Sensitive string - Flag to specify if the attribute should be encrypted or hashed
- Idcs
Target stringAttribute Name - Target attribute name that this attribute gets mapped to for persistence
- Idcs
Target stringAttribute Name To Migrate From - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- Idcs
Target stringNorm Attribute Name - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- Idcs
Target stringUnique Constraint Name - Target index name created for this attribute for performance
- Idcs
To stringTarget Mapper - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- Idcs
Trim boolString Value - Trims any leading and trailing blanks from String values. Default is True.
- Idcs
Validate boolReference - Validate payload reference value during create, replace, and update. Default is True.
- Idcs
Value boolPersisted - Specifies whether the value of the Resource attribute is persisted
- Metas
List<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 bool - Indicates the attribute's plurality
- Mutability string
- Specifies if the attribute is mutable
- Name string
- Attribute's name
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Reference
Types List<string> - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- Required bool
- Specifies if the attribute is required
- Resource
Type string - ResourceType this attribute belongs to.
- Returned string
- A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- Schemas List<string>
- The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- List<Get
Domains Resource Type Schema Attributes Resource Type Schema Attribute Tag> - A list of tags on this resource.
- Tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Type string
- The attribute's data type--for example, String
- Uniqueness string
- A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- Canonical
Values []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 bool - Specifies if the String attribute is case-sensitive
- Compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In boolProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Description string
- The attribute's human-readable description
- Domain
Ocid string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- End
User stringMutability - Specifies User mutability for this attribute
- End
User []stringMutability Allowed Values - Specifies the list of User mutabilities allowed
- Id string
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- Idcs
Added stringSince Release Number - Indicates that the schema has been added since this release number
- Idcs
Added intSince Version - Indicates that the schema has been added since version
- Idcs
Attribute boolCacheable - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- Idcs
Attribute boolMappable - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- Idcs
Auditable bool - Specifies whether changes to this attribute value are audited
- Idcs
Auto stringIncrement Seq Name - Sequence tracking ID name for the attribute
- Idcs
Canonical stringValue Source Filter - Filter to use when getting canonical values for this schema attribute
- Idcs
Canonical stringValue Source Resource Type - Specifies the Resource type to read from for dynamic canonical values
- Idcs
Composite []stringKeys - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- Idcs
Created []GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By - The User or App who created the Resource
- Idcs
Csv stringColumn Header Name - The attribute defining the CSV column header name for import/export
- Idcs
Custom boolAttribute - custom attribute flag.
- Idcs
Deprecated stringSince Release Number - Indicates that the schema has been deprecated since this release number
- Idcs
Deprecated intSince Version - Indicates that the schema has been deprecated since version
- Idcs
Display stringName - Specifies the user-friendly displayable attribute name or catalog key used for localization
- Idcs
Display stringName Message Id - Localized schema attribute display name for use by UI client for displaying attribute labels
- Idcs
Fetch boolComplex Attribute Values - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- Idcs
From stringTarget Mapper - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- Idcs
Fully stringQualified Name - Fully qualified name of this attribute
- Idcs
Generated bool - Specifies whether this attribute value was generated
- Idcs
Icf stringAttribute Type - Maps to ICF data type
- Idcs
Icf stringBundle Attribute Name - Maps to ICF target attribute name
- Idcs
Icf boolRequired - Metadata to identify the ICF required attribute
- Idcs
Indirect []stringRef Resource Attributes - Specifies the indirectly referenced Resources
- Idcs
Internal bool - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- Idcs
Last []GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By - The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- Idcs
Max intLength - Specifies the maximum length of the attribute
- Idcs
Max intValue - Specifies the maximum value of the integer attribute
- Idcs
Min intLength - Specifies the minimum length of the attribute
- Idcs
Min intValue - Specifies the minimum value of the integer attribute
- Idcs
Multi boolLanguage - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- Idcs
Prevented []stringOperations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Idcs
Ref stringResource Attribute - Specifies the referenced Resource attribute
- Idcs
Ref []stringResource Attributes - Specifies the directly referenced Resources
- Idcs
Schema stringUrn - Schema URN string that this attribute belongs to
- Idcs
Scim boolCompliant - Indicates if the attribute is scim compliant, default is true
- Idcs
Searchable bool - Specifies whether this attribute can be included in a search filter
- Idcs
Sensitive string - Flag to specify if the attribute should be encrypted or hashed
- Idcs
Target stringAttribute Name - Target attribute name that this attribute gets mapped to for persistence
- Idcs
Target stringAttribute Name To Migrate From - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- Idcs
Target stringNorm Attribute Name - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- Idcs
Target stringUnique Constraint Name - Target index name created for this attribute for performance
- Idcs
To stringTarget Mapper - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- Idcs
Trim boolString Value - Trims any leading and trailing blanks from String values. Default is True.
- Idcs
Validate boolReference - Validate payload reference value during create, replace, and update. Default is True.
- Idcs
Value boolPersisted - Specifies whether the value of the Resource attribute is persisted
- Metas
[]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 bool - Indicates the attribute's plurality
- Mutability string
- Specifies if the attribute is mutable
- Name string
- Attribute's name
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Reference
Types []string - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- Required bool
- Specifies if the attribute is required
- Resource
Type string - ResourceType this attribute belongs to.
- Returned string
- A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- Schemas []string
- The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- []Get
Domains Resource Type Schema Attributes Resource Type Schema Attribute Tag - A list of tags on this resource.
- Tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Type string
- The attribute's data type--for example, String
- Uniqueness string
- A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical
Values 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 Boolean - Specifies if the String attribute is case-sensitive
- compartment
Ocid String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In BooleanProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description String
- The attribute's human-readable description
- domain
Ocid String - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end
User StringMutability - Specifies User mutability for this attribute
- end
User List<String>Mutability Allowed Values - Specifies the list of User mutabilities allowed
- id String
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs
Added StringSince Release Number - Indicates that the schema has been added since this release number
- idcs
Added IntegerSince Version - Indicates that the schema has been added since version
- idcs
Attribute BooleanCacheable - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs
Attribute BooleanMappable - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs
Auditable Boolean - Specifies whether changes to this attribute value are audited
- idcs
Auto StringIncrement Seq Name - Sequence tracking ID name for the attribute
- idcs
Canonical StringValue Source Filter - Filter to use when getting canonical values for this schema attribute
- idcs
Canonical StringValue Source Resource Type - Specifies the Resource type to read from for dynamic canonical values
- idcs
Composite List<String>Keys - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs
Created List<GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By> - The User or App who created the Resource
- idcs
Csv StringColumn Header Name - The attribute defining the CSV column header name for import/export
- idcs
Custom BooleanAttribute - custom attribute flag.
- idcs
Deprecated StringSince Release Number - Indicates that the schema has been deprecated since this release number
- idcs
Deprecated IntegerSince Version - Indicates that the schema has been deprecated since version
- idcs
Display StringName - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs
Display StringName Message Id - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs
Fetch BooleanComplex Attribute Values - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs
From StringTarget Mapper - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs
Fully StringQualified Name - Fully qualified name of this attribute
- idcs
Generated Boolean - Specifies whether this attribute value was generated
- idcs
Icf StringAttribute Type - Maps to ICF data type
- idcs
Icf StringBundle Attribute Name - Maps to ICF target attribute name
- idcs
Icf BooleanRequired - Metadata to identify the ICF required attribute
- idcs
Indirect List<String>Ref Resource Attributes - Specifies the indirectly referenced Resources
- idcs
Internal 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 List<GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By> - The User or App who modified the Resource
- idcs
Last StringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Max IntegerLength - Specifies the maximum length of the attribute
- idcs
Max IntegerValue - Specifies the maximum value of the integer attribute
- idcs
Min IntegerLength - Specifies the minimum length of the attribute
- idcs
Min IntegerValue - Specifies the minimum value of the integer attribute
- idcs
Multi BooleanLanguage - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs
Prevented List<String>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs
Ref StringResource Attribute - Specifies the referenced Resource attribute
- idcs
Ref List<String>Resource Attributes - Specifies the directly referenced Resources
- idcs
Schema StringUrn - Schema URN string that this attribute belongs to
- idcs
Scim BooleanCompliant - Indicates if the attribute is scim compliant, default is true
- idcs
Searchable Boolean - Specifies whether this attribute can be included in a search filter
- idcs
Sensitive String - Flag to specify if the attribute should be encrypted or hashed
- idcs
Target StringAttribute Name - Target attribute name that this attribute gets mapped to for persistence
- idcs
Target StringAttribute Name To Migrate From - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs
Target StringNorm Attribute Name - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs
Target StringUnique Constraint Name - Target index name created for this attribute for performance
- idcs
To StringTarget Mapper - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs
Trim BooleanString Value - Trims any leading and trailing blanks from String values. Default is True.
- idcs
Validate BooleanReference - Validate payload reference value during create, replace, and update. Default is True.
- idcs
Value BooleanPersisted - Specifies whether the value of the Resource attribute is persisted
- metas
List<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 Boolean - Indicates the attribute's plurality
- mutability String
- Specifies if the attribute is mutable
- name String
- Attribute's name
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference
Types List<String> - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required Boolean
- Specifies if the attribute is required
- resource
Type String - ResourceType this attribute belongs to.
- returned String
- A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas List<String>
- The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- List<Get
Domains Resource Type Schema Attributes Resource Type Schema Attribute Tag> - A list of tags on this resource.
- tenancy
Ocid String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type String
- The attribute's data type--for example, String
- uniqueness String
- A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical
Values 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 boolean - Specifies if the String attribute is case-sensitive
- compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In booleanProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description string
- The attribute's human-readable description
- domain
Ocid string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end
User stringMutability - Specifies User mutability for this attribute
- end
User string[]Mutability Allowed Values - Specifies the list of User mutabilities allowed
- id string
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs
Added stringSince Release Number - Indicates that the schema has been added since this release number
- idcs
Added numberSince Version - Indicates that the schema has been added since version
- idcs
Attribute booleanCacheable - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs
Attribute booleanMappable - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs
Auditable boolean - Specifies whether changes to this attribute value are audited
- idcs
Auto stringIncrement Seq Name - Sequence tracking ID name for the attribute
- idcs
Canonical stringValue Source Filter - Filter to use when getting canonical values for this schema attribute
- idcs
Canonical stringValue Source Resource Type - Specifies the Resource type to read from for dynamic canonical values
- idcs
Composite string[]Keys - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs
Created GetBies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By[] - The User or App who created the Resource
- idcs
Csv stringColumn Header Name - The attribute defining the CSV column header name for import/export
- idcs
Custom booleanAttribute - custom attribute flag.
- idcs
Deprecated stringSince Release Number - Indicates that the schema has been deprecated since this release number
- idcs
Deprecated numberSince Version - Indicates that the schema has been deprecated since version
- idcs
Display stringName - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs
Display stringName Message Id - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs
Fetch booleanComplex Attribute Values - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs
From stringTarget Mapper - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs
Fully stringQualified Name - Fully qualified name of this attribute
- idcs
Generated boolean - Specifies whether this attribute value was generated
- idcs
Icf stringAttribute Type - Maps to ICF data type
- idcs
Icf stringBundle Attribute Name - Maps to ICF target attribute name
- idcs
Icf booleanRequired - Metadata to identify the ICF required attribute
- idcs
Indirect string[]Ref Resource Attributes - Specifies the indirectly referenced Resources
- idcs
Internal 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 GetModified Bies Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By[] - The User or App who modified the Resource
- idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Max numberLength - Specifies the maximum length of the attribute
- idcs
Max numberValue - Specifies the maximum value of the integer attribute
- idcs
Min numberLength - Specifies the minimum length of the attribute
- idcs
Min numberValue - Specifies the minimum value of the integer attribute
- idcs
Multi booleanLanguage - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs
Prevented string[]Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs
Ref stringResource Attribute - Specifies the referenced Resource attribute
- idcs
Ref string[]Resource Attributes - Specifies the directly referenced Resources
- idcs
Schema stringUrn - Schema URN string that this attribute belongs to
- idcs
Scim booleanCompliant - Indicates if the attribute is scim compliant, default is true
- idcs
Searchable boolean - Specifies whether this attribute can be included in a search filter
- idcs
Sensitive string - Flag to specify if the attribute should be encrypted or hashed
- idcs
Target stringAttribute Name - Target attribute name that this attribute gets mapped to for persistence
- idcs
Target stringAttribute Name To Migrate From - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs
Target stringNorm Attribute Name - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs
Target stringUnique Constraint Name - Target index name created for this attribute for performance
- idcs
To stringTarget Mapper - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs
Trim booleanString Value - Trims any leading and trailing blanks from String values. Default is True.
- idcs
Validate booleanReference - Validate payload reference value during create, replace, and update. Default is True.
- idcs
Value booleanPersisted - Specifies whether the value of the Resource attribute is persisted
- metas
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 boolean - Indicates the attribute's plurality
- mutability string
- Specifies if the attribute is mutable
- name string
- Attribute's name
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference
Types string[] - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required boolean
- Specifies if the attribute is required
- resource
Type string - ResourceType this attribute belongs to.
- returned string
- A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas string[]
- The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- Get
Domains Resource Type Schema Attributes Resource Type Schema Attribute Tag[] - A list of tags on this resource.
- tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type string
- The attribute's data type--for example, String
- uniqueness string
- A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical_
values Sequence[str] - A collection of canonical values. Applicable Service Providers MUST specify the canonical types specified in the core schema specification--for example, "work", "home".
- case_
exact bool - Specifies if the String attribute is case-sensitive
- compartment_
ocid str - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete_
in_ boolprogress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description str
- The attribute's human-readable description
- domain_
ocid str - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end_
user_ strmutability - Specifies User mutability for this attribute
- end_
user_ Sequence[str]mutability_ allowed_ values - Specifies the list of User mutabilities allowed
- id str
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs_
added_ strsince_ release_ number - Indicates that the schema has been added since this release number
- idcs_
added_ intsince_ version - Indicates that the schema has been added since version
- idcs_
attribute_ boolcacheable - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs_
attribute_ boolmappable - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs_
auditable bool - Specifies whether changes to this attribute value are audited
- idcs_
auto_ strincrement_ seq_ name - Sequence tracking ID name for the attribute
- idcs_
canonical_ strvalue_ source_ filter - Filter to use when getting canonical values for this schema attribute
- idcs_
canonical_ strvalue_ source_ resource_ type - Specifies the Resource type to read from for dynamic canonical values
- idcs_
composite_ Sequence[str]keys - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs_
created_ Sequence[identity.bies Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Created By] - The User or App who created the Resource
- idcs_
csv_ strcolumn_ header_ name - The attribute defining the CSV column header name for import/export
- idcs_
custom_ boolattribute - custom attribute flag.
- idcs_
deprecated_ strsince_ release_ number - Indicates that the schema has been deprecated since this release number
- idcs_
deprecated_ intsince_ version - Indicates that the schema has been deprecated since version
- idcs_
display_ strname - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs_
display_ strname_ message_ id - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs_
fetch_ boolcomplex_ attribute_ values - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs_
from_ strtarget_ mapper - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs_
fully_ strqualified_ name - Fully qualified name of this attribute
- idcs_
generated bool - Specifies whether this attribute value was generated
- idcs_
icf_ strattribute_ type - Maps to ICF data type
- idcs_
icf_ strbundle_ attribute_ name - Maps to ICF target attribute name
- idcs_
icf_ boolrequired - Metadata to identify the ICF required attribute
- idcs_
indirect_ Sequence[str]ref_ resource_ attributes - Specifies the indirectly referenced Resources
- idcs_
internal bool - Specifies whether the schema attribute is for internal use only. Internal attributes are not exposed via REST. This attribute overrides mutability for create/update if the request is internal and the attribute internalflag is set to True. This attribute overrides the return attribute while building SCIM response attributes when both the request is internal and the schema attribute is internal.
- idcs_
last_ Sequence[identity.modified_ bies Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Idcs Last Modified By] - The User or App who modified the Resource
- idcs_
last_ strupgraded_ in_ release - The release number when the resource was upgraded.
- idcs_
max_ intlength - Specifies the maximum length of the attribute
- idcs_
max_ intvalue - Specifies the maximum value of the integer attribute
- idcs_
min_ intlength - Specifies the minimum length of the attribute
- idcs_
min_ intvalue - Specifies the minimum value of the integer attribute
- idcs_
multi_ boollanguage - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs_
prevented_ Sequence[str]operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs_
ref_ strresource_ attribute - Specifies the referenced Resource attribute
- idcs_
ref_ Sequence[str]resource_ attributes - Specifies the directly referenced Resources
- idcs_
schema_ strurn - Schema URN string that this attribute belongs to
- idcs_
scim_ boolcompliant - Indicates if the attribute is scim compliant, default is true
- idcs_
searchable bool - Specifies whether this attribute can be included in a search filter
- idcs_
sensitive str - Flag to specify if the attribute should be encrypted or hashed
- idcs_
target_ strattribute_ name - Target attribute name that this attribute gets mapped to for persistence
- idcs_
target_ strattribute_ name_ to_ migrate_ from - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs_
target_ strnorm_ attribute_ name - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs_
target_ strunique_ constraint_ name - Target index name created for this attribute for performance
- idcs_
to_ strtarget_ mapper - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs_
trim_ boolstring_ value - Trims any leading and trailing blanks from String values. Default is True.
- idcs_
validate_ boolreference - Validate payload reference value during create, replace, and update. Default is True.
- idcs_
value_ boolpersisted - Specifies whether the value of the Resource attribute is persisted
- metas
Sequence[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 bool - Indicates the attribute's plurality
- mutability str
- Specifies if the attribute is mutable
- name str
- Attribute's name
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference_
types Sequence[str] - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required bool
- Specifies if the attribute is required
- resource_
type str - ResourceType this attribute belongs to.
- returned str
- A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas Sequence[str]
- The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- Sequence[identity.
Get Domains Resource Type Schema Attributes Resource Type Schema Attribute Tag] - A list of tags on this resource.
- tenancy_
ocid str - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type str
- The attribute's data type--for example, String
- uniqueness str
- A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
- canonical
Values 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 Boolean - Specifies if the String attribute is case-sensitive
- compartment
Ocid String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In BooleanProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description String
- The attribute's human-readable description
- domain
Ocid String - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- end
User StringMutability - Specifies User mutability for this attribute
- end
User List<String>Mutability Allowed Values - Specifies the list of User mutabilities allowed
- id String
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs
Added StringSince Release Number - Indicates that the schema has been added since this release number
- idcs
Added NumberSince Version - Indicates that the schema has been added since version
- idcs
Attribute BooleanCacheable - Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present "attributesToGet" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
- idcs
Attribute BooleanMappable - Specifies if the attribute can be used for mapping with external identity sources such as AD or LDAP. If isSchemaMappable: false for the schema in which this attribute is defined, then this flag is ignored
- idcs
Auditable Boolean - Specifies whether changes to this attribute value are audited
- idcs
Auto StringIncrement Seq Name - Sequence tracking ID name for the attribute
- idcs
Canonical StringValue Source Filter - Filter to use when getting canonical values for this schema attribute
- idcs
Canonical StringValue Source Resource Type - Specifies the Resource type to read from for dynamic canonical values
- idcs
Composite List<String>Keys - The set of one or more sub attributes' names of a CMVA, whose values uniquely identify an instance of a CMVA
- idcs
Created List<Property Map>Bies - The User or App who created the Resource
- idcs
Csv StringColumn Header Name - The attribute defining the CSV column header name for import/export
- idcs
Custom BooleanAttribute - custom attribute flag.
- idcs
Deprecated StringSince Release Number - Indicates that the schema has been deprecated since this release number
- idcs
Deprecated NumberSince Version - Indicates that the schema has been deprecated since version
- idcs
Display StringName - Specifies the user-friendly displayable attribute name or catalog key used for localization
- idcs
Display StringName Message Id - Localized schema attribute display name for use by UI client for displaying attribute labels
- idcs
Fetch BooleanComplex Attribute Values - SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- idcsSearchable: true
- returned: default
- type: boolean
- uniqueness: none Whether the CMVA attribute will be fetched or not for current resource in AbstractResourceManager update operation before calling data provider update. Default is true.
- idcs
From StringTarget Mapper - Specifies the mapper to use when mapping this attribute value from DataProvider-specific semantics
- idcs
Fully StringQualified Name - Fully qualified name of this attribute
- idcs
Generated Boolean - Specifies whether this attribute value was generated
- idcs
Icf StringAttribute Type - Maps to ICF data type
- idcs
Icf StringBundle Attribute Name - Maps to ICF target attribute name
- idcs
Icf BooleanRequired - Metadata to identify the ICF required attribute
- idcs
Indirect List<String>Ref Resource Attributes - Specifies the indirectly referenced Resources
- idcs
Internal 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 List<Property Map>Modified Bies - The User or App who modified the Resource
- idcs
Last StringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Max NumberLength - Specifies the maximum length of the attribute
- idcs
Max NumberValue - Specifies the maximum value of the integer attribute
- idcs
Min NumberLength - Specifies the minimum length of the attribute
- idcs
Min NumberValue - Specifies the minimum value of the integer attribute
- idcs
Multi BooleanLanguage - If true, specifies that the attribute can have multiple language values set for the attribute on which this is set.
- idcs
Prevented List<String>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- idcs
Ref StringResource Attribute - Specifies the referenced Resource attribute
- idcs
Ref List<String>Resource Attributes - Specifies the directly referenced Resources
- idcs
Schema StringUrn - Schema URN string that this attribute belongs to
- idcs
Scim BooleanCompliant - Indicates if the attribute is scim compliant, default is true
- idcs
Searchable Boolean - Specifies whether this attribute can be included in a search filter
- idcs
Sensitive String - Flag to specify if the attribute should be encrypted or hashed
- idcs
Target StringAttribute Name - Target attribute name that this attribute gets mapped to for persistence
- idcs
Target StringAttribute Name To Migrate From - Old Target attribute name from child table for CSVA attribute prior to migration. This maintains this attribute used to get mapped to for persistence
- idcs
Target StringNorm Attribute Name - Target normalized attribute name that this normalized value of attribute gets mapped to for persistence. Only set for caseExact=false & searchable attributes. Do not use by default.
- idcs
Target StringUnique Constraint Name - Target index name created for this attribute for performance
- idcs
To StringTarget Mapper - Specifies the mapper to use when mapping this attribute value to DataProvider-specific semantics
- idcs
Trim BooleanString Value - Trims any leading and trailing blanks from String values. Default is True.
- idcs
Validate BooleanReference - Validate payload reference value during create, replace, and update. Default is True.
- idcs
Value BooleanPersisted - Specifies whether the value of the Resource attribute is persisted
- metas List<Property Map>
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- multi
Valued Boolean - Indicates the attribute's plurality
- mutability String
- Specifies if the attribute is mutable
- name String
- Attribute's name
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- reference
Types List<String> - The names of the Resource types that may be referenced--for example, User. This is only applicable for attributes that are of the "reference" data type.
- required Boolean
- Specifies if the attribute is required
- resource
Type String - ResourceType this attribute belongs to.
- returned String
- A single keyword that indicates when an attribute and associated values are returned in response to a GET request or in response to a PUT, POST, or PATCH request
- schemas List<String>
- The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- List<Property Map>
- A list of tags on this resource.
- tenancy
Ocid String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- type String
- The attribute's data type--for example, String
- uniqueness String
- A single keyword value that specifies how the Service Provider enforces uniqueness of attribute values. A server MAY reject an invalid value based on uniqueness by returning an HTTP response code of 400 (Bad Request). A client MAY enforce uniqueness on the client side to a greater degree than the Service Provider enforces. For example, a client could make a value unique while the server has the uniqueness of "none".
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsCreatedBy
- Display string
- The displayName of the User or App who modified this Resource
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- The attribute's data type--for example, String
- Value string
- Value of the tag.
- Display string
- The displayName of the User or App who modified this Resource
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- The attribute's data type--for example, String
- Value string
- Value of the tag.
- display String
- The displayName of the User or App who modified this Resource
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- The attribute's data type--for example, String
- value String
- Value of the tag.
- display string
- The displayName of the User or App who modified this Resource
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type string
- The attribute's data type--for example, String
- value string
- Value of the tag.
- display str
- The displayName of the User or App who modified this Resource
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref str
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type str
- The attribute's data type--for example, String
- value str
- Value of the tag.
- display String
- The displayName of the User or App who modified this Resource
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- The attribute's data type--for example, String
- value String
- Value of the tag.
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeIdcsLastModifiedBy
- Display string
- The displayName of the User or App who modified this Resource
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- The attribute's data type--for example, String
- Value string
- Value of the tag.
- Display string
- The displayName of the User or App who modified this Resource
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- The attribute's data type--for example, String
- Value string
- Value of the tag.
- display String
- The displayName of the User or App who modified this Resource
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- The attribute's data type--for example, String
- value String
- Value of the tag.
- display string
- The displayName of the User or App who modified this Resource
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type string
- The attribute's data type--for example, String
- value string
- Value of the tag.
- display str
- The displayName of the User or App who modified this Resource
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref str
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type str
- The attribute's data type--for example, String
- value str
- Value of the tag.
- display String
- The displayName of the User or App who modified this Resource
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- The attribute's data type--for example, String
- value String
- Value of the tag.
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeMeta
- Created string
- The DateTime the Resource was added to the Service Provider
- Last
Modified string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type string - ResourceType this attribute belongs to.
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- Created string
- The DateTime the Resource was added to the Service Provider
- Last
Modified string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type string - ResourceType this attribute belongs to.
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
- The DateTime the Resource was added to the Service Provider
- last
Modified String - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type String - ResourceType this attribute belongs to.
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created string
- The DateTime the Resource was added to the Service Provider
- last
Modified string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type string - ResourceType this attribute belongs to.
- version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created str
- The DateTime the Resource was added to the Service Provider
- last_
modified str - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location str
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource_
type str - ResourceType this attribute belongs to.
- version str
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
- The DateTime the Resource was added to the Service Provider
- last
Modified String - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type String - ResourceType this attribute belongs to.
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
GetDomainsResourceTypeSchemaAttributesResourceTypeSchemaAttributeTag
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi