Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Identity.getDomainsUsers
Explore with Pulumi AI
This data source provides the list of Users in Oracle Cloud Infrastructure Identity Domains service.
Search for users.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testUsers = oci.Identity.getDomainsUsers({
    idcsEndpoint: testDomain.url,
    userCount: userUserCount,
    userFilter: userUserFilter,
    attributeSets: [],
    attributes: "",
    authorization: userAuthorization,
    resourceTypeSchemaVersion: userResourceTypeSchemaVersion,
    startIndex: userStartIndex,
});
import pulumi
import pulumi_oci as oci
test_users = oci.Identity.get_domains_users(idcs_endpoint=test_domain["url"],
    user_count=user_user_count,
    user_filter=user_user_filter,
    attribute_sets=[],
    attributes="",
    authorization=user_authorization,
    resource_type_schema_version=user_resource_type_schema_version,
    start_index=user_start_index)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/identity"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := identity.GetDomainsUsers(ctx, &identity.GetDomainsUsersArgs{
			IdcsEndpoint:              testDomain.Url,
			UserCount:                 pulumi.IntRef(userUserCount),
			UserFilter:                pulumi.StringRef(userUserFilter),
			AttributeSets:             []interface{}{},
			Attributes:                pulumi.StringRef(""),
			Authorization:             pulumi.StringRef(userAuthorization),
			ResourceTypeSchemaVersion: pulumi.StringRef(userResourceTypeSchemaVersion),
			StartIndex:                pulumi.IntRef(userStartIndex),
		}, 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 testUsers = Oci.Identity.GetDomainsUsers.Invoke(new()
    {
        IdcsEndpoint = testDomain.Url,
        UserCount = userUserCount,
        UserFilter = userUserFilter,
        AttributeSets = new() { },
        Attributes = "",
        Authorization = userAuthorization,
        ResourceTypeSchemaVersion = userResourceTypeSchemaVersion,
        StartIndex = userStartIndex,
    });
});
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.GetDomainsUsersArgs;
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 testUsers = IdentityFunctions.getDomainsUsers(GetDomainsUsersArgs.builder()
            .idcsEndpoint(testDomain.url())
            .userCount(userUserCount)
            .userFilter(userUserFilter)
            .attributeSets()
            .attributes("")
            .authorization(userAuthorization)
            .resourceTypeSchemaVersion(userResourceTypeSchemaVersion)
            .startIndex(userStartIndex)
            .build());
    }
}
variables:
  testUsers:
    fn::invoke:
      function: oci:Identity:getDomainsUsers
      arguments:
        idcsEndpoint: ${testDomain.url}
        userCount: ${userUserCount}
        userFilter: ${userUserFilter}
        attributeSets: []
        attributes: ""
        authorization: ${userAuthorization}
        resourceTypeSchemaVersion: ${userResourceTypeSchemaVersion}
        startIndex: ${userStartIndex}
Using getDomainsUsers
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 getDomainsUsers(args: GetDomainsUsersArgs, opts?: InvokeOptions): Promise<GetDomainsUsersResult>
function getDomainsUsersOutput(args: GetDomainsUsersOutputArgs, opts?: InvokeOptions): Output<GetDomainsUsersResult>def get_domains_users(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_version: Optional[str] = None,
                      sort_by: Optional[str] = None,
                      sort_order: Optional[str] = None,
                      start_index: Optional[int] = None,
                      user_count: Optional[int] = None,
                      user_filter: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetDomainsUsersResult
def get_domains_users_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_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,
                      user_count: Optional[pulumi.Input[int]] = None,
                      user_filter: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetDomainsUsersResult]func GetDomainsUsers(ctx *Context, args *GetDomainsUsersArgs, opts ...InvokeOption) (*GetDomainsUsersResult, error)
func GetDomainsUsersOutput(ctx *Context, args *GetDomainsUsersOutputArgs, opts ...InvokeOption) GetDomainsUsersResultOutput> Note: This function is named GetDomainsUsers in the Go SDK.
public static class GetDomainsUsers 
{
    public static Task<GetDomainsUsersResult> InvokeAsync(GetDomainsUsersArgs args, InvokeOptions? opts = null)
    public static Output<GetDomainsUsersResult> Invoke(GetDomainsUsersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDomainsUsersResult> getDomainsUsers(GetDomainsUsersArgs args, InvokeOptions options)
public static Output<GetDomainsUsersResult> getDomainsUsers(GetDomainsUsersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Identity/getDomainsUsers:getDomainsUsers
  arguments:
    # arguments dictionaryThe following arguments are supported:
- IdcsEndpoint string
- The basic endpoint for the identity domain
- AttributeSets List<string>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- CompartmentId string
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- SortBy string
- SortOrder string
- StartIndex int
- OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
- UserCount int
- OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
- UserFilter string
- OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
- IdcsEndpoint string
- The basic endpoint for the identity domain
- AttributeSets []string
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- CompartmentId string
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- SortBy string
- SortOrder string
- StartIndex int
- OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
- UserCount int
- OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
- UserFilter string
- OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
- idcsEndpoint String
- The basic endpoint for the identity domain
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentId String
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- sortBy String
- sortOrder String
- startIndex Integer
- OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
- userCount Integer
- OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
- userFilter String
- OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
- idcsEndpoint string
- The basic endpoint for the identity domain
- attributeSets string[]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentId string
- resourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- sortBy string
- sortOrder string
- startIndex number
- OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
- userCount number
- OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
- userFilter string
- OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
- 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_ 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.
- user_count int
- OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
- user_filter str
- OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
- idcsEndpoint String
- The basic endpoint for the identity domain
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentId String
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- sortBy String
- sortOrder String
- startIndex Number
- OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
- userCount Number
- OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
- userFilter String
- OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
getDomainsUsers Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- IdcsEndpoint string
- ItemsPer intPage 
- Schemas List<string>
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- TotalResults int
- Users
List<GetDomains Users User> 
- The list of users.
- AttributeSets List<string>
- Attributes string
- string
- CompartmentId string
- ResourceType stringSchema Version 
- SortBy string
- SortOrder string
- StartIndex int
- UserCount int
- UserFilter string
- Id string
- The provider-assigned unique ID for this managed resource.
- IdcsEndpoint string
- ItemsPer intPage 
- Schemas []string
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- TotalResults int
- Users
[]GetDomains Users User 
- The list of users.
- AttributeSets []string
- Attributes string
- string
- CompartmentId string
- ResourceType stringSchema Version 
- SortBy string
- SortOrder string
- StartIndex int
- UserCount int
- UserFilter string
- id String
- The provider-assigned unique ID for this managed resource.
- idcsEndpoint String
- itemsPer IntegerPage 
- schemas List<String>
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- totalResults Integer
- users
List<GetDomains Users User> 
- The list of users.
- attributeSets List<String>
- attributes String
- String
- compartmentId String
- resourceType StringSchema Version 
- sortBy String
- sortOrder String
- startIndex Integer
- userCount Integer
- userFilter String
- id string
- The provider-assigned unique ID for this managed resource.
- idcsEndpoint string
- itemsPer numberPage 
- schemas string[]
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- totalResults number
- users
GetDomains Users User[] 
- The list of users.
- attributeSets string[]
- attributes string
- string
- compartmentId string
- resourceType stringSchema Version 
- sortBy string
- sortOrder string
- startIndex number
- userCount number
- userFilter string
- id str
- The provider-assigned unique ID for this managed resource.
- idcs_endpoint str
- items_per_ intpage 
- schemas Sequence[str]
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- total_results int
- users
Sequence[GetDomains Users User] 
- The list of users.
- attribute_sets Sequence[str]
- attributes str
- str
- compartment_id str
- resource_type_ strschema_ version 
- sort_by str
- sort_order str
- start_index int
- user_count int
- user_filter str
- id String
- The provider-assigned unique ID for this managed resource.
- idcsEndpoint String
- itemsPer NumberPage 
- schemas List<String>
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- totalResults Number
- users List<Property Map>
- The list of users.
- attributeSets List<String>
- attributes String
- String
- compartmentId String
- resourceType StringSchema Version 
- sortBy String
- sortOrder String
- startIndex Number
- userCount Number
- userFilter String
Supporting Types
GetDomainsUsersUser   
- Active bool
- Status of the account
- Addresses
List<GetDomains Users User Address> 
- A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
- AttributeSets List<string>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- CompartmentOcid string
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- DeleteIn boolProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Description string
- Description of the user
- DisplayName string
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- DomainOcid string
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Emails
List<GetDomains Users User Email> 
- A complex attribute representing emails
- Entitlements
List<GetDomains Users User Entitlement> 
- A list of entitlements for the User that represent a thing the User has.
- ExternalId string
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- ForceDelete bool
- Groups
List<GetDomains Users User Group> 
- A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- 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.
- IdcsCreated List<GetBies Domains Users User Idcs Created By> 
- The User or App who created the Resource
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast List<GetModified Bies Domains Users User Idcs Last Modified By> 
- The User or App who modified the Resource
- IdcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- IdcsPrevented List<string>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Ims
List<GetDomains Users User Im> 
- User's instant messaging addresses
- Locale string
- Used to indicate the User's default location for purposes of localizing items such as currency, date and time format, numerical representations, and so on.
- Metas
List<GetDomains Users User Meta> 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Names
List<GetDomains Users User Name> 
- Name of the account assigned to the User.
- NickName string
- Nick name
- Ocid string
- The OCID of the user's support account.
- Password string
- Password attribute. Max length for password is controlled via Password Policy.
- PhoneNumbers List<GetDomains Users User Phone Number> 
- Phone numbers
- Photos
List<GetDomains Users User Photo> 
- URLs of photos for the User
- PreferredLanguage string
- User's preferred written or spoken language used for localized user interfaces
- ProfileUrl string
- A fully-qualified URL to a page representing the User's online profile
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Roles
List<GetDomains Users User Role> 
- A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
- Schemas List<string>
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- 
List<GetDomains Users User Tag> 
- A list of tags on this resource.
- TenancyOcid string
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Timezone string
- User's timezone
- Title string
- Title
- Urnietfparamsscimschemasextensionenterprise20users
List<GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user> 
- Enterprise User
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag> 
- Oracle Cloud Infrastructure Tags.
- UrnietfparamsscimschemasoracleidcsextensionadaptiveUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User> 
- This extension defines attributes to manage user's risk score.
- UrnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensioncapabilities User> 
- User's Capabilities
- UrnietfparamsscimschemasoracleidcsextensiondbCredentials List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb Credentials User> 
- The database credentials user extension.
- UrnietfparamsscimschemasoracleidcsextensiondbUser List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User> 
- DB User extension
- UrnietfparamsscimschemasoracleidcsextensionkerberosUser List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User> 
- Kerberos User extension
- UrnietfparamsscimschemasoracleidcsextensionmfaUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User> 
- This extension defines attributes used to manage Multi-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- UrnietfparamsscimschemasoracleidcsextensionpasswordState List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User> 
- This extension defines attributes used to manage account passwords within a Service Provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- UrnietfparamsscimschemasoracleidcsextensionpasswordlessUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User> 
- This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- UrnietfparamsscimschemasoracleidcsextensionposixUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionposix User> 
- POSIX User extension
- UrnietfparamsscimschemasoracleidcsextensionsecurityQuestions List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User> 
- This extension defines the attributes used to store the security questions of a user.
- UrnietfparamsscimschemasoracleidcsextensionselfChange List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Change User> 
- Controls whether a user can update themselves or not via User related APIs
- UrnietfparamsscimschemasoracleidcsextensionselfRegistration List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User> 
- This extension defines attributes used to manage self registration profile linked to the user.
- UrnietfparamsscimschemasoracleidcsextensionsffUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsff User> 
- SFF Auth Keys User extension
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsocial Account User> 
- Social User extension
- UrnietfparamsscimschemasoracleidcsextensiontermsOf List<GetUse Users Domains Users User Urnietfparamsscimschemasoracleidcsextensionterms Of Use User> 
- Terms Of Use extension
- UrnietfparamsscimschemasoracleidcsextensionuserCredentials List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User> 
- User's credentials
- UrnietfparamsscimschemasoracleidcsextensionuserState List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User> 
- This extension defines the attributes used to manage account passwords within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- UrnietfparamsscimschemasoracleidcsextensionuserUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User> 
- Oracle Identity Cloud Service User
- UserName string
- User name
- UserType string
- Used to identify the organization-to-user relationship
- X509certificates
List<GetDomains Users User X509certificate> 
- A list of certificates issued to the User.
- Active bool
- Status of the account
- Addresses
[]GetDomains Users User Address 
- A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
- AttributeSets []string
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- CompartmentOcid string
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- DeleteIn boolProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Description string
- Description of the user
- DisplayName string
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- DomainOcid string
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Emails
[]GetDomains Users User Email 
- A complex attribute representing emails
- Entitlements
[]GetDomains Users User Entitlement 
- A list of entitlements for the User that represent a thing the User has.
- ExternalId string
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- ForceDelete bool
- Groups
[]GetDomains Users User Group 
- A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- 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.
- IdcsCreated []GetBies Domains Users User Idcs Created By 
- The User or App who created the Resource
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast []GetModified Bies Domains Users User Idcs Last Modified By 
- The User or App who modified the Resource
- IdcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- IdcsPrevented []stringOperations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Ims
[]GetDomains Users User Im 
- User's instant messaging addresses
- Locale string
- Used to indicate the User's default location for purposes of localizing items such as currency, date and time format, numerical representations, and so on.
- Metas
[]GetDomains Users User Meta 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Names
[]GetDomains Users User Name 
- Name of the account assigned to the User.
- NickName string
- Nick name
- Ocid string
- The OCID of the user's support account.
- Password string
- Password attribute. Max length for password is controlled via Password Policy.
- PhoneNumbers []GetDomains Users User Phone Number 
- Phone numbers
- Photos
[]GetDomains Users User Photo 
- URLs of photos for the User
- PreferredLanguage string
- User's preferred written or spoken language used for localized user interfaces
- ProfileUrl string
- A fully-qualified URL to a page representing the User's online profile
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Roles
[]GetDomains Users User Role 
- A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
- Schemas []string
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- 
[]GetDomains Users User Tag 
- A list of tags on this resource.
- TenancyOcid string
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Timezone string
- User's timezone
- Title string
- Title
- Urnietfparamsscimschemasextensionenterprise20users
[]GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user 
- Enterprise User
- 
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag 
- Oracle Cloud Infrastructure Tags.
- UrnietfparamsscimschemasoracleidcsextensionadaptiveUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User 
- This extension defines attributes to manage user's risk score.
- UrnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensioncapabilities User 
- User's Capabilities
- UrnietfparamsscimschemasoracleidcsextensiondbCredentials []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb Credentials User 
- The database credentials user extension.
- UrnietfparamsscimschemasoracleidcsextensiondbUser []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User 
- DB User extension
- UrnietfparamsscimschemasoracleidcsextensionkerberosUser []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User 
- Kerberos User extension
- UrnietfparamsscimschemasoracleidcsextensionmfaUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User 
- This extension defines attributes used to manage Multi-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- UrnietfparamsscimschemasoracleidcsextensionpasswordState []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User 
- This extension defines attributes used to manage account passwords within a Service Provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- UrnietfparamsscimschemasoracleidcsextensionpasswordlessUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User 
- This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- UrnietfparamsscimschemasoracleidcsextensionposixUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionposix User 
- POSIX User extension
- UrnietfparamsscimschemasoracleidcsextensionsecurityQuestions []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User 
- This extension defines the attributes used to store the security questions of a user.
- UrnietfparamsscimschemasoracleidcsextensionselfChange []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Change User 
- Controls whether a user can update themselves or not via User related APIs
- UrnietfparamsscimschemasoracleidcsextensionselfRegistration []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User 
- This extension defines attributes used to manage self registration profile linked to the user.
- UrnietfparamsscimschemasoracleidcsextensionsffUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsff User 
- SFF Auth Keys User extension
- 
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsocial Account User 
- Social User extension
- UrnietfparamsscimschemasoracleidcsextensiontermsOf []GetUse Users Domains Users User Urnietfparamsscimschemasoracleidcsextensionterms Of Use User 
- Terms Of Use extension
- UrnietfparamsscimschemasoracleidcsextensionuserCredentials []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User 
- User's credentials
- UrnietfparamsscimschemasoracleidcsextensionuserState []GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User 
- This extension defines the attributes used to manage account passwords within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- UrnietfparamsscimschemasoracleidcsextensionuserUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User 
- Oracle Identity Cloud Service User
- UserName string
- User name
- UserType string
- Used to identify the organization-to-user relationship
- X509certificates
[]GetDomains Users User X509certificate 
- A list of certificates issued to the User.
- active Boolean
- Status of the account
- addresses
List<GetDomains Users User Address> 
- A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentOcid String
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- deleteIn BooleanProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description String
- Description of the user
- displayName String
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- domainOcid String
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- emails
List<GetDomains Users User Email> 
- A complex attribute representing emails
- entitlements
List<GetDomains Users User Entitlement> 
- A list of entitlements for the User that represent a thing the User has.
- externalId String
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- forceDelete Boolean
- groups
List<GetDomains Users User Group> 
- A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- 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.
- idcsCreated List<GetBies Domains Users User Idcs Created By> 
- The User or App who created the Resource
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast List<GetModified Bies Domains Users User Idcs Last Modified By> 
- The User or App who modified the Resource
- idcsLast StringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsPrevented List<String>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- ims
List<GetDomains Users User Im> 
- User's instant messaging addresses
- locale String
- Used to indicate the User's default location for purposes of localizing items such as currency, date and time format, numerical representations, and so on.
- metas
List<GetDomains Users User Meta> 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- names
List<GetDomains Users User Name> 
- Name of the account assigned to the User.
- nickName String
- Nick name
- ocid String
- The OCID of the user's support account.
- password String
- Password attribute. Max length for password is controlled via Password Policy.
- phoneNumbers List<GetDomains Users User Phone Number> 
- Phone numbers
- photos
List<GetDomains Users User Photo> 
- URLs of photos for the User
- preferredLanguage String
- User's preferred written or spoken language used for localized user interfaces
- profileUrl String
- A fully-qualified URL to a page representing the User's online profile
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- roles
List<GetDomains Users User Role> 
- A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
- schemas List<String>
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- 
List<GetDomains Users User Tag> 
- A list of tags on this resource.
- tenancyOcid String
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- timezone String
- User's timezone
- title String
- Title
- urnietfparamsscimschemasextensionenterprise20users
List<GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user> 
- Enterprise User
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag> 
- Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensionadaptiveUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User> 
- This extension defines attributes to manage user's risk score.
- urnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensioncapabilities User> 
- User's Capabilities
- urnietfparamsscimschemasoracleidcsextensiondbCredentials List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb Credentials User> 
- The database credentials user extension.
- urnietfparamsscimschemasoracleidcsextensiondbUser List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User> 
- DB User extension
- urnietfparamsscimschemasoracleidcsextensionkerberosUser List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User> 
- Kerberos User extension
- urnietfparamsscimschemasoracleidcsextensionmfaUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User> 
- This extension defines attributes used to manage Multi-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionpasswordState List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User> 
- This extension defines attributes used to manage account passwords within a Service Provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionpasswordlessUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User> 
- This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionposixUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionposix User> 
- POSIX User extension
- urnietfparamsscimschemasoracleidcsextensionsecurityQuestions List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User> 
- This extension defines the attributes used to store the security questions of a user.
- urnietfparamsscimschemasoracleidcsextensionselfChange List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Change User> 
- Controls whether a user can update themselves or not via User related APIs
- urnietfparamsscimschemasoracleidcsextensionselfRegistration List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User> 
- This extension defines attributes used to manage self registration profile linked to the user.
- urnietfparamsscimschemasoracleidcsextensionsffUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsff User> 
- SFF Auth Keys User extension
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsocial Account User> 
- Social User extension
- urnietfparamsscimschemasoracleidcsextensiontermsOf List<GetUse Users Domains Users User Urnietfparamsscimschemasoracleidcsextensionterms Of Use User> 
- Terms Of Use extension
- urnietfparamsscimschemasoracleidcsextensionuserCredentials List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User> 
- User's credentials
- urnietfparamsscimschemasoracleidcsextensionuserState List<GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User> 
- This extension defines the attributes used to manage account passwords within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionuserUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User> 
- Oracle Identity Cloud Service User
- userName String
- User name
- userType String
- Used to identify the organization-to-user relationship
- x509certificates
List<GetDomains Users User X509certificate> 
- A list of certificates issued to the User.
- active boolean
- Status of the account
- addresses
GetDomains Users User Address[] 
- A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
- attributeSets string[]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentOcid string
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- deleteIn booleanProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description string
- Description of the user
- displayName string
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- domainOcid string
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- emails
GetDomains Users User Email[] 
- A complex attribute representing emails
- entitlements
GetDomains Users User Entitlement[] 
- A list of entitlements for the User that represent a thing the User has.
- externalId string
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- forceDelete boolean
- groups
GetDomains Users User Group[] 
- A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- 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.
- idcsCreated GetBies Domains Users User Idcs Created By[] 
- The User or App who created the Resource
- idcsEndpoint string
- The basic endpoint for the identity domain
- idcsLast GetModified Bies Domains Users User Idcs Last Modified By[] 
- The User or App who modified the Resource
- idcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsPrevented string[]Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- ims
GetDomains Users User Im[] 
- User's instant messaging addresses
- locale string
- Used to indicate the User's default location for purposes of localizing items such as currency, date and time format, numerical representations, and so on.
- metas
GetDomains Users User Meta[] 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- names
GetDomains Users User Name[] 
- Name of the account assigned to the User.
- nickName string
- Nick name
- ocid string
- The OCID of the user's support account.
- password string
- Password attribute. Max length for password is controlled via Password Policy.
- phoneNumbers GetDomains Users User Phone Number[] 
- Phone numbers
- photos
GetDomains Users User Photo[] 
- URLs of photos for the User
- preferredLanguage string
- User's preferred written or spoken language used for localized user interfaces
- profileUrl string
- A fully-qualified URL to a page representing the User's online profile
- resourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- roles
GetDomains Users User Role[] 
- A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
- schemas string[]
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- 
GetDomains Users User Tag[] 
- A list of tags on this resource.
- tenancyOcid string
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- timezone string
- User's timezone
- title string
- Title
- urnietfparamsscimschemasextensionenterprise20users
GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user[] 
- Enterprise User
- 
GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag[] 
- Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensionadaptiveUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User[] 
- This extension defines attributes to manage user's risk score.
- urnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensioncapabilities User[] 
- User's Capabilities
- urnietfparamsscimschemasoracleidcsextensiondbCredentials GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb Credentials User[] 
- The database credentials user extension.
- urnietfparamsscimschemasoracleidcsextensiondbUser GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User[] 
- DB User extension
- urnietfparamsscimschemasoracleidcsextensionkerberosUser GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User[] 
- Kerberos User extension
- urnietfparamsscimschemasoracleidcsextensionmfaUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User[] 
- This extension defines attributes used to manage Multi-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionpasswordState GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User[] 
- This extension defines attributes used to manage account passwords within a Service Provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionpasswordlessUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User[] 
- This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionposixUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionposix User[] 
- POSIX User extension
- urnietfparamsscimschemasoracleidcsextensionsecurityQuestions GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User[] 
- This extension defines the attributes used to store the security questions of a user.
- urnietfparamsscimschemasoracleidcsextensionselfChange GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Change User[] 
- Controls whether a user can update themselves or not via User related APIs
- urnietfparamsscimschemasoracleidcsextensionselfRegistration GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User[] 
- This extension defines attributes used to manage self registration profile linked to the user.
- urnietfparamsscimschemasoracleidcsextensionsffUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsff User[] 
- SFF Auth Keys User extension
- 
GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsocial Account User[] 
- Social User extension
- urnietfparamsscimschemasoracleidcsextensiontermsOf GetUse Users Domains Users User Urnietfparamsscimschemasoracleidcsextensionterms Of Use User[] 
- Terms Of Use extension
- urnietfparamsscimschemasoracleidcsextensionuserCredentials GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User[] 
- User's credentials
- urnietfparamsscimschemasoracleidcsextensionuserState GetUsers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User[] 
- This extension defines the attributes used to manage account passwords within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionuserUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User[] 
- Oracle Identity Cloud Service User
- userName string
- User name
- userType string
- Used to identify the organization-to-user relationship
- x509certificates
GetDomains Users User X509certificate[] 
- A list of certificates issued to the User.
- active bool
- Status of the account
- addresses
Sequence[GetDomains Users User Address] 
- A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
- 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_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
- Description of the user
- display_name str
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- domain_ocid str
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- emails
Sequence[GetDomains Users User Email] 
- A complex attribute representing emails
- entitlements
Sequence[GetDomains Users User Entitlement] 
- A list of entitlements for the User that represent a thing the User has.
- external_id str
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- force_delete bool
- groups
Sequence[GetDomains Users User Group] 
- A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- 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_created_ Sequence[Getbies Domains Users User Idcs Created By] 
- The User or App who created the Resource
- idcs_endpoint str
- The basic endpoint for the identity domain
- idcs_last_ Sequence[Getmodified_ bies Domains Users User 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_prevented_ Sequence[str]operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- ims
Sequence[GetDomains Users User Im] 
- User's instant messaging addresses
- locale str
- Used to indicate the User's default location for purposes of localizing items such as currency, date and time format, numerical representations, and so on.
- metas
Sequence[GetDomains Users User Meta] 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- names
Sequence[GetDomains Users User Name] 
- Name of the account assigned to the User.
- nick_name str
- Nick name
- ocid str
- The OCID of the user's support account.
- password str
- Password attribute. Max length for password is controlled via Password Policy.
- phone_numbers Sequence[GetDomains Users User Phone Number] 
- Phone numbers
- photos
Sequence[GetDomains Users User Photo] 
- URLs of photos for the User
- preferred_language str
- User's preferred written or spoken language used for localized user interfaces
- profile_url str
- A fully-qualified URL to a page representing the User's online profile
- 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.
- roles
Sequence[GetDomains Users User Role] 
- A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
- schemas Sequence[str]
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- 
Sequence[GetDomains Users User Tag] 
- A list of tags on this resource.
- tenancy_ocid str
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- timezone str
- User's timezone
- title str
- Title
- urnietfparamsscimschemasextensionenterprise20users
Sequence[GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user] 
- Enterprise User
- 
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag] 
- Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensionadaptive_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User] 
- This extension defines attributes to manage user's risk score.
- urnietfparamsscimschemasoracleidcsextensioncapabilities_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensioncapabilities User] 
- User's Capabilities
- urnietfparamsscimschemasoracleidcsextensiondb_credentials_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb Credentials User] 
- The database credentials user extension.
- urnietfparamsscimschemasoracleidcsextensiondb_user_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User] 
- DB User extension
- urnietfparamsscimschemasoracleidcsextensionkerberos_user_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User] 
- Kerberos User extension
- urnietfparamsscimschemasoracleidcsextensionmfa_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User] 
- This extension defines attributes used to manage Multi-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionpassword_state_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User] 
- This extension defines attributes used to manage account passwords within a Service Provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionpasswordless_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User] 
- This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionposix_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionposix User] 
- POSIX User extension
- urnietfparamsscimschemasoracleidcsextensionsecurity_questions_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User] 
- This extension defines the attributes used to store the security questions of a user.
- urnietfparamsscimschemasoracleidcsextensionself_change_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Change User] 
- Controls whether a user can update themselves or not via User related APIs
- urnietfparamsscimschemasoracleidcsextensionself_registration_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User] 
- This extension defines attributes used to manage self registration profile linked to the user.
- urnietfparamsscimschemasoracleidcsextensionsff_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsff User] 
- SFF Auth Keys User extension
- 
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsocial Account User] 
- Social User extension
- urnietfparamsscimschemasoracleidcsextensionterms_of_ Sequence[Getuse_ users Domains Users User Urnietfparamsscimschemasoracleidcsextensionterms Of Use User] 
- Terms Of Use extension
- urnietfparamsscimschemasoracleidcsextensionuser_credentials_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User] 
- User's credentials
- urnietfparamsscimschemasoracleidcsextensionuser_state_ Sequence[Getusers Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User] 
- This extension defines the attributes used to manage account passwords within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionuser_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User] 
- Oracle Identity Cloud Service User
- user_name str
- User name
- user_type str
- Used to identify the organization-to-user relationship
- x509certificates
Sequence[GetDomains Users User X509certificate] 
- A list of certificates issued to the User.
- active Boolean
- Status of the account
- addresses List<Property Map>
- A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartmentOcid String
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- deleteIn BooleanProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- description String
- Description of the user
- displayName String
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- domainOcid String
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- emails List<Property Map>
- A complex attribute representing emails
- entitlements List<Property Map>
- A list of entitlements for the User that represent a thing the User has.
- externalId String
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- forceDelete Boolean
- groups List<Property Map>
- A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- 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.
- idcsCreated List<Property Map>Bies 
- The User or App who created the Resource
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast List<Property Map>Modified Bies 
- The User or App who modified the Resource
- idcsLast StringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsPrevented List<String>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- ims List<Property Map>
- User's instant messaging addresses
- locale String
- Used to indicate the User's default location for purposes of localizing items such as currency, date and time format, numerical representations, and so on.
- metas List<Property Map>
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- names List<Property Map>
- Name of the account assigned to the User.
- nickName String
- Nick name
- ocid String
- The OCID of the user's support account.
- password String
- Password attribute. Max length for password is controlled via Password Policy.
- phoneNumbers List<Property Map>
- Phone numbers
- photos List<Property Map>
- URLs of photos for the User
- preferredLanguage String
- User's preferred written or spoken language used for localized user interfaces
- profileUrl String
- A fully-qualified URL to a page representing the User's online profile
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- roles List<Property Map>
- A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
- schemas List<String>
- REQUIRED. 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. This specification defines URIs for User, Group, and a standard "enterprise" extension. 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.
- List<Property Map>
- A list of tags on this resource.
- tenancyOcid String
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- timezone String
- User's timezone
- title String
- Title
- urnietfparamsscimschemasextensionenterprise20users List<Property Map>
- Enterprise User
- List<Property Map>
- Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensionadaptiveUsers List<Property Map>
- This extension defines attributes to manage user's risk score.
- urnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers List<Property Map>
- User's Capabilities
- urnietfparamsscimschemasoracleidcsextensiondbCredentials List<Property Map>Users 
- The database credentials user extension.
- urnietfparamsscimschemasoracleidcsextensiondbUser List<Property Map>Users 
- DB User extension
- urnietfparamsscimschemasoracleidcsextensionkerberosUser List<Property Map>Users 
- Kerberos User extension
- urnietfparamsscimschemasoracleidcsextensionmfaUsers List<Property Map>
- This extension defines attributes used to manage Multi-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionpasswordState List<Property Map>Users 
- This extension defines attributes used to manage account passwords within a Service Provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionpasswordlessUsers List<Property Map>
- This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.
- urnietfparamsscimschemasoracleidcsextensionposixUsers List<Property Map>
- POSIX User extension
- urnietfparamsscimschemasoracleidcsextensionsecurityQuestions List<Property Map>Users 
- This extension defines the attributes used to store the security questions of a user.
- urnietfparamsscimschemasoracleidcsextensionselfChange List<Property Map>Users 
- Controls whether a user can update themselves or not via User related APIs
- urnietfparamsscimschemasoracleidcsextensionselfRegistration List<Property Map>Users 
- This extension defines attributes used to manage self registration profile linked to the user.
- urnietfparamsscimschemasoracleidcsextensionsffUsers List<Property Map>
- SFF Auth Keys User extension
- List<Property Map>
- Social User extension
- urnietfparamsscimschemasoracleidcsextensiontermsOf List<Property Map>Use Users 
- Terms Of Use extension
- urnietfparamsscimschemasoracleidcsextensionuserCredentials List<Property Map>Users 
- User's credentials
- urnietfparamsscimschemasoracleidcsextensionuserState List<Property Map>Users 
- This extension defines the attributes used to manage account passwords within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use passwords.
- urnietfparamsscimschemasoracleidcsextensionuserUsers List<Property Map>
- Oracle Identity Cloud Service User
- userName String
- User name
- userType String
- Used to identify the organization-to-user relationship
- x509certificates List<Property Map>
- A list of certificates issued to the User.
GetDomainsUsersUserAddress    
- Country string
- The country name component.
- Formatted string
- Full name
- Locality string
- The city or locality component.
- PostalCode string
- The zipcode or postal code component.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Region string
- The state or region component.
- StreetAddress string
- The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
- Type string
- A label indicating the attribute's function.
- Country string
- The country name component.
- Formatted string
- Full name
- Locality string
- The city or locality component.
- PostalCode string
- The zipcode or postal code component.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Region string
- The state or region component.
- StreetAddress string
- The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
- Type string
- A label indicating the attribute's function.
- country String
- The country name component.
- formatted String
- Full name
- locality String
- The city or locality component.
- postalCode String
- The zipcode or postal code component.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- region String
- The state or region component.
- streetAddress String
- The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
- type String
- A label indicating the attribute's function.
- country string
- The country name component.
- formatted string
- Full name
- locality string
- The city or locality component.
- postalCode string
- The zipcode or postal code component.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- region string
- The state or region component.
- streetAddress string
- The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
- type string
- A label indicating the attribute's function.
- country str
- The country name component.
- formatted str
- Full name
- locality str
- The city or locality component.
- postal_code str
- The zipcode or postal code component.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- region str
- The state or region component.
- street_address str
- The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
- type str
- A label indicating the attribute's function.
- country String
- The country name component.
- formatted String
- Full name
- locality String
- The city or locality component.
- postalCode String
- The zipcode or postal code component.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- region String
- The state or region component.
- streetAddress String
- The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
- type String
- A label indicating the attribute's function.
GetDomainsUsersUserEmail    
- PendingVerification stringData 
- Pending e-mail address verification
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Secondary bool
- A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Verified bool
- A Boolean value that indicates if the phone number is verified.
- PendingVerification stringData 
- Pending e-mail address verification
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Secondary bool
- A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Verified bool
- A Boolean value that indicates if the phone number is verified.
- pendingVerification StringData 
- Pending e-mail address verification
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- secondary Boolean
- A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- verified Boolean
- A Boolean value that indicates if the phone number is verified.
- pendingVerification stringData 
- Pending e-mail address verification
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- secondary boolean
- A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- verified boolean
- A Boolean value that indicates if the phone number is verified.
- pending_verification_ strdata 
- Pending e-mail address verification
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- secondary bool
- A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- verified bool
- A Boolean value that indicates if the phone number is verified.
- pendingVerification StringData 
- Pending e-mail address verification
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- secondary Boolean
- A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- verified Boolean
- A Boolean value that indicates if the phone number is verified.
GetDomainsUsersUserEntitlement    
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserGroup    
- DateAdded string
- Date when the member is Added to the group
- Display string
- A human readable name, primarily used for display purposes.
- ExternalId string
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- MembershipOcid string
- The membership OCID.
- NonUnique stringDisplay 
- A human readable name for Group as defined by the Service Consumer. READ-ONLY.
- Ocid string
- The OCID of the user's support account.
- Ref string
- User Token URI
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- DateAdded string
- Date when the member is Added to the group
- Display string
- A human readable name, primarily used for display purposes.
- ExternalId string
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- MembershipOcid string
- The membership OCID.
- NonUnique stringDisplay 
- A human readable name for Group as defined by the Service Consumer. READ-ONLY.
- Ocid string
- The OCID of the user's support account.
- Ref string
- User Token URI
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- dateAdded String
- Date when the member is Added to the group
- display String
- A human readable name, primarily used for display purposes.
- externalId String
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- membershipOcid String
- The membership OCID.
- nonUnique StringDisplay 
- A human readable name for Group as defined by the Service Consumer. READ-ONLY.
- ocid String
- The OCID of the user's support account.
- ref String
- User Token URI
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- dateAdded string
- Date when the member is Added to the group
- display string
- A human readable name, primarily used for display purposes.
- externalId string
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- membershipOcid string
- The membership OCID.
- nonUnique stringDisplay 
- A human readable name for Group as defined by the Service Consumer. READ-ONLY.
- ocid string
- The OCID of the user's support account.
- ref string
- User Token URI
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- date_added str
- Date when the member is Added to the group
- display str
- A human readable name, primarily used for display purposes.
- external_id str
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- membership_ocid str
- The membership OCID.
- non_unique_ strdisplay 
- A human readable name for Group as defined by the Service Consumer. READ-ONLY.
- ocid str
- The OCID of the user's support account.
- ref str
- User Token URI
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- dateAdded String
- Date when the member is Added to the group
- display String
- A human readable name, primarily used for display purposes.
- externalId String
- An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
- membershipOcid String
- The membership OCID.
- nonUnique StringDisplay 
- A human readable name for Group as defined by the Service Consumer. READ-ONLY.
- ocid String
- The OCID of the user's support account.
- ref String
- User Token URI
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserIdcsCreatedBy      
GetDomainsUsersUserIdcsLastModifiedBy       
GetDomainsUsersUserIm    
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserMeta    
- Created string
- The DateTime the Resource was added to the Service Provider
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- ResourceType string
- Name of the resource type of the resource--for example, Users or Groups
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- Created string
- The DateTime the Resource was added to the Service Provider
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- ResourceType string
- Name of the resource type of the resource--for example, Users or Groups
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
- The DateTime the Resource was added to the Service Provider
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resourceType String
- Name of the resource type of the resource--for example, Users or Groups
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created string
- The DateTime the Resource was added to the Service Provider
- lastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resourceType string
- Name of the resource type of the resource--for example, Users or Groups
- 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
- Name of the resource type of the resource--for example, Users or Groups
- version str
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
- The DateTime the Resource was added to the Service Provider
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resourceType String
- Name of the resource type of the resource--for example, Users or Groups
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
GetDomainsUsersUserName    
- FamilyName string
- Last name
- Formatted string
- Full name
- GivenName string
- First name
- HonorificPrefix string
- Prefix
- HonorificSuffix string
- Suffix
- MiddleName string
- Middle name
- FamilyName string
- Last name
- Formatted string
- Full name
- GivenName string
- First name
- HonorificPrefix string
- Prefix
- HonorificSuffix string
- Suffix
- MiddleName string
- Middle name
- familyName String
- Last name
- formatted String
- Full name
- givenName String
- First name
- honorificPrefix String
- Prefix
- honorificSuffix String
- Suffix
- middleName String
- Middle name
- familyName string
- Last name
- formatted string
- Full name
- givenName string
- First name
- honorificPrefix string
- Prefix
- honorificSuffix string
- Suffix
- middleName string
- Middle name
- family_name str
- Last name
- formatted str
- Full name
- given_name str
- First name
- honorific_prefix str
- Prefix
- honorific_suffix str
- Suffix
- middle_name str
- Middle name
- familyName String
- Last name
- formatted String
- Full name
- givenName String
- First name
- honorificPrefix String
- Prefix
- honorificSuffix String
- Suffix
- middleName String
- Middle name
GetDomainsUsersUserPhoneNumber     
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Verified bool
- A Boolean value that indicates if the phone number is verified.
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Verified bool
- A Boolean value that indicates if the phone number is verified.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- verified Boolean
- A Boolean value that indicates if the phone number is verified.
- display string
- A human readable name, primarily used for display purposes.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- verified boolean
- A Boolean value that indicates if the phone number is verified.
- display str
- A human readable name, primarily used for display purposes.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- verified bool
- A Boolean value that indicates if the phone number is verified.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- verified Boolean
- A Boolean value that indicates if the phone number is verified.
GetDomainsUsersUserPhoto    
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserRole    
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserTag    
GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user    
- CostCenter string
- Identifies the name of a cost center.
- Department string
- Identifies the name of a department.
- Division string
- Identifies the name of a division.
- EmployeeNumber string
- Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
- Managers
List<GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user Manager> 
- The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User.
- Organization string
- Identifies the name of an organization.
- CostCenter string
- Identifies the name of a cost center.
- Department string
- Identifies the name of a department.
- Division string
- Identifies the name of a division.
- EmployeeNumber string
- Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
- Managers
[]GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user Manager 
- The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User.
- Organization string
- Identifies the name of an organization.
- costCenter String
- Identifies the name of a cost center.
- department String
- Identifies the name of a department.
- division String
- Identifies the name of a division.
- employeeNumber String
- Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
- managers
List<GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user Manager> 
- The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User.
- organization String
- Identifies the name of an organization.
- costCenter string
- Identifies the name of a cost center.
- department string
- Identifies the name of a department.
- division string
- Identifies the name of a division.
- employeeNumber string
- Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
- managers
GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user Manager[] 
- The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User.
- organization string
- Identifies the name of an organization.
- cost_center str
- Identifies the name of a cost center.
- department str
- Identifies the name of a department.
- division str
- Identifies the name of a division.
- employee_number str
- Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
- managers
Sequence[GetDomains Users User Urnietfparamsscimschemasextensionenterprise20user Manager] 
- The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User.
- organization str
- Identifies the name of an organization.
- costCenter String
- Identifies the name of a cost center.
- department String
- Identifies the name of a department.
- division String
- Identifies the name of a division.
- employeeNumber String
- Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
- managers List<Property Map>
- The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User.
- organization String
- Identifies the name of an organization.
GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager     
- DisplayName string
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- DisplayName string
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- displayName String
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
- displayName string
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- ref string
- User Token URI
- value string
- The value of a X509 certificate.
- display_name str
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- ref str
- User Token URI
- value str
- The value of a X509 certificate.
- displayName String
- The displayName of the User's manager. OPTIONAL and READ-ONLY.
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag      
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Defined Tag> 
- Oracle Cloud Infrastructure Defined Tags
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Freeform Tag> 
- Oracle Cloud Infrastructure Freeform Tags
- string
- Oracle Cloud Infrastructure Tag slug
- 
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Defined Tag 
- Oracle Cloud Infrastructure Defined Tags
- 
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Freeform Tag 
- Oracle Cloud Infrastructure Freeform Tags
- string
- Oracle Cloud Infrastructure Tag slug
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Defined Tag> 
- Oracle Cloud Infrastructure Defined Tags
- 
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Freeform Tag> 
- Oracle Cloud Infrastructure Freeform Tags
- String
- Oracle Cloud Infrastructure Tag slug
- 
GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Defined Tag[] 
- Oracle Cloud Infrastructure Defined Tags
- 
GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Freeform Tag[] 
- Oracle Cloud Infrastructure Freeform Tags
- string
- Oracle Cloud Infrastructure Tag slug
- 
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Defined Tag] 
- Oracle Cloud Infrastructure Defined Tags
- 
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextension Oci Tag Freeform Tag] 
- Oracle Cloud Infrastructure Freeform Tags
- tag_slug str
- Oracle Cloud Infrastructure Tag slug
- List<Property Map>
- Oracle Cloud Infrastructure Defined Tags
- List<Property Map>
- Oracle Cloud Infrastructure Freeform Tags
- String
- Oracle Cloud Infrastructure Tag slug
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser     
- RiskLevel string
- Risk Level
- RiskScores List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User Risk Score> 
- The risk score pertaining to the user.
- RiskLevel string
- Risk Level
- RiskScores []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User Risk Score 
- The risk score pertaining to the user.
- riskLevel String
- Risk Level
- riskScores List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User Risk Score> 
- The risk score pertaining to the user.
- riskLevel string
- Risk Level
- riskScores GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User Risk Score[] 
- The risk score pertaining to the user.
- risk_level str
- Risk Level
- risk_scores Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionadaptive User Risk Score] 
- The risk score pertaining to the user.
- riskLevel String
- Risk Level
- riskScores List<Property Map>
- The risk score pertaining to the user.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore       
- LastUpdate stringTimestamp 
- Last update timestamp for the risk score
- Ref string
- User Token URI
- RiskLevel string
- Risk Level
- Score int
- Risk Score value
- Source string
- Risk Provider Profile Source
- Status string
- A supplemental status indicating the reason why a user is disabled
- Value string
- The value of a X509 certificate.
- LastUpdate stringTimestamp 
- Last update timestamp for the risk score
- Ref string
- User Token URI
- RiskLevel string
- Risk Level
- Score int
- Risk Score value
- Source string
- Risk Provider Profile Source
- Status string
- A supplemental status indicating the reason why a user is disabled
- Value string
- The value of a X509 certificate.
- lastUpdate StringTimestamp 
- Last update timestamp for the risk score
- ref String
- User Token URI
- riskLevel String
- Risk Level
- score Integer
- Risk Score value
- source String
- Risk Provider Profile Source
- status String
- A supplemental status indicating the reason why a user is disabled
- value String
- The value of a X509 certificate.
- lastUpdate stringTimestamp 
- Last update timestamp for the risk score
- ref string
- User Token URI
- riskLevel string
- Risk Level
- score number
- Risk Score value
- source string
- Risk Provider Profile Source
- status string
- A supplemental status indicating the reason why a user is disabled
- value string
- The value of a X509 certificate.
- last_update_ strtimestamp 
- Last update timestamp for the risk score
- ref str
- User Token URI
- risk_level str
- Risk Level
- score int
- Risk Score value
- source str
- Risk Provider Profile Source
- status str
- A supplemental status indicating the reason why a user is disabled
- value str
- The value of a X509 certificate.
- lastUpdate StringTimestamp 
- Last update timestamp for the risk score
- ref String
- User Token URI
- riskLevel String
- Risk Level
- score Number
- Risk Score value
- source String
- Risk Provider Profile Source
- status String
- A supplemental status indicating the reason why a user is disabled
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser     
- CanUse boolApi Keys 
- Indicates whether a user can use API keys.
- CanUse boolAuth Tokens 
- Indicates whether a user can use Auth tokens.
- CanUse boolConsole 
- Specifies whether user can access the Console.
- CanUse boolConsole Password 
- Indicates whether a user can use Console passwords.
- CanUse boolCustomer Secret Keys 
- Indicates whether a user can use customer secret keys.
- CanUse boolDb Credentials 
- Indicates whether a user can use database credentials.
- CanUse boolOauth2client Credentials 
- Indicates whether a user can use OAuth2 client credentials.
- CanUse boolSmtp Credentials 
- Indicates whether a user can use SMTP credentials.
- CanUse boolApi Keys 
- Indicates whether a user can use API keys.
- CanUse boolAuth Tokens 
- Indicates whether a user can use Auth tokens.
- CanUse boolConsole 
- Specifies whether user can access the Console.
- CanUse boolConsole Password 
- Indicates whether a user can use Console passwords.
- CanUse boolCustomer Secret Keys 
- Indicates whether a user can use customer secret keys.
- CanUse boolDb Credentials 
- Indicates whether a user can use database credentials.
- CanUse boolOauth2client Credentials 
- Indicates whether a user can use OAuth2 client credentials.
- CanUse boolSmtp Credentials 
- Indicates whether a user can use SMTP credentials.
- canUse BooleanApi Keys 
- Indicates whether a user can use API keys.
- canUse BooleanAuth Tokens 
- Indicates whether a user can use Auth tokens.
- canUse BooleanConsole 
- Specifies whether user can access the Console.
- canUse BooleanConsole Password 
- Indicates whether a user can use Console passwords.
- canUse BooleanCustomer Secret Keys 
- Indicates whether a user can use customer secret keys.
- canUse BooleanDb Credentials 
- Indicates whether a user can use database credentials.
- canUse BooleanOauth2client Credentials 
- Indicates whether a user can use OAuth2 client credentials.
- canUse BooleanSmtp Credentials 
- Indicates whether a user can use SMTP credentials.
- canUse booleanApi Keys 
- Indicates whether a user can use API keys.
- canUse booleanAuth Tokens 
- Indicates whether a user can use Auth tokens.
- canUse booleanConsole 
- Specifies whether user can access the Console.
- canUse booleanConsole Password 
- Indicates whether a user can use Console passwords.
- canUse booleanCustomer Secret Keys 
- Indicates whether a user can use customer secret keys.
- canUse booleanDb Credentials 
- Indicates whether a user can use database credentials.
- canUse booleanOauth2client Credentials 
- Indicates whether a user can use OAuth2 client credentials.
- canUse booleanSmtp Credentials 
- Indicates whether a user can use SMTP credentials.
- can_use_ boolapi_ keys 
- Indicates whether a user can use API keys.
- can_use_ boolauth_ tokens 
- Indicates whether a user can use Auth tokens.
- can_use_ boolconsole 
- Specifies whether user can access the Console.
- can_use_ boolconsole_ password 
- Indicates whether a user can use Console passwords.
- can_use_ boolcustomer_ secret_ keys 
- Indicates whether a user can use customer secret keys.
- can_use_ booldb_ credentials 
- Indicates whether a user can use database credentials.
- can_use_ booloauth2client_ credentials 
- Indicates whether a user can use OAuth2 client credentials.
- can_use_ boolsmtp_ credentials 
- Indicates whether a user can use SMTP credentials.
- canUse BooleanApi Keys 
- Indicates whether a user can use API keys.
- canUse BooleanAuth Tokens 
- Indicates whether a user can use Auth tokens.
- canUse BooleanConsole 
- Specifies whether user can access the Console.
- canUse BooleanConsole Password 
- Indicates whether a user can use Console passwords.
- canUse BooleanCustomer Secret Keys 
- Indicates whether a user can use customer secret keys.
- canUse BooleanDb Credentials 
- Indicates whether a user can use database credentials.
- canUse BooleanOauth2client Credentials 
- Indicates whether a user can use OAuth2 client credentials.
- canUse BooleanSmtp Credentials 
- Indicates whether a user can use SMTP credentials.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser      
- DbLogin intAttempts 
- The number of failed login attempts. The value is reset to 0 after a successful login.
- DbUser stringName 
- The database username.
- DbLogin intAttempts 
- The number of failed login attempts. The value is reset to 0 after a successful login.
- DbUser stringName 
- The database username.
- dbLogin IntegerAttempts 
- The number of failed login attempts. The value is reset to 0 after a successful login.
- dbUser StringName 
- The database username.
- dbLogin numberAttempts 
- The number of failed login attempts. The value is reset to 0 after a successful login.
- dbUser stringName 
- The database username.
- db_login_ intattempts 
- The number of failed login attempts. The value is reset to 0 after a successful login.
- db_user_ strname 
- The database username.
- dbLogin NumberAttempts 
- The number of failed login attempts. The value is reset to 0 after a successful login.
- dbUser StringName 
- The database username.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser      
- DbGlobal List<string>Roles 
- DB global roles to which the user is granted access.
- DomainLevel stringSchema 
- DB domain level schema to which the user is granted access.
- InstanceLevel stringSchema 
- DB instance level schema to which the user is granted access.
- IsDb boolUser 
- If true, indicates this is a database user.
- PasswordVerifiers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User Password Verifier> 
- Password Verifiers for DB User.
- DbGlobal []stringRoles 
- DB global roles to which the user is granted access.
- DomainLevel stringSchema 
- DB domain level schema to which the user is granted access.
- InstanceLevel stringSchema 
- DB instance level schema to which the user is granted access.
- IsDb boolUser 
- If true, indicates this is a database user.
- PasswordVerifiers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User Password Verifier 
- Password Verifiers for DB User.
- dbGlobal List<String>Roles 
- DB global roles to which the user is granted access.
- domainLevel StringSchema 
- DB domain level schema to which the user is granted access.
- instanceLevel StringSchema 
- DB instance level schema to which the user is granted access.
- isDb BooleanUser 
- If true, indicates this is a database user.
- passwordVerifiers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User Password Verifier> 
- Password Verifiers for DB User.
- dbGlobal string[]Roles 
- DB global roles to which the user is granted access.
- domainLevel stringSchema 
- DB domain level schema to which the user is granted access.
- instanceLevel stringSchema 
- DB instance level schema to which the user is granted access.
- isDb booleanUser 
- If true, indicates this is a database user.
- passwordVerifiers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User Password Verifier[] 
- Password Verifiers for DB User.
- db_global_ Sequence[str]roles 
- DB global roles to which the user is granted access.
- domain_level_ strschema 
- DB domain level schema to which the user is granted access.
- instance_level_ strschema 
- DB instance level schema to which the user is granted access.
- is_db_ booluser 
- If true, indicates this is a database user.
- password_verifiers Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensiondb User User Password Verifier] 
- Password Verifiers for DB User.
- dbGlobal List<String>Roles 
- DB global roles to which the user is granted access.
- domainLevel StringSchema 
- DB domain level schema to which the user is granted access.
- instanceLevel StringSchema 
- DB instance level schema to which the user is granted access.
- isDb BooleanUser 
- If true, indicates this is a database user.
- passwordVerifiers List<Property Map>
- Password Verifiers for DB User.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser      
- RealmUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User Realm User> 
- A list of kerberos realm users for an Oracle Identity Cloud Service User
- RealmUsers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User Realm User 
- A list of kerberos realm users for an Oracle Identity Cloud Service User
- realmUsers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User Realm User> 
- A list of kerberos realm users for an Oracle Identity Cloud Service User
- realmUsers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User Realm User[] 
- A list of kerberos realm users for an Oracle Identity Cloud Service User
- realm_users Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionkerberos User User Realm User] 
- A list of kerberos realm users for an Oracle Identity Cloud Service User
- realmUsers List<Property Map>
- A list of kerberos realm users for an Oracle Identity Cloud Service User
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser        
- PrincipalName string
- Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- RealmName string
- Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- PrincipalName string
- Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- RealmName string
- Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- principalName String
- Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- realmName String
- Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
- principalName string
- Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- realmName string
- Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- ref string
- User Token URI
- value string
- The value of a X509 certificate.
- principal_name str
- Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- realm_name str
- Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- ref str
- User Token URI
- value str
- The value of a X509 certificate.
- principalName String
- Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- realmName String
- Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser     
- BypassCodes List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Bypass Code> 
- A list of bypass codes that belongs to the user.
- Devices
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Device> 
- A list of devices enrolled by the user.
- LoginAttempts int
- The number of failed login attempts. The value is reset to 0 after a successful login.
- MfaEnabled stringOn 
- The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
- MfaIgnored List<string>Apps 
- User MFA Ignored Apps Identifiers
- MfaStatus string
- The user opted for MFA.
- PreferredAuthentication stringFactor 
- The preferred authentication factor type.
- PreferredAuthentication stringMethod 
- The preferred authentication method.
- PreferredDevices List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Preferred Device> 
- The user's preferred device.
- PreferredThird stringParty Vendor 
- The preferred third-party vendor name.
- TrustedUser List<GetAgents Domains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Trusted User Agent> 
- A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way.
- BypassCodes []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Bypass Code 
- A list of bypass codes that belongs to the user.
- Devices
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Device 
- A list of devices enrolled by the user.
- LoginAttempts int
- The number of failed login attempts. The value is reset to 0 after a successful login.
- MfaEnabled stringOn 
- The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
- MfaIgnored []stringApps 
- User MFA Ignored Apps Identifiers
- MfaStatus string
- The user opted for MFA.
- PreferredAuthentication stringFactor 
- The preferred authentication factor type.
- PreferredAuthentication stringMethod 
- The preferred authentication method.
- PreferredDevices []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Preferred Device 
- The user's preferred device.
- PreferredThird stringParty Vendor 
- The preferred third-party vendor name.
- TrustedUser []GetAgents Domains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Trusted User Agent 
- A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way.
- bypassCodes List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Bypass Code> 
- A list of bypass codes that belongs to the user.
- devices
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Device> 
- A list of devices enrolled by the user.
- loginAttempts Integer
- The number of failed login attempts. The value is reset to 0 after a successful login.
- mfaEnabled StringOn 
- The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
- mfaIgnored List<String>Apps 
- User MFA Ignored Apps Identifiers
- mfaStatus String
- The user opted for MFA.
- preferredAuthentication StringFactor 
- The preferred authentication factor type.
- preferredAuthentication StringMethod 
- The preferred authentication method.
- preferredDevices List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Preferred Device> 
- The user's preferred device.
- preferredThird StringParty Vendor 
- The preferred third-party vendor name.
- trustedUser List<GetAgents Domains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Trusted User Agent> 
- A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way.
- bypassCodes GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Bypass Code[] 
- A list of bypass codes that belongs to the user.
- devices
GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Device[] 
- A list of devices enrolled by the user.
- loginAttempts number
- The number of failed login attempts. The value is reset to 0 after a successful login.
- mfaEnabled stringOn 
- The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
- mfaIgnored string[]Apps 
- User MFA Ignored Apps Identifiers
- mfaStatus string
- The user opted for MFA.
- preferredAuthentication stringFactor 
- The preferred authentication factor type.
- preferredAuthentication stringMethod 
- The preferred authentication method.
- preferredDevices GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Preferred Device[] 
- The user's preferred device.
- preferredThird stringParty Vendor 
- The preferred third-party vendor name.
- trustedUser GetAgents Domains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Trusted User Agent[] 
- A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way.
- bypass_codes Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Bypass Code] 
- A list of bypass codes that belongs to the user.
- devices
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Device] 
- A list of devices enrolled by the user.
- login_attempts int
- The number of failed login attempts. The value is reset to 0 after a successful login.
- mfa_enabled_ stron 
- The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
- mfa_ignored_ Sequence[str]apps 
- User MFA Ignored Apps Identifiers
- mfa_status str
- The user opted for MFA.
- preferred_authentication_ strfactor 
- The preferred authentication factor type.
- preferred_authentication_ strmethod 
- The preferred authentication method.
- preferred_devices Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Preferred Device] 
- The user's preferred device.
- preferred_third_ strparty_ vendor 
- The preferred third-party vendor name.
- trusted_user_ Sequence[Getagents Domains Users User Urnietfparamsscimschemasoracleidcsextensionmfa User Trusted User Agent] 
- A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way.
- bypassCodes List<Property Map>
- A list of bypass codes that belongs to the user.
- devices List<Property Map>
- A list of devices enrolled by the user.
- loginAttempts Number
- The number of failed login attempts. The value is reset to 0 after a successful login.
- mfaEnabled StringOn 
- The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
- mfaIgnored List<String>Apps 
- User MFA Ignored Apps Identifiers
- mfaStatus String
- The user opted for MFA.
- preferredAuthentication StringFactor 
- The preferred authentication factor type.
- preferredAuthentication StringMethod 
- The preferred authentication method.
- preferredDevices List<Property Map>
- The user's preferred device.
- preferredThird StringParty Vendor 
- The preferred third-party vendor name.
- trustedUser List<Property Map>Agents 
- A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserBypassCode       
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice      
- AuthenticationMethod string
- The authentication method.
- Display string
- A human readable name, primarily used for display purposes.
- FactorStatus string
- The device authentication factor status.
- FactorType string
- Authentication Factor Type
- LastSync stringTime 
- The last sync time for device.
- Ref string
- User Token URI
- Status string
- A supplemental status indicating the reason why a user is disabled
- ThirdParty stringVendor Name 
- The third-party factor vendor name.
- Value string
- The value of a X509 certificate.
- AuthenticationMethod string
- The authentication method.
- Display string
- A human readable name, primarily used for display purposes.
- FactorStatus string
- The device authentication factor status.
- FactorType string
- Authentication Factor Type
- LastSync stringTime 
- The last sync time for device.
- Ref string
- User Token URI
- Status string
- A supplemental status indicating the reason why a user is disabled
- ThirdParty stringVendor Name 
- The third-party factor vendor name.
- Value string
- The value of a X509 certificate.
- authenticationMethod String
- The authentication method.
- display String
- A human readable name, primarily used for display purposes.
- factorStatus String
- The device authentication factor status.
- factorType String
- Authentication Factor Type
- lastSync StringTime 
- The last sync time for device.
- ref String
- User Token URI
- status String
- A supplemental status indicating the reason why a user is disabled
- thirdParty StringVendor Name 
- The third-party factor vendor name.
- value String
- The value of a X509 certificate.
- authenticationMethod string
- The authentication method.
- display string
- A human readable name, primarily used for display purposes.
- factorStatus string
- The device authentication factor status.
- factorType string
- Authentication Factor Type
- lastSync stringTime 
- The last sync time for device.
- ref string
- User Token URI
- status string
- A supplemental status indicating the reason why a user is disabled
- thirdParty stringVendor Name 
- The third-party factor vendor name.
- value string
- The value of a X509 certificate.
- authentication_method str
- The authentication method.
- display str
- A human readable name, primarily used for display purposes.
- factor_status str
- The device authentication factor status.
- factor_type str
- Authentication Factor Type
- last_sync_ strtime 
- The last sync time for device.
- ref str
- User Token URI
- status str
- A supplemental status indicating the reason why a user is disabled
- third_party_ strvendor_ name 
- The third-party factor vendor name.
- value str
- The value of a X509 certificate.
- authenticationMethod String
- The authentication method.
- display String
- A human readable name, primarily used for display purposes.
- factorStatus String
- The device authentication factor status.
- factorType String
- Authentication Factor Type
- lastSync StringTime 
- The last sync time for device.
- ref String
- User Token URI
- status String
- A supplemental status indicating the reason why a user is disabled
- thirdParty StringVendor Name 
- The third-party factor vendor name.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice       
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser      
- ApplicablePassword List<GetPolicies Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User Applicable Password Policy> 
- Applicable Password Policy
- CantChange bool
- Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
- CantExpire bool
- Indicates that the password expiry policy will not be applied for the current Resource
- Expired bool
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- LastFailed stringValidation Date 
- A DateTime that specifies the date and time when last failed password validation was set
- LastSuccessful stringSet Date 
- A DateTime that specifies the date and time when the current password was set
- LastSuccessful stringValidation Date 
- A DateTime that specifies the date and time when last successful password validation was set
- MustChange bool
- Indicates that the subject password value MUST change on next login. If not changed, typically the account is locked. The value may be set indirectly when the subject's current password expires or directly set by an administrator.
- ApplicablePassword []GetPolicies Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User Applicable Password Policy 
- Applicable Password Policy
- CantChange bool
- Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
- CantExpire bool
- Indicates that the password expiry policy will not be applied for the current Resource
- Expired bool
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- LastFailed stringValidation Date 
- A DateTime that specifies the date and time when last failed password validation was set
- LastSuccessful stringSet Date 
- A DateTime that specifies the date and time when the current password was set
- LastSuccessful stringValidation Date 
- A DateTime that specifies the date and time when last successful password validation was set
- MustChange bool
- Indicates that the subject password value MUST change on next login. If not changed, typically the account is locked. The value may be set indirectly when the subject's current password expires or directly set by an administrator.
- applicablePassword List<GetPolicies Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User Applicable Password Policy> 
- Applicable Password Policy
- cantChange Boolean
- Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
- cantExpire Boolean
- Indicates that the password expiry policy will not be applied for the current Resource
- expired Boolean
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lastFailed StringValidation Date 
- A DateTime that specifies the date and time when last failed password validation was set
- lastSuccessful StringSet Date 
- A DateTime that specifies the date and time when the current password was set
- lastSuccessful StringValidation Date 
- A DateTime that specifies the date and time when last successful password validation was set
- mustChange Boolean
- Indicates that the subject password value MUST change on next login. If not changed, typically the account is locked. The value may be set indirectly when the subject's current password expires or directly set by an administrator.
- applicablePassword GetPolicies Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User Applicable Password Policy[] 
- Applicable Password Policy
- cantChange boolean
- Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
- cantExpire boolean
- Indicates that the password expiry policy will not be applied for the current Resource
- expired boolean
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lastFailed stringValidation Date 
- A DateTime that specifies the date and time when last failed password validation was set
- lastSuccessful stringSet Date 
- A DateTime that specifies the date and time when the current password was set
- lastSuccessful stringValidation Date 
- A DateTime that specifies the date and time when last successful password validation was set
- mustChange boolean
- Indicates that the subject password value MUST change on next login. If not changed, typically the account is locked. The value may be set indirectly when the subject's current password expires or directly set by an administrator.
- applicable_password_ Sequence[Getpolicies Domains Users User Urnietfparamsscimschemasoracleidcsextensionpassword State User Applicable Password Policy] 
- Applicable Password Policy
- cant_change bool
- Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
- cant_expire bool
- Indicates that the password expiry policy will not be applied for the current Resource
- expired bool
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- last_failed_ strvalidation_ date 
- A DateTime that specifies the date and time when last failed password validation was set
- last_successful_ strset_ date 
- A DateTime that specifies the date and time when the current password was set
- last_successful_ strvalidation_ date 
- A DateTime that specifies the date and time when last successful password validation was set
- must_change bool
- Indicates that the subject password value MUST change on next login. If not changed, typically the account is locked. The value may be set indirectly when the subject's current password expires or directly set by an administrator.
- applicablePassword List<Property Map>Policies 
- Applicable Password Policy
- cantChange Boolean
- Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
- cantExpire Boolean
- Indicates that the password expiry policy will not be applied for the current Resource
- expired Boolean
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lastFailed StringValidation Date 
- A DateTime that specifies the date and time when last failed password validation was set
- lastSuccessful StringSet Date 
- A DateTime that specifies the date and time when the current password was set
- lastSuccessful StringValidation Date 
- A DateTime that specifies the date and time when last successful password validation was set
- mustChange Boolean
- Indicates that the subject password value MUST change on next login. If not changed, typically the account is locked. The value may be set indirectly when the subject's current password expires or directly set by an administrator.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUserApplicablePasswordPolicy         
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser     
- FactorIdentifiers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User Factor Identifier> 
- Factor Identifier ID
- FactorMethod string
- Authentication Factor Method
- FactorType string
- Authentication Factor Type
- FactorIdentifiers []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User Factor Identifier 
- Factor Identifier ID
- FactorMethod string
- Authentication Factor Method
- FactorType string
- Authentication Factor Type
- factorIdentifiers List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User Factor Identifier> 
- Factor Identifier ID
- factorMethod String
- Authentication Factor Method
- factorType String
- Authentication Factor Type
- factorIdentifiers GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User Factor Identifier[] 
- Factor Identifier ID
- factorMethod string
- Authentication Factor Method
- factorType string
- Authentication Factor Type
- factor_identifiers Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionpasswordless User Factor Identifier] 
- Factor Identifier ID
- factor_method str
- Authentication Factor Method
- factor_type str
- Authentication Factor Type
- factorIdentifiers List<Property Map>
- Factor Identifier ID
- factorMethod String
- Authentication Factor Method
- factorType String
- Authentication Factor Type
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier       
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser     
- Gecos string
- General information about the POSIX account such as their real name and phone number
- GidNumber int
- Primary Group identifier of the POSIX user
- HomeDirectory string
- The absolute path to the home directory of the POSIX account
- LoginShell string
- The path to the login shell of the POSIX account
- UidNumber int
- Integer uniquely identifying a user in a POSIX administrative domain
- Gecos string
- General information about the POSIX account such as their real name and phone number
- GidNumber int
- Primary Group identifier of the POSIX user
- HomeDirectory string
- The absolute path to the home directory of the POSIX account
- LoginShell string
- The path to the login shell of the POSIX account
- UidNumber int
- Integer uniquely identifying a user in a POSIX administrative domain
- gecos String
- General information about the POSIX account such as their real name and phone number
- gidNumber Integer
- Primary Group identifier of the POSIX user
- homeDirectory String
- The absolute path to the home directory of the POSIX account
- loginShell String
- The path to the login shell of the POSIX account
- uidNumber Integer
- Integer uniquely identifying a user in a POSIX administrative domain
- gecos string
- General information about the POSIX account such as their real name and phone number
- gidNumber number
- Primary Group identifier of the POSIX user
- homeDirectory string
- The absolute path to the home directory of the POSIX account
- loginShell string
- The path to the login shell of the POSIX account
- uidNumber number
- Integer uniquely identifying a user in a POSIX administrative domain
- gecos str
- General information about the POSIX account such as their real name and phone number
- gid_number int
- Primary Group identifier of the POSIX user
- home_directory str
- The absolute path to the home directory of the POSIX account
- login_shell str
- The path to the login shell of the POSIX account
- uid_number int
- Integer uniquely identifying a user in a POSIX administrative domain
- gecos String
- General information about the POSIX account such as their real name and phone number
- gidNumber Number
- Primary Group identifier of the POSIX user
- homeDirectory String
- The absolute path to the home directory of the POSIX account
- loginShell String
- The path to the login shell of the POSIX account
- uidNumber Number
- Integer uniquely identifying a user in a POSIX administrative domain
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser      
- SecQuestions List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User Sec Question> 
- The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
- SecQuestions []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User Sec Question 
- The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
- secQuestions List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User Sec Question> 
- The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
- secQuestions GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User Sec Question[] 
- The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
- sec_questions Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionsecurity Questions User Sec Question] 
- The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
- secQuestions List<Property Map>
- The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUserSecQuestion        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser      
- AllowSelf boolChange 
- If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- AllowSelf boolChange 
- If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allowSelf BooleanChange 
- If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allowSelf booleanChange 
- If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allow_self_ boolchange 
- If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allowSelf BooleanChange 
- If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser      
- ConsentGranted bool
- A boolean value that indicates whether the consent is granted.
- SelfRegistration List<GetProfiles Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User Self Registration Profile> 
- Self registration profile used when user is self registered.
- UserToken string
- User token returned if userFlowControlledByExternalClient is true
- ConsentGranted bool
- A boolean value that indicates whether the consent is granted.
- SelfRegistration []GetProfiles Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User Self Registration Profile 
- Self registration profile used when user is self registered.
- UserToken string
- User token returned if userFlowControlledByExternalClient is true
- consentGranted Boolean
- A boolean value that indicates whether the consent is granted.
- selfRegistration List<GetProfiles Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User Self Registration Profile> 
- Self registration profile used when user is self registered.
- userToken String
- User token returned if userFlowControlledByExternalClient is true
- consentGranted boolean
- A boolean value that indicates whether the consent is granted.
- selfRegistration GetProfiles Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User Self Registration Profile[] 
- Self registration profile used when user is self registered.
- userToken string
- User token returned if userFlowControlledByExternalClient is true
- consent_granted bool
- A boolean value that indicates whether the consent is granted.
- self_registration_ Sequence[Getprofiles Domains Users User Urnietfparamsscimschemasoracleidcsextensionself Registration User Self Registration Profile] 
- Self registration profile used when user is self registered.
- user_token str
- User token returned if userFlowControlledByExternalClient is true
- consentGranted Boolean
- A boolean value that indicates whether the consent is granted.
- selfRegistration List<Property Map>Profiles 
- Self registration profile used when user is self registered.
- userToken String
- User token returned if userFlowControlledByExternalClient is true
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile         
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser     
- SffAuth stringKeys 
- SFF auth keys clob
- SffAuth stringKeys 
- SFF auth keys clob
- sffAuth StringKeys 
- SFF auth keys clob
- sffAuth stringKeys 
- SFF auth keys clob
- sff_auth_ strkeys 
- SFF auth keys clob
- sffAuth StringKeys 
- SFF auth keys clob
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser      
- List<Property Map>
- Description:
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUserSocialAccount        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser       
- termsOf List<Property Map>Use Consents 
- Description:
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUserTermsOfUseConsent           
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser      
- ApiKeys List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Api Key> 
- A list of API keys corresponding to user.
- AuthTokens List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Auth Token> 
- A list of Auth tokens corresponding to user.
- CustomerSecret List<GetKeys Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Customer Secret Key> 
- A list of customer secret keys corresponding to user.
- DbCredentials List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Db Credential> 
- A list of database credentials corresponding to user.
- OAuth2clientCredentials List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User OAuth2client Credential> 
- A list of OAuth2 client credentials corresponding to a user.
- SmtpCredentials List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Smtp Credential> 
- A list of SMTP credentials corresponding to user.
- ApiKeys []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Api Key 
- A list of API keys corresponding to user.
- AuthTokens []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Auth Token 
- A list of Auth tokens corresponding to user.
- CustomerSecret []GetKeys Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Customer Secret Key 
- A list of customer secret keys corresponding to user.
- DbCredentials []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Db Credential 
- A list of database credentials corresponding to user.
- OAuth2clientCredentials []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User OAuth2client Credential 
- A list of OAuth2 client credentials corresponding to a user.
- SmtpCredentials []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Smtp Credential 
- A list of SMTP credentials corresponding to user.
- apiKeys List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Api Key> 
- A list of API keys corresponding to user.
- authTokens List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Auth Token> 
- A list of Auth tokens corresponding to user.
- customerSecret List<GetKeys Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Customer Secret Key> 
- A list of customer secret keys corresponding to user.
- dbCredentials List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Db Credential> 
- A list of database credentials corresponding to user.
- oAuth2client List<GetCredentials Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User OAuth2client Credential> 
- A list of OAuth2 client credentials corresponding to a user.
- smtpCredentials List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Smtp Credential> 
- A list of SMTP credentials corresponding to user.
- apiKeys GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Api Key[] 
- A list of API keys corresponding to user.
- authTokens GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Auth Token[] 
- A list of Auth tokens corresponding to user.
- customerSecret GetKeys Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Customer Secret Key[] 
- A list of customer secret keys corresponding to user.
- dbCredentials GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Db Credential[] 
- A list of database credentials corresponding to user.
- oAuth2client GetCredentials Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User OAuth2client Credential[] 
- A list of OAuth2 client credentials corresponding to a user.
- smtpCredentials GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Smtp Credential[] 
- A list of SMTP credentials corresponding to user.
- api_keys Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Api Key] 
- A list of API keys corresponding to user.
- auth_tokens Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Auth Token] 
- A list of Auth tokens corresponding to user.
- customer_secret_ Sequence[Getkeys Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Customer Secret Key] 
- A list of customer secret keys corresponding to user.
- db_credentials Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Db Credential] 
- A list of database credentials corresponding to user.
- o_auth2client_ Sequence[Getcredentials Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User OAuth2client Credential] 
- A list of OAuth2 client credentials corresponding to a user.
- smtp_credentials Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser Credentials User Smtp Credential] 
- A list of SMTP credentials corresponding to user.
- apiKeys List<Property Map>
- A list of API keys corresponding to user.
- authTokens List<Property Map>
- A list of Auth tokens corresponding to user.
- customerSecret List<Property Map>Keys 
- A list of customer secret keys corresponding to user.
- dbCredentials List<Property Map>
- A list of database credentials corresponding to user.
- oAuth2client List<Property Map>Credentials 
- A list of OAuth2 client credentials corresponding to a user.
- smtpCredentials List<Property Map>
- A list of SMTP credentials corresponding to user.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey         
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser      
- LastFailed stringLogin Date 
- The last failed login date.
- LastSuccessful stringLogin Date 
- The last successful login date.
- Lockeds
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Locked> 
- A complex attribute that indicates an account is locked (blocking any new sessions).
- LoginAttempts int
- The number of failed login attempts. The value is reset to 0 after a successful login.
- MaxConcurrent intSessions 
- The maximum number of concurrent sessions for a user.
- PreviousSuccessful stringLogin Date 
- The previous successful login date.
- RecoveryAttempts int
- The number of failed recovery attempts. The value is reset to 0 after a successful login.
- RecoveryEnroll intAttempts 
- The number of failed account recovery enrollment attempts.
- RecoveryLockeds List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Recovery Locked> 
- A complex attribute that indicates a password recovery is locked (blocking any new sessions).
- LastFailed stringLogin Date 
- The last failed login date.
- LastSuccessful stringLogin Date 
- The last successful login date.
- Lockeds
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Locked 
- A complex attribute that indicates an account is locked (blocking any new sessions).
- LoginAttempts int
- The number of failed login attempts. The value is reset to 0 after a successful login.
- MaxConcurrent intSessions 
- The maximum number of concurrent sessions for a user.
- PreviousSuccessful stringLogin Date 
- The previous successful login date.
- RecoveryAttempts int
- The number of failed recovery attempts. The value is reset to 0 after a successful login.
- RecoveryEnroll intAttempts 
- The number of failed account recovery enrollment attempts.
- RecoveryLockeds []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Recovery Locked 
- A complex attribute that indicates a password recovery is locked (blocking any new sessions).
- lastFailed StringLogin Date 
- The last failed login date.
- lastSuccessful StringLogin Date 
- The last successful login date.
- lockeds
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Locked> 
- A complex attribute that indicates an account is locked (blocking any new sessions).
- loginAttempts Integer
- The number of failed login attempts. The value is reset to 0 after a successful login.
- maxConcurrent IntegerSessions 
- The maximum number of concurrent sessions for a user.
- previousSuccessful StringLogin Date 
- The previous successful login date.
- recoveryAttempts Integer
- The number of failed recovery attempts. The value is reset to 0 after a successful login.
- recoveryEnroll IntegerAttempts 
- The number of failed account recovery enrollment attempts.
- recoveryLockeds List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Recovery Locked> 
- A complex attribute that indicates a password recovery is locked (blocking any new sessions).
- lastFailed stringLogin Date 
- The last failed login date.
- lastSuccessful stringLogin Date 
- The last successful login date.
- lockeds
GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Locked[] 
- A complex attribute that indicates an account is locked (blocking any new sessions).
- loginAttempts number
- The number of failed login attempts. The value is reset to 0 after a successful login.
- maxConcurrent numberSessions 
- The maximum number of concurrent sessions for a user.
- previousSuccessful stringLogin Date 
- The previous successful login date.
- recoveryAttempts number
- The number of failed recovery attempts. The value is reset to 0 after a successful login.
- recoveryEnroll numberAttempts 
- The number of failed account recovery enrollment attempts.
- recoveryLockeds GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Recovery Locked[] 
- A complex attribute that indicates a password recovery is locked (blocking any new sessions).
- last_failed_ strlogin_ date 
- The last failed login date.
- last_successful_ strlogin_ date 
- The last successful login date.
- lockeds
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Locked] 
- A complex attribute that indicates an account is locked (blocking any new sessions).
- login_attempts int
- The number of failed login attempts. The value is reset to 0 after a successful login.
- max_concurrent_ intsessions 
- The maximum number of concurrent sessions for a user.
- previous_successful_ strlogin_ date 
- The previous successful login date.
- recovery_attempts int
- The number of failed recovery attempts. The value is reset to 0 after a successful login.
- recovery_enroll_ intattempts 
- The number of failed account recovery enrollment attempts.
- recovery_lockeds Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser State User Recovery Locked] 
- A complex attribute that indicates a password recovery is locked (blocking any new sessions).
- lastFailed StringLogin Date 
- The last failed login date.
- lastSuccessful StringLogin Date 
- The last successful login date.
- lockeds List<Property Map>
- A complex attribute that indicates an account is locked (blocking any new sessions).
- loginAttempts Number
- The number of failed login attempts. The value is reset to 0 after a successful login.
- maxConcurrent NumberSessions 
- The maximum number of concurrent sessions for a user.
- previousSuccessful StringLogin Date 
- The previous successful login date.
- recoveryAttempts Number
- The number of failed recovery attempts. The value is reset to 0 after a successful login.
- recoveryEnroll NumberAttempts 
- The number of failed account recovery enrollment attempts.
- recoveryLockeds List<Property Map>
- A complex attribute that indicates a password recovery is locked (blocking any new sessions).
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked       
- Expired bool
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- LockDate string
- The date and time that the current resource was locked.
- On bool
- Indicates that the recovery is locked.
- Reason int
- Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
- Expired bool
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- LockDate string
- The date and time that the current resource was locked.
- On bool
- Indicates that the recovery is locked.
- Reason int
- Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
- expired Boolean
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lockDate String
- The date and time that the current resource was locked.
- on Boolean
- Indicates that the recovery is locked.
- reason Integer
- Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
- expired boolean
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lockDate string
- The date and time that the current resource was locked.
- on boolean
- Indicates that the recovery is locked.
- reason number
- Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
- expired bool
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lock_date str
- The date and time that the current resource was locked.
- on bool
- Indicates that the recovery is locked.
- reason int
- Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
- expired Boolean
- Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
- lockDate String
- The date and time that the current resource was locked.
- on Boolean
- Indicates that the recovery is locked.
- reason Number
- Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserRecoveryLocked        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser     
- AccountRecovery boolRequired 
- Boolean value to prompt user to setup account recovery during login.
- Accounts
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Account> 
- Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access.
- AppRoles List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User App Role> 
- A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public.
- ApplicableAuthentication List<GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Applicable Authentication Target App> 
- The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned.
- BypassNotification bool
- A Boolean value indicating whether or not to send email notification after creating the user. This attribute is not used in update/replace operations.
- CreationMechanism string
- User creation mechanism
- DelegatedAuthentication List<GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Delegated Authentication Target App> 
- If set, indicates the user's preferred authentication target app. If not set and the user's "syncedFromApp" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service.
- DoNot boolShow Getting Started 
- A Boolean value indicating whether or not to hide the getting started page
- Grants
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Grant> 
- Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User.
- GroupMembership stringLast Modified 
- Specifies date time when a User's group membership was last modified.
- IdcsApp List<GetRoles Limited To Groups Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Idcs App Roles Limited To Group> 
- Description:
- IsAccount boolRecovery Enrolled 
- A Boolean value indicating whether or not a user is enrolled for account recovery
- IsAuthentication boolDelegated 
- A Boolean value indicating whether or not authentication request by this user should be delegated to a remote app. This value should be true only when the User was originally synced from an app which is enabled for delegated authentication
- IsFederated boolUser 
- A Boolean value indicating whether or not the user is federated.
- IsGroup boolMembership Normalized 
- A Boolean value indicating whether or not group membership is normalized for this user.
- IsGroup boolMembership Synced To Users Groups 
- A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
- NotificationEmail stringTemplate Id 
- Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
- PreferredUi stringLanding Page 
- User's preferred landing page following login, logout and reset password.
- ServiceUser bool
- Indicates if User is a Service User
- Status string
- A supplemental status indicating the reason why a user is disabled
- SupportAccounts List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Support Account> 
- A list of Support Accounts corresponding to user.
- SyncedFrom List<GetApps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Synced From App> 
- Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
- UserFlow boolControlled By External Client 
- A Boolean value indicating whether to bypass notification and return user token to be used by an external client to control the user flow.
- UserProvider string
- User Support Account Provider
- UserTokens List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User User Token> 
- User token returned if userFlowControlledByExternalClient is true
- AccountRecovery boolRequired 
- Boolean value to prompt user to setup account recovery during login.
- Accounts
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Account 
- Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access.
- AppRoles []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User App Role 
- A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public.
- ApplicableAuthentication []GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Applicable Authentication Target App 
- The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned.
- BypassNotification bool
- A Boolean value indicating whether or not to send email notification after creating the user. This attribute is not used in update/replace operations.
- CreationMechanism string
- User creation mechanism
- DelegatedAuthentication []GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Delegated Authentication Target App 
- If set, indicates the user's preferred authentication target app. If not set and the user's "syncedFromApp" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service.
- DoNot boolShow Getting Started 
- A Boolean value indicating whether or not to hide the getting started page
- Grants
[]GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Grant 
- Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User.
- GroupMembership stringLast Modified 
- Specifies date time when a User's group membership was last modified.
- IdcsApp []GetRoles Limited To Groups Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Idcs App Roles Limited To Group 
- Description:
- IsAccount boolRecovery Enrolled 
- A Boolean value indicating whether or not a user is enrolled for account recovery
- IsAuthentication boolDelegated 
- A Boolean value indicating whether or not authentication request by this user should be delegated to a remote app. This value should be true only when the User was originally synced from an app which is enabled for delegated authentication
- IsFederated boolUser 
- A Boolean value indicating whether or not the user is federated.
- IsGroup boolMembership Normalized 
- A Boolean value indicating whether or not group membership is normalized for this user.
- IsGroup boolMembership Synced To Users Groups 
- A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
- NotificationEmail stringTemplate Id 
- Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
- PreferredUi stringLanding Page 
- User's preferred landing page following login, logout and reset password.
- ServiceUser bool
- Indicates if User is a Service User
- Status string
- A supplemental status indicating the reason why a user is disabled
- SupportAccounts []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Support Account 
- A list of Support Accounts corresponding to user.
- SyncedFrom []GetApps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Synced From App 
- Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
- UserFlow boolControlled By External Client 
- A Boolean value indicating whether to bypass notification and return user token to be used by an external client to control the user flow.
- UserProvider string
- User Support Account Provider
- UserTokens []GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User User Token 
- User token returned if userFlowControlledByExternalClient is true
- accountRecovery BooleanRequired 
- Boolean value to prompt user to setup account recovery during login.
- accounts
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Account> 
- Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access.
- appRoles List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User App Role> 
- A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public.
- applicableAuthentication List<GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Applicable Authentication Target App> 
- The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned.
- bypassNotification Boolean
- A Boolean value indicating whether or not to send email notification after creating the user. This attribute is not used in update/replace operations.
- creationMechanism String
- User creation mechanism
- delegatedAuthentication List<GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Delegated Authentication Target App> 
- If set, indicates the user's preferred authentication target app. If not set and the user's "syncedFromApp" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service.
- doNot BooleanShow Getting Started 
- A Boolean value indicating whether or not to hide the getting started page
- grants
List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Grant> 
- Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User.
- groupMembership StringLast Modified 
- Specifies date time when a User's group membership was last modified.
- idcsApp List<GetRoles Limited To Groups Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Idcs App Roles Limited To Group> 
- Description:
- isAccount BooleanRecovery Enrolled 
- A Boolean value indicating whether or not a user is enrolled for account recovery
- isAuthentication BooleanDelegated 
- A Boolean value indicating whether or not authentication request by this user should be delegated to a remote app. This value should be true only when the User was originally synced from an app which is enabled for delegated authentication
- isFederated BooleanUser 
- A Boolean value indicating whether or not the user is federated.
- isGroup BooleanMembership Normalized 
- A Boolean value indicating whether or not group membership is normalized for this user.
- isGroup BooleanMembership Synced To Users Groups 
- A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
- notificationEmail StringTemplate Id 
- Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
- preferredUi StringLanding Page 
- User's preferred landing page following login, logout and reset password.
- serviceUser Boolean
- Indicates if User is a Service User
- status String
- A supplemental status indicating the reason why a user is disabled
- supportAccounts List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Support Account> 
- A list of Support Accounts corresponding to user.
- syncedFrom List<GetApps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Synced From App> 
- Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
- userFlow BooleanControlled By External Client 
- A Boolean value indicating whether to bypass notification and return user token to be used by an external client to control the user flow.
- userProvider String
- User Support Account Provider
- userTokens List<GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User User Token> 
- User token returned if userFlowControlledByExternalClient is true
- accountRecovery booleanRequired 
- Boolean value to prompt user to setup account recovery during login.
- accounts
GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Account[] 
- Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access.
- appRoles GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User App Role[] 
- A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public.
- applicableAuthentication GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Applicable Authentication Target App[] 
- The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned.
- bypassNotification boolean
- A Boolean value indicating whether or not to send email notification after creating the user. This attribute is not used in update/replace operations.
- creationMechanism string
- User creation mechanism
- delegatedAuthentication GetTarget Apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Delegated Authentication Target App[] 
- If set, indicates the user's preferred authentication target app. If not set and the user's "syncedFromApp" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service.
- doNot booleanShow Getting Started 
- A Boolean value indicating whether or not to hide the getting started page
- grants
GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Grant[] 
- Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User.
- groupMembership stringLast Modified 
- Specifies date time when a User's group membership was last modified.
- idcsApp GetRoles Limited To Groups Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Idcs App Roles Limited To Group[] 
- Description:
- isAccount booleanRecovery Enrolled 
- A Boolean value indicating whether or not a user is enrolled for account recovery
- isAuthentication booleanDelegated 
- A Boolean value indicating whether or not authentication request by this user should be delegated to a remote app. This value should be true only when the User was originally synced from an app which is enabled for delegated authentication
- isFederated booleanUser 
- A Boolean value indicating whether or not the user is federated.
- isGroup booleanMembership Normalized 
- A Boolean value indicating whether or not group membership is normalized for this user.
- isGroup booleanMembership Synced To Users Groups 
- A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
- notificationEmail stringTemplate Id 
- Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
- preferredUi stringLanding Page 
- User's preferred landing page following login, logout and reset password.
- serviceUser boolean
- Indicates if User is a Service User
- status string
- A supplemental status indicating the reason why a user is disabled
- supportAccounts GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Support Account[] 
- A list of Support Accounts corresponding to user.
- syncedFrom GetApps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Synced From App[] 
- Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
- userFlow booleanControlled By External Client 
- A Boolean value indicating whether to bypass notification and return user token to be used by an external client to control the user flow.
- userProvider string
- User Support Account Provider
- userTokens GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User User Token[] 
- User token returned if userFlowControlledByExternalClient is true
- account_recovery_ boolrequired 
- Boolean value to prompt user to setup account recovery during login.
- accounts
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Account] 
- Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access.
- app_roles Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User App Role] 
- A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public.
- applicable_authentication_ Sequence[Gettarget_ apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Applicable Authentication Target App] 
- The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned.
- bypass_notification bool
- A Boolean value indicating whether or not to send email notification after creating the user. This attribute is not used in update/replace operations.
- creation_mechanism str
- User creation mechanism
- delegated_authentication_ Sequence[Gettarget_ apps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Delegated Authentication Target App] 
- If set, indicates the user's preferred authentication target app. If not set and the user's "syncedFromApp" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service.
- do_not_ boolshow_ getting_ started 
- A Boolean value indicating whether or not to hide the getting started page
- grants
Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Grant] 
- Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User.
- group_membership_ strlast_ modified 
- Specifies date time when a User's group membership was last modified.
- idcs_app_ Sequence[Getroles_ limited_ to_ groups Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Idcs App Roles Limited To Group] 
- Description:
- is_account_ boolrecovery_ enrolled 
- A Boolean value indicating whether or not a user is enrolled for account recovery
- is_authentication_ booldelegated 
- A Boolean value indicating whether or not authentication request by this user should be delegated to a remote app. This value should be true only when the User was originally synced from an app which is enabled for delegated authentication
- is_federated_ booluser 
- A Boolean value indicating whether or not the user is federated.
- is_group_ boolmembership_ normalized 
- A Boolean value indicating whether or not group membership is normalized for this user.
- is_group_ boolmembership_ synced_ to_ users_ groups 
- A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
- notification_email_ strtemplate_ id 
- Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
- preferred_ui_ strlanding_ page 
- User's preferred landing page following login, logout and reset password.
- service_user bool
- Indicates if User is a Service User
- status str
- A supplemental status indicating the reason why a user is disabled
- support_accounts Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Support Account] 
- A list of Support Accounts corresponding to user.
- synced_from_ Sequence[Getapps Domains Users User Urnietfparamsscimschemasoracleidcsextensionuser User Synced From App] 
- Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
- user_flow_ boolcontrolled_ by_ external_ client 
- A Boolean value indicating whether to bypass notification and return user token to be used by an external client to control the user flow.
- user_provider str
- User Support Account Provider
- user_tokens Sequence[GetDomains Users User Urnietfparamsscimschemasoracleidcsextensionuser User User Token] 
- User token returned if userFlowControlledByExternalClient is true
- accountRecovery BooleanRequired 
- Boolean value to prompt user to setup account recovery during login.
- accounts List<Property Map>
- Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access.
- appRoles List<Property Map>
- A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public.
- applicableAuthentication List<Property Map>Target Apps 
- The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned.
- bypassNotification Boolean
- A Boolean value indicating whether or not to send email notification after creating the user. This attribute is not used in update/replace operations.
- creationMechanism String
- User creation mechanism
- delegatedAuthentication List<Property Map>Target Apps 
- If set, indicates the user's preferred authentication target app. If not set and the user's "syncedFromApp" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service.
- doNot BooleanShow Getting Started 
- A Boolean value indicating whether or not to hide the getting started page
- grants List<Property Map>
- Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User.
- groupMembership StringLast Modified 
- Specifies date time when a User's group membership was last modified.
- idcsApp List<Property Map>Roles Limited To Groups 
- Description:
- isAccount BooleanRecovery Enrolled 
- A Boolean value indicating whether or not a user is enrolled for account recovery
- isAuthentication BooleanDelegated 
- A Boolean value indicating whether or not authentication request by this user should be delegated to a remote app. This value should be true only when the User was originally synced from an app which is enabled for delegated authentication
- isFederated BooleanUser 
- A Boolean value indicating whether or not the user is federated.
- isGroup BooleanMembership Normalized 
- A Boolean value indicating whether or not group membership is normalized for this user.
- isGroup BooleanMembership Synced To Users Groups 
- A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
- notificationEmail StringTemplate Id 
- Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
- preferredUi StringLanding Page 
- User's preferred landing page following login, logout and reset password.
- serviceUser Boolean
- Indicates if User is a Service User
- status String
- A supplemental status indicating the reason why a user is disabled
- supportAccounts List<Property Map>
- A list of Support Accounts corresponding to user.
- syncedFrom List<Property Map>Apps 
- Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
- userFlow BooleanControlled By External Client 
- A Boolean value indicating whether to bypass notification and return user token to be used by an external client to control the user flow.
- userProvider String
- User Support Account Provider
- userTokens List<Property Map>
- User token returned if userFlowControlledByExternalClient is true
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount      
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole       
- AdminRole bool
- If true, then the role provides administrative access privileges. READ-ONLY.
- AppId string
- The ID of the App in this Grant.
- AppName string
- The name (Client ID) of the App that defines this AppRole.
- Display string
- A human readable name, primarily used for display purposes.
- LegacyGroup stringName 
- The name (if any) under which this AppRole should appear in this User's group-memberships for reasons of backward compatibility. Oracle Identity Cloud Service distinguishes between Groups and AppRoles, but some services still expect AppRoles appear as if they were service-instance-specific Groups.
- Ref string
- User Token URI
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- AdminRole bool
- If true, then the role provides administrative access privileges. READ-ONLY.
- AppId string
- The ID of the App in this Grant.
- AppName string
- The name (Client ID) of the App that defines this AppRole.
- Display string
- A human readable name, primarily used for display purposes.
- LegacyGroup stringName 
- The name (if any) under which this AppRole should appear in this User's group-memberships for reasons of backward compatibility. Oracle Identity Cloud Service distinguishes between Groups and AppRoles, but some services still expect AppRoles appear as if they were service-instance-specific Groups.
- Ref string
- User Token URI
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- adminRole Boolean
- If true, then the role provides administrative access privileges. READ-ONLY.
- appId String
- The ID of the App in this Grant.
- appName String
- The name (Client ID) of the App that defines this AppRole.
- display String
- A human readable name, primarily used for display purposes.
- legacyGroup StringName 
- The name (if any) under which this AppRole should appear in this User's group-memberships for reasons of backward compatibility. Oracle Identity Cloud Service distinguishes between Groups and AppRoles, but some services still expect AppRoles appear as if they were service-instance-specific Groups.
- ref String
- User Token URI
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- adminRole boolean
- If true, then the role provides administrative access privileges. READ-ONLY.
- appId string
- The ID of the App in this Grant.
- appName string
- The name (Client ID) of the App that defines this AppRole.
- display string
- A human readable name, primarily used for display purposes.
- legacyGroup stringName 
- The name (if any) under which this AppRole should appear in this User's group-memberships for reasons of backward compatibility. Oracle Identity Cloud Service distinguishes between Groups and AppRoles, but some services still expect AppRoles appear as if they were service-instance-specific Groups.
- ref string
- User Token URI
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- admin_role bool
- If true, then the role provides administrative access privileges. READ-ONLY.
- app_id str
- The ID of the App in this Grant.
- app_name str
- The name (Client ID) of the App that defines this AppRole.
- display str
- A human readable name, primarily used for display purposes.
- legacy_group_ strname 
- The name (if any) under which this AppRole should appear in this User's group-memberships for reasons of backward compatibility. Oracle Identity Cloud Service distinguishes between Groups and AppRoles, but some services still expect AppRoles appear as if they were service-instance-specific Groups.
- ref str
- User Token URI
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- adminRole Boolean
- If true, then the role provides administrative access privileges. READ-ONLY.
- appId String
- The ID of the App in this Grant.
- appName String
- The name (Client ID) of the App that defines this AppRole.
- display String
- A human readable name, primarily used for display purposes.
- legacyGroup StringName 
- The name (if any) under which this AppRole should appear in this User's group-memberships for reasons of backward compatibility. Oracle Identity Cloud Service distinguishes between Groups and AppRoles, but some services still expect AppRoles appear as if they were service-instance-specific Groups.
- ref String
- User Token URI
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp         
- Display string
- A human readable name, primarily used for display purposes.
- Ref string
- User Token URI
- TargetRequest intTimeout 
- Timeout interval for Synchronization TargetAction in milliseconds
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- Ref string
- User Token URI
- TargetRequest intTimeout 
- Timeout interval for Synchronization TargetAction in milliseconds
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- ref String
- User Token URI
- targetRequest IntegerTimeout 
- Timeout interval for Synchronization TargetAction in milliseconds
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- ref string
- User Token URI
- targetRequest numberTimeout 
- Timeout interval for Synchronization TargetAction in milliseconds
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- ref str
- User Token URI
- target_request_ inttimeout 
- Timeout interval for Synchronization TargetAction in milliseconds
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- ref String
- User Token URI
- targetRequest NumberTimeout 
- Timeout interval for Synchronization TargetAction in milliseconds
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp         
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant      
- AppId string
- The ID of the App in this Grant.
- GrantMechanism string
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':- 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
- 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
- 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
 
- GrantorId string
- Grantor identifier
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- AppId string
- The ID of the App in this Grant.
- GrantMechanism string
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':- 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
- 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
- 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
 
- GrantorId string
- Grantor identifier
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- appId String
- The ID of the App in this Grant.
- grantMechanism String
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':- 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
- 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
- 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
 
- grantorId String
- Grantor identifier
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
- appId string
- The ID of the App in this Grant.
- grantMechanism string
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':- 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
- 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
- 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
 
- grantorId string
- Grantor identifier
- ref string
- User Token URI
- value string
- The value of a X509 certificate.
- app_id str
- The ID of the App in this Grant.
- grant_mechanism str
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':- 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
- 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
- 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
 
- grantor_id str
- Grantor identifier
- ref str
- User Token URI
- value str
- The value of a X509 certificate.
- appId String
- The ID of the App in this Grant.
- grantMechanism String
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':- 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
- 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
- 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
 
- grantorId String
- Grantor identifier
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup           
- Display string
- A human readable name, primarily used for display purposes.
- IdcsApp stringRole Id 
- The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
- Ocid string
- The OCID of the user's support account.
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- IdcsApp stringRole Id 
- The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
- Ocid string
- The OCID of the user's support account.
- Ref string
- User Token URI
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- idcsApp StringRole Id 
- The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
- ocid String
- The OCID of the user's support account.
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- idcsApp stringRole Id 
- The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
- ocid string
- The OCID of the user's support account.
- ref string
- User Token URI
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- idcs_app_ strrole_ id 
- The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
- ocid str
- The OCID of the user's support account.
- ref str
- User Token URI
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- idcsApp StringRole Id 
- The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
- ocid String
- The OCID of the user's support account.
- ref String
- User Token URI
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount       
- Ocid string
- The OCID of the user's support account.
- Ref string
- User Token URI
- UserId string
- User Support User Id
- UserProvider string
- User Support Account Provider
- Value string
- The value of a X509 certificate.
- Ocid string
- The OCID of the user's support account.
- Ref string
- User Token URI
- UserId string
- User Support User Id
- UserProvider string
- User Support Account Provider
- Value string
- The value of a X509 certificate.
- ocid String
- The OCID of the user's support account.
- ref String
- User Token URI
- userId String
- User Support User Id
- userProvider String
- User Support Account Provider
- value String
- The value of a X509 certificate.
- ocid string
- The OCID of the user's support account.
- ref string
- User Token URI
- userId string
- User Support User Id
- userProvider string
- User Support Account Provider
- value string
- The value of a X509 certificate.
- ocid str
- The OCID of the user's support account.
- ref str
- User Token URI
- user_id str
- User Support User Id
- user_provider str
- User Support Account Provider
- value str
- The value of a X509 certificate.
- ocid String
- The OCID of the user's support account.
- ref String
- User Token URI
- userId String
- User Support User Id
- userProvider String
- User Support Account Provider
- value String
- The value of a X509 certificate.
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp        
GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken       
GetDomainsUsersUserX509certificate    
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- Display string
- A human readable name, primarily used for display purposes.
- Primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- Type string
- A label indicating the attribute's function.
- Value string
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
- display string
- A human readable name, primarily used for display purposes.
- primary boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type string
- A label indicating the attribute's function.
- value string
- The value of a X509 certificate.
- display str
- A human readable name, primarily used for display purposes.
- primary bool
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type str
- A label indicating the attribute's function.
- value str
- The value of a X509 certificate.
- display String
- A human readable name, primarily used for display purposes.
- primary Boolean
- A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
- type String
- A label indicating the attribute's function.
- value String
- The value of a X509 certificate.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.