1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. getDomainsUsers
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Identity.getDomainsUsers

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
variables:
  testUsers:
    fn::invoke:
      function: oci:Identity:getDomainsUsers
      arguments:
        idcsEndpoint: ${testDomain.url}
        userCount: ${userUserCount}
        userFilter: ${userUserFilter}
        attributeSets: []
        attributes: ""
        authorization: ${userAuthorization}
        resourceTypeSchemaVersion: ${userResourceTypeSchemaVersion}
        startIndex: ${userStartIndex}
Copy

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>
Copy
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]
Copy
func GetDomainsUsers(ctx *Context, args *GetDomainsUsersArgs, opts ...InvokeOption) (*GetDomainsUsersResult, error)
func GetDomainsUsersOutput(ctx *Context, args *GetDomainsUsersOutputArgs, opts ...InvokeOption) GetDomainsUsersResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetDomainsUsersResult> getDomainsUsers(GetDomainsUsersArgs args, InvokeOptions options)
public static Output<GetDomainsUsersResult> getDomainsUsers(GetDomainsUsersArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Identity/getDomainsUsers:getDomainsUsers
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
AttributeSets List<string>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
CompartmentId string
ResourceTypeSchemaVersion string
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
SortBy string
SortOrder string
StartIndex int
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
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 This property is required. string
The basic endpoint for the identity domain
AttributeSets []string
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
CompartmentId string
ResourceTypeSchemaVersion string
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
SortBy string
SortOrder string
StartIndex int
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
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 This property is required. String
The basic endpoint for the identity domain
attributeSets List<String>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentId String
resourceTypeSchemaVersion String
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
sortBy String
sortOrder String
startIndex Integer
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
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 This property is required. string
The basic endpoint for the identity domain
attributeSets string[]
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentId string
resourceTypeSchemaVersion string
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
sortBy string
sortOrder string
startIndex number
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
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 This property is required. str
The basic endpoint for the identity domain
attribute_sets Sequence[str]
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes str
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization str
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartment_id str
resource_type_schema_version str
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
sort_by str
sort_order str
start_index int
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
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 This property is required. String
The basic endpoint for the identity domain
attributeSets List<String>
A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentId String
resourceTypeSchemaVersion String
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
sortBy String
sortOrder String
startIndex Number
OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
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
ItemsPerPage int
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<GetDomainsUsersUser>
The list of users.
AttributeSets List<string>
Attributes string
Authorization string
CompartmentId string
ResourceTypeSchemaVersion string
SortBy string
SortOrder string
StartIndex int
UserCount int
UserFilter string
Id string
The provider-assigned unique ID for this managed resource.
IdcsEndpoint string
ItemsPerPage int
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 []GetDomainsUsersUser
The list of users.
AttributeSets []string
Attributes string
Authorization string
CompartmentId string
ResourceTypeSchemaVersion string
SortBy string
SortOrder string
StartIndex int
UserCount int
UserFilter string
id String
The provider-assigned unique ID for this managed resource.
idcsEndpoint String
itemsPerPage Integer
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<GetDomainsUsersUser>
The list of users.
attributeSets List<String>
attributes String
authorization String
compartmentId String
resourceTypeSchemaVersion String
sortBy String
sortOrder String
startIndex Integer
userCount Integer
userFilter String
id string
The provider-assigned unique ID for this managed resource.
idcsEndpoint string
itemsPerPage number
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 GetDomainsUsersUser[]
The list of users.
attributeSets string[]
attributes string
authorization string
compartmentId string
resourceTypeSchemaVersion string
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_page int
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[identity.GetDomainsUsersUser]
The list of users.
attribute_sets Sequence[str]
attributes str
authorization str
compartment_id str
resource_type_schema_version str
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
itemsPerPage Number
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
authorization String
compartmentId String
resourceTypeSchemaVersion String
sortBy String
sortOrder String
startIndex Number
userCount Number
userFilter String

Supporting Types

GetDomainsUsersUser

Active This property is required. bool
Status of the account
Addresses This property is required. List<GetDomainsUsersUserAddress>
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 This property is required. 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 This property is required. string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization This property is required. 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 This property is required. string
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
DeleteInProgress This property is required. bool
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
Description This property is required. string
Description of the user
DisplayName This property is required. string
The displayName of the User's manager. OPTIONAL and READ-ONLY.
DomainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
Emails This property is required. List<GetDomainsUsersUserEmail>
A complex attribute representing emails
Entitlements This property is required. List<GetDomainsUsersUserEntitlement>
A list of entitlements for the User that represent a thing the User has.
ExternalId This property is required. string
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
ForceDelete This property is required. bool
Groups This property is required. List<GetDomainsUsersUserGroup>
A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
Id This property is required. string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
IdcsCreatedBies This property is required. List<GetDomainsUsersUserIdcsCreatedBy>
The User or App who created the Resource
IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
IdcsLastModifiedBies This property is required. List<GetDomainsUsersUserIdcsLastModifiedBy>
The User or App who modified the Resource
IdcsLastUpgradedInRelease This property is required. string
The release number when the resource was upgraded.
IdcsPreventedOperations This property is required. List<string>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
Ims This property is required. List<GetDomainsUsersUserIm>
User's instant messaging addresses
Locale This property is required. 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 This property is required. List<GetDomainsUsersUserMeta>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
Names This property is required. List<GetDomainsUsersUserName>
Name of the account assigned to the User.
NickName This property is required. string
Nick name
Ocid This property is required. string
The OCID of the user's support account.
Password This property is required. string
Password attribute. Max length for password is controlled via Password Policy.
PhoneNumbers This property is required. List<GetDomainsUsersUserPhoneNumber>
Phone numbers
Photos This property is required. List<GetDomainsUsersUserPhoto>
URLs of photos for the User
PreferredLanguage This property is required. string
User's preferred written or spoken language used for localized user interfaces
ProfileUrl This property is required. string
A fully-qualified URL to a page representing the User's online profile
ResourceTypeSchemaVersion This property is required. string
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
Roles This property is required. List<GetDomainsUsersUserRole>
A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
Schemas This property is required. 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.
Tags This property is required. List<GetDomainsUsersUserTag>
A list of tags on this resource.
TenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Timezone This property is required. string
User's timezone
Title This property is required. string
Title
Urnietfparamsscimschemasextensionenterprise20users This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user>
Enterprise User
UrnietfparamsscimschemasoracleidcsextensionOciTags This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag>
Oracle Cloud Infrastructure Tags.
UrnietfparamsscimschemasoracleidcsextensionadaptiveUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser>
This extension defines attributes to manage user's risk score.
UrnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser>
User's Capabilities
UrnietfparamsscimschemasoracleidcsextensiondbCredentialsUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser>
The database credentials user extension.
UrnietfparamsscimschemasoracleidcsextensiondbUserUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser>
DB User extension
UrnietfparamsscimschemasoracleidcsextensionkerberosUserUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser>
Kerberos User extension
UrnietfparamsscimschemasoracleidcsextensionmfaUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser>
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.
UrnietfparamsscimschemasoracleidcsextensionpasswordStateUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser>
POSIX User extension
UrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser>
This extension defines the attributes used to store the security questions of a user.
UrnietfparamsscimschemasoracleidcsextensionselfChangeUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser>
Controls whether a user can update themselves or not via User related APIs
UrnietfparamsscimschemasoracleidcsextensionselfRegistrationUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser>
This extension defines attributes used to manage self registration profile linked to the user.
UrnietfparamsscimschemasoracleidcsextensionsffUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser>
SFF Auth Keys User extension
UrnietfparamsscimschemasoracleidcsextensionsocialAccountUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser>
Social User extension
UrnietfparamsscimschemasoracleidcsextensiontermsOfUseUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser>
Terms Of Use extension
UrnietfparamsscimschemasoracleidcsextensionuserCredentialsUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser>
User's credentials
UrnietfparamsscimschemasoracleidcsextensionuserStateUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser>
Oracle Identity Cloud Service User
UserName This property is required. string
User name
UserType This property is required. string
Used to identify the organization-to-user relationship
X509certificates This property is required. List<GetDomainsUsersUserX509certificate>
A list of certificates issued to the User.
Active This property is required. bool
Status of the account
Addresses This property is required. []GetDomainsUsersUserAddress
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 This property is required. []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 This property is required. string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization This property is required. 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 This property is required. string
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
DeleteInProgress This property is required. bool
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
Description This property is required. string
Description of the user
DisplayName This property is required. string
The displayName of the User's manager. OPTIONAL and READ-ONLY.
DomainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
Emails This property is required. []GetDomainsUsersUserEmail
A complex attribute representing emails
Entitlements This property is required. []GetDomainsUsersUserEntitlement
A list of entitlements for the User that represent a thing the User has.
ExternalId This property is required. string
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
ForceDelete This property is required. bool
Groups This property is required. []GetDomainsUsersUserGroup
A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
Id This property is required. string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
IdcsCreatedBies This property is required. []GetDomainsUsersUserIdcsCreatedBy
The User or App who created the Resource
IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
IdcsLastModifiedBies This property is required. []GetDomainsUsersUserIdcsLastModifiedBy
The User or App who modified the Resource
IdcsLastUpgradedInRelease This property is required. string
The release number when the resource was upgraded.
IdcsPreventedOperations This property is required. []string
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
Ims This property is required. []GetDomainsUsersUserIm
User's instant messaging addresses
Locale This property is required. 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 This property is required. []GetDomainsUsersUserMeta
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
Names This property is required. []GetDomainsUsersUserName
Name of the account assigned to the User.
NickName This property is required. string
Nick name
Ocid This property is required. string
The OCID of the user's support account.
Password This property is required. string
Password attribute. Max length for password is controlled via Password Policy.
PhoneNumbers This property is required. []GetDomainsUsersUserPhoneNumber
Phone numbers
Photos This property is required. []GetDomainsUsersUserPhoto
URLs of photos for the User
PreferredLanguage This property is required. string
User's preferred written or spoken language used for localized user interfaces
ProfileUrl This property is required. string
A fully-qualified URL to a page representing the User's online profile
ResourceTypeSchemaVersion This property is required. string
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
Roles This property is required. []GetDomainsUsersUserRole
A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
Schemas This property is required. []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.
Tags This property is required. []GetDomainsUsersUserTag
A list of tags on this resource.
TenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Timezone This property is required. string
User's timezone
Title This property is required. string
Title
Urnietfparamsscimschemasextensionenterprise20users This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user
Enterprise User
UrnietfparamsscimschemasoracleidcsextensionOciTags This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag
Oracle Cloud Infrastructure Tags.
UrnietfparamsscimschemasoracleidcsextensionadaptiveUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser
This extension defines attributes to manage user's risk score.
UrnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser
User's Capabilities
UrnietfparamsscimschemasoracleidcsextensiondbCredentialsUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser
The database credentials user extension.
UrnietfparamsscimschemasoracleidcsextensiondbUserUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser
DB User extension
UrnietfparamsscimschemasoracleidcsextensionkerberosUserUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser
Kerberos User extension
UrnietfparamsscimschemasoracleidcsextensionmfaUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser
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.
UrnietfparamsscimschemasoracleidcsextensionpasswordStateUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser
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 This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser
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 This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser
POSIX User extension
UrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser
This extension defines the attributes used to store the security questions of a user.
UrnietfparamsscimschemasoracleidcsextensionselfChangeUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser
Controls whether a user can update themselves or not via User related APIs
UrnietfparamsscimschemasoracleidcsextensionselfRegistrationUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser
This extension defines attributes used to manage self registration profile linked to the user.
UrnietfparamsscimschemasoracleidcsextensionsffUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser
SFF Auth Keys User extension
UrnietfparamsscimschemasoracleidcsextensionsocialAccountUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser
Social User extension
UrnietfparamsscimschemasoracleidcsextensiontermsOfUseUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser
Terms Of Use extension
UrnietfparamsscimschemasoracleidcsextensionuserCredentialsUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser
User's credentials
UrnietfparamsscimschemasoracleidcsextensionuserStateUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser
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 This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser
Oracle Identity Cloud Service User
UserName This property is required. string
User name
UserType This property is required. string
Used to identify the organization-to-user relationship
X509certificates This property is required. []GetDomainsUsersUserX509certificate
A list of certificates issued to the User.
active This property is required. Boolean
Status of the account
addresses This property is required. List<GetDomainsUsersUserAddress>
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 This property is required. 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 This property is required. String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization This property is required. 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 This property is required. String
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
deleteInProgress This property is required. Boolean
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
description This property is required. String
Description of the user
displayName This property is required. String
The displayName of the User's manager. OPTIONAL and READ-ONLY.
domainOcid This property is required. String
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
emails This property is required. List<GetDomainsUsersUserEmail>
A complex attribute representing emails
entitlements This property is required. List<GetDomainsUsersUserEntitlement>
A list of entitlements for the User that represent a thing the User has.
externalId This property is required. String
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
forceDelete This property is required. Boolean
groups This property is required. List<GetDomainsUsersUserGroup>
A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
id This property is required. String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcsCreatedBies This property is required. List<GetDomainsUsersUserIdcsCreatedBy>
The User or App who created the Resource
idcsEndpoint This property is required. String
The basic endpoint for the identity domain
idcsLastModifiedBies This property is required. List<GetDomainsUsersUserIdcsLastModifiedBy>
The User or App who modified the Resource
idcsLastUpgradedInRelease This property is required. String
The release number when the resource was upgraded.
idcsPreventedOperations This property is required. List<String>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
ims This property is required. List<GetDomainsUsersUserIm>
User's instant messaging addresses
locale This property is required. 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 This property is required. List<GetDomainsUsersUserMeta>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
names This property is required. List<GetDomainsUsersUserName>
Name of the account assigned to the User.
nickName This property is required. String
Nick name
ocid This property is required. String
The OCID of the user's support account.
password This property is required. String
Password attribute. Max length for password is controlled via Password Policy.
phoneNumbers This property is required. List<GetDomainsUsersUserPhoneNumber>
Phone numbers
photos This property is required. List<GetDomainsUsersUserPhoto>
URLs of photos for the User
preferredLanguage This property is required. String
User's preferred written or spoken language used for localized user interfaces
profileUrl This property is required. String
A fully-qualified URL to a page representing the User's online profile
resourceTypeSchemaVersion This property is required. String
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
roles This property is required. List<GetDomainsUsersUserRole>
A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
schemas This property is required. 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.
tags This property is required. List<GetDomainsUsersUserTag>
A list of tags on this resource.
tenancyOcid This property is required. String
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
timezone This property is required. String
User's timezone
title This property is required. String
Title
urnietfparamsscimschemasextensionenterprise20users This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user>
Enterprise User
urnietfparamsscimschemasoracleidcsextensionOciTags This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag>
Oracle Cloud Infrastructure Tags.
urnietfparamsscimschemasoracleidcsextensionadaptiveUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser>
This extension defines attributes to manage user's risk score.
urnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser>
User's Capabilities
urnietfparamsscimschemasoracleidcsextensiondbCredentialsUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser>
The database credentials user extension.
urnietfparamsscimschemasoracleidcsextensiondbUserUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser>
DB User extension
urnietfparamsscimschemasoracleidcsextensionkerberosUserUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser>
Kerberos User extension
urnietfparamsscimschemasoracleidcsextensionmfaUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser>
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.
urnietfparamsscimschemasoracleidcsextensionpasswordStateUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser>
POSIX User extension
urnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser>
This extension defines the attributes used to store the security questions of a user.
urnietfparamsscimschemasoracleidcsextensionselfChangeUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser>
Controls whether a user can update themselves or not via User related APIs
urnietfparamsscimschemasoracleidcsextensionselfRegistrationUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser>
This extension defines attributes used to manage self registration profile linked to the user.
urnietfparamsscimschemasoracleidcsextensionsffUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser>
SFF Auth Keys User extension
urnietfparamsscimschemasoracleidcsextensionsocialAccountUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser>
Social User extension
urnietfparamsscimschemasoracleidcsextensiontermsOfUseUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser>
Terms Of Use extension
urnietfparamsscimschemasoracleidcsextensionuserCredentialsUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser>
User's credentials
urnietfparamsscimschemasoracleidcsextensionuserStateUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser>
Oracle Identity Cloud Service User
userName This property is required. String
User name
userType This property is required. String
Used to identify the organization-to-user relationship
x509certificates This property is required. List<GetDomainsUsersUserX509certificate>
A list of certificates issued to the User.
active This property is required. boolean
Status of the account
addresses This property is required. GetDomainsUsersUserAddress[]
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 This property is required. 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 This property is required. string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization This property is required. 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 This property is required. string
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
deleteInProgress This property is required. boolean
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
description This property is required. string
Description of the user
displayName This property is required. string
The displayName of the User's manager. OPTIONAL and READ-ONLY.
domainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
emails This property is required. GetDomainsUsersUserEmail[]
A complex attribute representing emails
entitlements This property is required. GetDomainsUsersUserEntitlement[]
A list of entitlements for the User that represent a thing the User has.
externalId This property is required. string
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
forceDelete This property is required. boolean
groups This property is required. GetDomainsUsersUserGroup[]
A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
id This property is required. string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcsCreatedBies This property is required. GetDomainsUsersUserIdcsCreatedBy[]
The User or App who created the Resource
idcsEndpoint This property is required. string
The basic endpoint for the identity domain
idcsLastModifiedBies This property is required. GetDomainsUsersUserIdcsLastModifiedBy[]
The User or App who modified the Resource
idcsLastUpgradedInRelease This property is required. string
The release number when the resource was upgraded.
idcsPreventedOperations This property is required. string[]
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
ims This property is required. GetDomainsUsersUserIm[]
User's instant messaging addresses
locale This property is required. 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 This property is required. GetDomainsUsersUserMeta[]
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
names This property is required. GetDomainsUsersUserName[]
Name of the account assigned to the User.
nickName This property is required. string
Nick name
ocid This property is required. string
The OCID of the user's support account.
password This property is required. string
Password attribute. Max length for password is controlled via Password Policy.
phoneNumbers This property is required. GetDomainsUsersUserPhoneNumber[]
Phone numbers
photos This property is required. GetDomainsUsersUserPhoto[]
URLs of photos for the User
preferredLanguage This property is required. string
User's preferred written or spoken language used for localized user interfaces
profileUrl This property is required. string
A fully-qualified URL to a page representing the User's online profile
resourceTypeSchemaVersion This property is required. string
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
roles This property is required. GetDomainsUsersUserRole[]
A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
schemas This property is required. 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.
tags This property is required. GetDomainsUsersUserTag[]
A list of tags on this resource.
tenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
timezone This property is required. string
User's timezone
title This property is required. string
Title
urnietfparamsscimschemasextensionenterprise20users This property is required. GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user[]
Enterprise User
urnietfparamsscimschemasoracleidcsextensionOciTags This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag[]
Oracle Cloud Infrastructure Tags.
urnietfparamsscimschemasoracleidcsextensionadaptiveUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser[]
This extension defines attributes to manage user's risk score.
urnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser[]
User's Capabilities
urnietfparamsscimschemasoracleidcsextensiondbCredentialsUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser[]
The database credentials user extension.
urnietfparamsscimschemasoracleidcsextensiondbUserUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser[]
DB User extension
urnietfparamsscimschemasoracleidcsextensionkerberosUserUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser[]
Kerberos User extension
urnietfparamsscimschemasoracleidcsextensionmfaUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser[]
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.
urnietfparamsscimschemasoracleidcsextensionpasswordStateUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser[]
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 This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser[]
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 This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser[]
POSIX User extension
urnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser[]
This extension defines the attributes used to store the security questions of a user.
urnietfparamsscimschemasoracleidcsextensionselfChangeUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser[]
Controls whether a user can update themselves or not via User related APIs
urnietfparamsscimschemasoracleidcsextensionselfRegistrationUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser[]
This extension defines attributes used to manage self registration profile linked to the user.
urnietfparamsscimschemasoracleidcsextensionsffUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser[]
SFF Auth Keys User extension
urnietfparamsscimschemasoracleidcsextensionsocialAccountUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser[]
Social User extension
urnietfparamsscimschemasoracleidcsextensiontermsOfUseUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser[]
Terms Of Use extension
urnietfparamsscimschemasoracleidcsextensionuserCredentialsUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser[]
User's credentials
urnietfparamsscimschemasoracleidcsextensionuserStateUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser[]
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 This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser[]
Oracle Identity Cloud Service User
userName This property is required. string
User name
userType This property is required. string
Used to identify the organization-to-user relationship
x509certificates This property is required. GetDomainsUsersUserX509certificate[]
A list of certificates issued to the User.
active This property is required. bool
Status of the account
addresses This property is required. Sequence[identity.GetDomainsUsersUserAddress]
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 This property is required. 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 This property is required. str
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization This property is required. 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 This property is required. str
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
delete_in_progress This property is required. bool
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
description This property is required. str
Description of the user
display_name This property is required. str
The displayName of the User's manager. OPTIONAL and READ-ONLY.
domain_ocid This property is required. str
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
emails This property is required. Sequence[identity.GetDomainsUsersUserEmail]
A complex attribute representing emails
entitlements This property is required. Sequence[identity.GetDomainsUsersUserEntitlement]
A list of entitlements for the User that represent a thing the User has.
external_id This property is required. str
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
force_delete This property is required. bool
groups This property is required. Sequence[identity.GetDomainsUsersUserGroup]
A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
id This property is required. str
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcs_created_bies This property is required. Sequence[identity.GetDomainsUsersUserIdcsCreatedBy]
The User or App who created the Resource
idcs_endpoint This property is required. str
The basic endpoint for the identity domain
idcs_last_modified_bies This property is required. Sequence[identity.GetDomainsUsersUserIdcsLastModifiedBy]
The User or App who modified the Resource
idcs_last_upgraded_in_release This property is required. str
The release number when the resource was upgraded.
idcs_prevented_operations This property is required. Sequence[str]
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
ims This property is required. Sequence[identity.GetDomainsUsersUserIm]
User's instant messaging addresses
locale This property is required. 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 This property is required. Sequence[identity.GetDomainsUsersUserMeta]
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
names This property is required. Sequence[identity.GetDomainsUsersUserName]
Name of the account assigned to the User.
nick_name This property is required. str
Nick name
ocid This property is required. str
The OCID of the user's support account.
password This property is required. str
Password attribute. Max length for password is controlled via Password Policy.
phone_numbers This property is required. Sequence[identity.GetDomainsUsersUserPhoneNumber]
Phone numbers
photos This property is required. Sequence[identity.GetDomainsUsersUserPhoto]
URLs of photos for the User
preferred_language This property is required. str
User's preferred written or spoken language used for localized user interfaces
profile_url This property is required. str
A fully-qualified URL to a page representing the User's online profile
resource_type_schema_version This property is required. str
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
roles This property is required. Sequence[identity.GetDomainsUsersUserRole]
A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
schemas This property is required. 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.
tags This property is required. Sequence[identity.GetDomainsUsersUserTag]
A list of tags on this resource.
tenancy_ocid This property is required. str
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
timezone This property is required. str
User's timezone
title This property is required. str
Title
urnietfparamsscimschemasextensionenterprise20users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user]
Enterprise User
urnietfparamsscimschemasoracleidcsextension_oci_tags This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag]
Oracle Cloud Infrastructure Tags.
urnietfparamsscimschemasoracleidcsextensionadaptive_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser]
This extension defines attributes to manage user's risk score.
urnietfparamsscimschemasoracleidcsextensioncapabilities_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser]
User's Capabilities
urnietfparamsscimschemasoracleidcsextensiondb_credentials_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser]
The database credentials user extension.
urnietfparamsscimschemasoracleidcsextensiondb_user_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser]
DB User extension
urnietfparamsscimschemasoracleidcsextensionkerberos_user_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser]
Kerberos User extension
urnietfparamsscimschemasoracleidcsextensionmfa_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser]
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_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser]
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 This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser]
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 This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser]
POSIX User extension
urnietfparamsscimschemasoracleidcsextensionsecurity_questions_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser]
This extension defines the attributes used to store the security questions of a user.
urnietfparamsscimschemasoracleidcsextensionself_change_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser]
Controls whether a user can update themselves or not via User related APIs
urnietfparamsscimschemasoracleidcsextensionself_registration_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser]
This extension defines attributes used to manage self registration profile linked to the user.
urnietfparamsscimschemasoracleidcsextensionsff_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser]
SFF Auth Keys User extension
urnietfparamsscimschemasoracleidcsextensionsocial_account_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser]
Social User extension
urnietfparamsscimschemasoracleidcsextensionterms_of_use_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser]
Terms Of Use extension
urnietfparamsscimschemasoracleidcsextensionuser_credentials_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser]
User's credentials
urnietfparamsscimschemasoracleidcsextensionuser_state_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser]
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 This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser]
Oracle Identity Cloud Service User
user_name This property is required. str
User name
user_type This property is required. str
Used to identify the organization-to-user relationship
x509certificates This property is required. Sequence[identity.GetDomainsUsersUserX509certificate]
A list of certificates issued to the User.
active This property is required. Boolean
Status of the account
addresses This property is required. 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 This property is required. 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 This property is required. String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization This property is required. 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 This property is required. String
Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
deleteInProgress This property is required. Boolean
A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
description This property is required. String
Description of the user
displayName This property is required. String
The displayName of the User's manager. OPTIONAL and READ-ONLY.
domainOcid This property is required. String
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
emails This property is required. List<Property Map>
A complex attribute representing emails
entitlements This property is required. List<Property Map>
A list of entitlements for the User that represent a thing the User has.
externalId This property is required. String
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
forceDelete This property is required. Boolean
groups This property is required. List<Property Map>
A list of groups that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
id This property is required. String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcsCreatedBies This property is required. List<Property Map>
The User or App who created the Resource
idcsEndpoint This property is required. String
The basic endpoint for the identity domain
idcsLastModifiedBies This property is required. List<Property Map>
The User or App who modified the Resource
idcsLastUpgradedInRelease This property is required. String
The release number when the resource was upgraded.
idcsPreventedOperations This property is required. List<String>
Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
ims This property is required. List<Property Map>
User's instant messaging addresses
locale This property is required. 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 This property is required. List<Property Map>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
names This property is required. List<Property Map>
Name of the account assigned to the User.
nickName This property is required. String
Nick name
ocid This property is required. String
The OCID of the user's support account.
password This property is required. String
Password attribute. Max length for password is controlled via Password Policy.
phoneNumbers This property is required. List<Property Map>
Phone numbers
photos This property is required. List<Property Map>
URLs of photos for the User
preferredLanguage This property is required. String
User's preferred written or spoken language used for localized user interfaces
profileUrl This property is required. String
A fully-qualified URL to a page representing the User's online profile
resourceTypeSchemaVersion This property is required. String
An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
roles This property is required. List<Property Map>
A list of roles for the User that collectively represent who the User is; e.g., 'Student', 'Faculty'.
schemas This property is required. 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.
tags This property is required. List<Property Map>
A list of tags on this resource.
tenancyOcid This property is required. String
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
timezone This property is required. String
User's timezone
title This property is required. String
Title
urnietfparamsscimschemasextensionenterprise20users This property is required. List<Property Map>
Enterprise User
urnietfparamsscimschemasoracleidcsextensionOciTags This property is required. List<Property Map>
Oracle Cloud Infrastructure Tags.
urnietfparamsscimschemasoracleidcsextensionadaptiveUsers This property is required. List<Property Map>
This extension defines attributes to manage user's risk score.
urnietfparamsscimschemasoracleidcsextensioncapabilitiesUsers This property is required. List<Property Map>
User's Capabilities
urnietfparamsscimschemasoracleidcsextensiondbCredentialsUsers This property is required. List<Property Map>
The database credentials user extension.
urnietfparamsscimschemasoracleidcsextensiondbUserUsers This property is required. List<Property Map>
DB User extension
urnietfparamsscimschemasoracleidcsextensionkerberosUserUsers This property is required. List<Property Map>
Kerberos User extension
urnietfparamsscimschemasoracleidcsextensionmfaUsers This property is required. 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.
urnietfparamsscimschemasoracleidcsextensionpasswordStateUsers This property is required. List<Property Map>
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 This property is required. 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 This property is required. List<Property Map>
POSIX User extension
urnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUsers This property is required. List<Property Map>
This extension defines the attributes used to store the security questions of a user.
urnietfparamsscimschemasoracleidcsextensionselfChangeUsers This property is required. List<Property Map>
Controls whether a user can update themselves or not via User related APIs
urnietfparamsscimschemasoracleidcsextensionselfRegistrationUsers This property is required. List<Property Map>
This extension defines attributes used to manage self registration profile linked to the user.
urnietfparamsscimschemasoracleidcsextensionsffUsers This property is required. List<Property Map>
SFF Auth Keys User extension
urnietfparamsscimschemasoracleidcsextensionsocialAccountUsers This property is required. List<Property Map>
Social User extension
urnietfparamsscimschemasoracleidcsextensiontermsOfUseUsers This property is required. List<Property Map>
Terms Of Use extension
urnietfparamsscimschemasoracleidcsextensionuserCredentialsUsers This property is required. List<Property Map>
User's credentials
urnietfparamsscimschemasoracleidcsextensionuserStateUsers This property is required. List<Property Map>
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 This property is required. List<Property Map>
Oracle Identity Cloud Service User
userName This property is required. String
User name
userType This property is required. String
Used to identify the organization-to-user relationship
x509certificates This property is required. List<Property Map>
A list of certificates issued to the User.

GetDomainsUsersUserAddress

Country This property is required. string
The country name component.
Formatted This property is required. string
Full name
Locality This property is required. string
The city or locality component.
PostalCode This property is required. string
The zipcode or postal code component.
Primary This property is required. 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 This property is required. string
The state or region component.
StreetAddress This property is required. 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 This property is required. string
A label indicating the attribute's function.
Country This property is required. string
The country name component.
Formatted This property is required. string
Full name
Locality This property is required. string
The city or locality component.
PostalCode This property is required. string
The zipcode or postal code component.
Primary This property is required. 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 This property is required. string
The state or region component.
StreetAddress This property is required. 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 This property is required. string
A label indicating the attribute's function.
country This property is required. String
The country name component.
formatted This property is required. String
Full name
locality This property is required. String
The city or locality component.
postalCode This property is required. String
The zipcode or postal code component.
primary This property is required. 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 This property is required. String
The state or region component.
streetAddress This property is required. 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 This property is required. String
A label indicating the attribute's function.
country This property is required. string
The country name component.
formatted This property is required. string
Full name
locality This property is required. string
The city or locality component.
postalCode This property is required. string
The zipcode or postal code component.
primary This property is required. 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 This property is required. string
The state or region component.
streetAddress This property is required. 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 This property is required. string
A label indicating the attribute's function.
country This property is required. str
The country name component.
formatted This property is required. str
Full name
locality This property is required. str
The city or locality component.
postal_code This property is required. str
The zipcode or postal code component.
primary This property is required. 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 This property is required. str
The state or region component.
street_address This property is required. 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 This property is required. str
A label indicating the attribute's function.
country This property is required. String
The country name component.
formatted This property is required. String
Full name
locality This property is required. String
The city or locality component.
postalCode This property is required. String
The zipcode or postal code component.
primary This property is required. 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 This property is required. String
The state or region component.
streetAddress This property is required. 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 This property is required. String
A label indicating the attribute's function.

GetDomainsUsersUserEmail

PendingVerificationData This property is required. string
Pending e-mail address verification
Primary This property is required. 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 This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Verified This property is required. bool
A Boolean value that indicates if the phone number is verified.
PendingVerificationData This property is required. string
Pending e-mail address verification
Primary This property is required. 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 This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Verified This property is required. bool
A Boolean value that indicates if the phone number is verified.
pendingVerificationData This property is required. String
Pending e-mail address verification
primary This property is required. 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 This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
verified This property is required. Boolean
A Boolean value that indicates if the phone number is verified.
pendingVerificationData This property is required. string
Pending e-mail address verification
primary This property is required. 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 This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
verified This property is required. boolean
A Boolean value that indicates if the phone number is verified.
pending_verification_data This property is required. str
Pending e-mail address verification
primary This property is required. 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 This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
verified This property is required. bool
A Boolean value that indicates if the phone number is verified.
pendingVerificationData This property is required. String
Pending e-mail address verification
primary This property is required. 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 This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
verified This property is required. Boolean
A Boolean value that indicates if the phone number is verified.

GetDomainsUsersUserEntitlement

Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserGroup

DateAdded This property is required. string
Date when the member is Added to the group
Display This property is required. string
A human readable name, primarily used for display purposes.
ExternalId This property is required. string
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
MembershipOcid This property is required. string
The membership OCID.
NonUniqueDisplay This property is required. string
A human readable name for Group as defined by the Service Consumer. READ-ONLY.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
DateAdded This property is required. string
Date when the member is Added to the group
Display This property is required. string
A human readable name, primarily used for display purposes.
ExternalId This property is required. string
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
MembershipOcid This property is required. string
The membership OCID.
NonUniqueDisplay This property is required. string
A human readable name for Group as defined by the Service Consumer. READ-ONLY.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
dateAdded This property is required. String
Date when the member is Added to the group
display This property is required. String
A human readable name, primarily used for display purposes.
externalId This property is required. String
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
membershipOcid This property is required. String
The membership OCID.
nonUniqueDisplay This property is required. String
A human readable name for Group as defined by the Service Consumer. READ-ONLY.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
dateAdded This property is required. string
Date when the member is Added to the group
display This property is required. string
A human readable name, primarily used for display purposes.
externalId This property is required. string
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
membershipOcid This property is required. string
The membership OCID.
nonUniqueDisplay This property is required. string
A human readable name for Group as defined by the Service Consumer. READ-ONLY.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
date_added This property is required. str
Date when the member is Added to the group
display This property is required. str
A human readable name, primarily used for display purposes.
external_id This property is required. str
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
membership_ocid This property is required. str
The membership OCID.
non_unique_display This property is required. str
A human readable name for Group as defined by the Service Consumer. READ-ONLY.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
dateAdded This property is required. String
Date when the member is Added to the group
display This property is required. String
A human readable name, primarily used for display purposes.
externalId This property is required. String
An identifier for the Resource as defined by the Service Consumer. READ-ONLY.
membershipOcid This property is required. String
The membership OCID.
nonUniqueDisplay This property is required. String
A human readable name for Group as defined by the Service Consumer. READ-ONLY.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserIdcsCreatedBy

Display This property is required. string
A human readable name, primarily used for display purposes.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserIdcsLastModifiedBy

Display This property is required. string
A human readable name, primarily used for display purposes.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserIm

Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserMeta

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

GetDomainsUsersUserName

FamilyName This property is required. string
Last name
Formatted This property is required. string
Full name
GivenName This property is required. string
First name
HonorificPrefix This property is required. string
Prefix
HonorificSuffix This property is required. string
Suffix
MiddleName This property is required. string
Middle name
FamilyName This property is required. string
Last name
Formatted This property is required. string
Full name
GivenName This property is required. string
First name
HonorificPrefix This property is required. string
Prefix
HonorificSuffix This property is required. string
Suffix
MiddleName This property is required. string
Middle name
familyName This property is required. String
Last name
formatted This property is required. String
Full name
givenName This property is required. String
First name
honorificPrefix This property is required. String
Prefix
honorificSuffix This property is required. String
Suffix
middleName This property is required. String
Middle name
familyName This property is required. string
Last name
formatted This property is required. string
Full name
givenName This property is required. string
First name
honorificPrefix This property is required. string
Prefix
honorificSuffix This property is required. string
Suffix
middleName This property is required. string
Middle name
family_name This property is required. str
Last name
formatted This property is required. str
Full name
given_name This property is required. str
First name
honorific_prefix This property is required. str
Prefix
honorific_suffix This property is required. str
Suffix
middle_name This property is required. str
Middle name
familyName This property is required. String
Last name
formatted This property is required. String
Full name
givenName This property is required. String
First name
honorificPrefix This property is required. String
Prefix
honorificSuffix This property is required. String
Suffix
middleName This property is required. String
Middle name

GetDomainsUsersUserPhoneNumber

Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Verified This property is required. bool
A Boolean value that indicates if the phone number is verified.
Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Verified This property is required. bool
A Boolean value that indicates if the phone number is verified.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
verified This property is required. Boolean
A Boolean value that indicates if the phone number is verified.
display This property is required. string
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
verified This property is required. boolean
A Boolean value that indicates if the phone number is verified.
display This property is required. str
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
verified This property is required. bool
A Boolean value that indicates if the phone number is verified.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
verified This property is required. Boolean
A Boolean value that indicates if the phone number is verified.

GetDomainsUsersUserPhoto

Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserRole

Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserTag

Key This property is required. string
The user's API key value.
Value This property is required. string
The value of a X509 certificate.
Key This property is required. string
The user's API key value.
Value This property is required. string
The value of a X509 certificate.
key This property is required. String
The user's API key value.
value This property is required. String
The value of a X509 certificate.
key This property is required. string
The user's API key value.
value This property is required. string
The value of a X509 certificate.
key This property is required. str
The user's API key value.
value This property is required. str
The value of a X509 certificate.
key This property is required. String
The user's API key value.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20user

CostCenter This property is required. string
Identifies the name of a cost center.
Department This property is required. string
Identifies the name of a department.
Division This property is required. string
Identifies the name of a division.
EmployeeNumber This property is required. string
Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
Managers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager>
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 This property is required. string
Identifies the name of an organization.
CostCenter This property is required. string
Identifies the name of a cost center.
Department This property is required. string
Identifies the name of a department.
Division This property is required. string
Identifies the name of a division.
EmployeeNumber This property is required. string
Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
Managers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager
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 This property is required. string
Identifies the name of an organization.
costCenter This property is required. String
Identifies the name of a cost center.
department This property is required. String
Identifies the name of a department.
division This property is required. String
Identifies the name of a division.
employeeNumber This property is required. String
Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
managers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager>
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 This property is required. String
Identifies the name of an organization.
costCenter This property is required. string
Identifies the name of a cost center.
department This property is required. string
Identifies the name of a department.
division This property is required. string
Identifies the name of a division.
employeeNumber This property is required. string
Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
managers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager[]
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 This property is required. string
Identifies the name of an organization.
cost_center This property is required. str
Identifies the name of a cost center.
department This property is required. str
Identifies the name of a department.
division This property is required. str
Identifies the name of a division.
employee_number This property is required. str
Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
managers This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager]
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 This property is required. str
Identifies the name of an organization.
costCenter This property is required. String
Identifies the name of a cost center.
department This property is required. String
Identifies the name of a department.
division This property is required. String
Identifies the name of a division.
employeeNumber This property is required. String
Numeric or alphanumeric identifier assigned to a person, typically based on order of hire or association with an organization.
managers This property is required. 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 This property is required. String
Identifies the name of an organization.

GetDomainsUsersUserUrnietfparamsscimschemasextensionenterprise20userManager

DisplayName This property is required. string
The displayName of the User's manager. OPTIONAL and READ-ONLY.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
DisplayName This property is required. string
The displayName of the User's manager. OPTIONAL and READ-ONLY.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
displayName This property is required. String
The displayName of the User's manager. OPTIONAL and READ-ONLY.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
displayName This property is required. string
The displayName of the User's manager. OPTIONAL and READ-ONLY.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display_name This property is required. str
The displayName of the User's manager. OPTIONAL and READ-ONLY.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
displayName This property is required. String
The displayName of the User's manager. OPTIONAL and READ-ONLY.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTag

DefinedTags This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag>
Oracle Cloud Infrastructure Defined Tags
FreeformTags This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag>
Oracle Cloud Infrastructure Freeform Tags
TagSlug This property is required. string
Oracle Cloud Infrastructure Tag slug
DefinedTags This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag
Oracle Cloud Infrastructure Defined Tags
FreeformTags This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag
Oracle Cloud Infrastructure Freeform Tags
TagSlug This property is required. string
Oracle Cloud Infrastructure Tag slug
definedTags This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag>
Oracle Cloud Infrastructure Defined Tags
freeformTags This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag>
Oracle Cloud Infrastructure Freeform Tags
tagSlug This property is required. String
Oracle Cloud Infrastructure Tag slug
definedTags This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag[]
Oracle Cloud Infrastructure Defined Tags
freeformTags This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag[]
Oracle Cloud Infrastructure Freeform Tags
tagSlug This property is required. string
Oracle Cloud Infrastructure Tag slug
defined_tags This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag]
Oracle Cloud Infrastructure Defined Tags
freeform_tags This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag]
Oracle Cloud Infrastructure Freeform Tags
tag_slug This property is required. str
Oracle Cloud Infrastructure Tag slug
definedTags This property is required. List<Property Map>
Oracle Cloud Infrastructure Defined Tags
freeformTags This property is required. List<Property Map>
Oracle Cloud Infrastructure Freeform Tags
tagSlug This property is required. String
Oracle Cloud Infrastructure Tag slug

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag

Key This property is required. string
The user's API key value.
Namespace This property is required. string
Oracle Cloud Infrastructure Tag namespace
Value This property is required. string
The value of a X509 certificate.
Key This property is required. string
The user's API key value.
Namespace This property is required. string
Oracle Cloud Infrastructure Tag namespace
Value This property is required. string
The value of a X509 certificate.
key This property is required. String
The user's API key value.
namespace This property is required. String
Oracle Cloud Infrastructure Tag namespace
value This property is required. String
The value of a X509 certificate.
key This property is required. string
The user's API key value.
namespace This property is required. string
Oracle Cloud Infrastructure Tag namespace
value This property is required. string
The value of a X509 certificate.
key This property is required. str
The user's API key value.
namespace This property is required. str
Oracle Cloud Infrastructure Tag namespace
value This property is required. str
The value of a X509 certificate.
key This property is required. String
The user's API key value.
namespace This property is required. String
Oracle Cloud Infrastructure Tag namespace
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTag

Key This property is required. string
The user's API key value.
Value This property is required. string
The value of a X509 certificate.
Key This property is required. string
The user's API key value.
Value This property is required. string
The value of a X509 certificate.
key This property is required. String
The user's API key value.
value This property is required. String
The value of a X509 certificate.
key This property is required. string
The user's API key value.
value This property is required. string
The value of a X509 certificate.
key This property is required. str
The user's API key value.
value This property is required. str
The value of a X509 certificate.
key This property is required. String
The user's API key value.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUser

RiskLevel This property is required. string
Risk Level
RiskScores This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore>
The risk score pertaining to the user.
RiskLevel This property is required. string
Risk Level
RiskScores This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore
The risk score pertaining to the user.
riskLevel This property is required. String
Risk Level
riskScores This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore>
The risk score pertaining to the user.
riskLevel This property is required. string
Risk Level
riskScores This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore[]
The risk score pertaining to the user.
risk_level This property is required. str
Risk Level
risk_scores This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore]
The risk score pertaining to the user.
riskLevel This property is required. String
Risk Level
riskScores This property is required. List<Property Map>
The risk score pertaining to the user.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionadaptiveUserRiskScore

LastUpdateTimestamp This property is required. string
Last update timestamp for the risk score
Ref This property is required. string
User Token URI
RiskLevel This property is required. string
Risk Level
Score This property is required. int
Risk Score value
Source This property is required. string
Risk Provider Profile Source
Status This property is required. string
A supplemental status indicating the reason why a user is disabled
Value This property is required. string
The value of a X509 certificate.
LastUpdateTimestamp This property is required. string
Last update timestamp for the risk score
Ref This property is required. string
User Token URI
RiskLevel This property is required. string
Risk Level
Score This property is required. int
Risk Score value
Source This property is required. string
Risk Provider Profile Source
Status This property is required. string
A supplemental status indicating the reason why a user is disabled
Value This property is required. string
The value of a X509 certificate.
lastUpdateTimestamp This property is required. String
Last update timestamp for the risk score
ref This property is required. String
User Token URI
riskLevel This property is required. String
Risk Level
score This property is required. Integer
Risk Score value
source This property is required. String
Risk Provider Profile Source
status This property is required. String
A supplemental status indicating the reason why a user is disabled
value This property is required. String
The value of a X509 certificate.
lastUpdateTimestamp This property is required. string
Last update timestamp for the risk score
ref This property is required. string
User Token URI
riskLevel This property is required. string
Risk Level
score This property is required. number
Risk Score value
source This property is required. string
Risk Provider Profile Source
status This property is required. string
A supplemental status indicating the reason why a user is disabled
value This property is required. string
The value of a X509 certificate.
last_update_timestamp This property is required. str
Last update timestamp for the risk score
ref This property is required. str
User Token URI
risk_level This property is required. str
Risk Level
score This property is required. int
Risk Score value
source This property is required. str
Risk Provider Profile Source
status This property is required. str
A supplemental status indicating the reason why a user is disabled
value This property is required. str
The value of a X509 certificate.
lastUpdateTimestamp This property is required. String
Last update timestamp for the risk score
ref This property is required. String
User Token URI
riskLevel This property is required. String
Risk Level
score This property is required. Number
Risk Score value
source This property is required. String
Risk Provider Profile Source
status This property is required. String
A supplemental status indicating the reason why a user is disabled
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensioncapabilitiesUser

CanUseApiKeys This property is required. bool
Indicates whether a user can use API keys.
CanUseAuthTokens This property is required. bool
Indicates whether a user can use Auth tokens.
CanUseConsole This property is required. bool
Specifies whether user can access the Console.
CanUseConsolePassword This property is required. bool
Indicates whether a user can use Console passwords.
CanUseCustomerSecretKeys This property is required. bool
Indicates whether a user can use customer secret keys.
CanUseDbCredentials This property is required. bool
Indicates whether a user can use database credentials.
CanUseOauth2clientCredentials This property is required. bool
Indicates whether a user can use OAuth2 client credentials.
CanUseSmtpCredentials This property is required. bool
Indicates whether a user can use SMTP credentials.
CanUseApiKeys This property is required. bool
Indicates whether a user can use API keys.
CanUseAuthTokens This property is required. bool
Indicates whether a user can use Auth tokens.
CanUseConsole This property is required. bool
Specifies whether user can access the Console.
CanUseConsolePassword This property is required. bool
Indicates whether a user can use Console passwords.
CanUseCustomerSecretKeys This property is required. bool
Indicates whether a user can use customer secret keys.
CanUseDbCredentials This property is required. bool
Indicates whether a user can use database credentials.
CanUseOauth2clientCredentials This property is required. bool
Indicates whether a user can use OAuth2 client credentials.
CanUseSmtpCredentials This property is required. bool
Indicates whether a user can use SMTP credentials.
canUseApiKeys This property is required. Boolean
Indicates whether a user can use API keys.
canUseAuthTokens This property is required. Boolean
Indicates whether a user can use Auth tokens.
canUseConsole This property is required. Boolean
Specifies whether user can access the Console.
canUseConsolePassword This property is required. Boolean
Indicates whether a user can use Console passwords.
canUseCustomerSecretKeys This property is required. Boolean
Indicates whether a user can use customer secret keys.
canUseDbCredentials This property is required. Boolean
Indicates whether a user can use database credentials.
canUseOauth2clientCredentials This property is required. Boolean
Indicates whether a user can use OAuth2 client credentials.
canUseSmtpCredentials This property is required. Boolean
Indicates whether a user can use SMTP credentials.
canUseApiKeys This property is required. boolean
Indicates whether a user can use API keys.
canUseAuthTokens This property is required. boolean
Indicates whether a user can use Auth tokens.
canUseConsole This property is required. boolean
Specifies whether user can access the Console.
canUseConsolePassword This property is required. boolean
Indicates whether a user can use Console passwords.
canUseCustomerSecretKeys This property is required. boolean
Indicates whether a user can use customer secret keys.
canUseDbCredentials This property is required. boolean
Indicates whether a user can use database credentials.
canUseOauth2clientCredentials This property is required. boolean
Indicates whether a user can use OAuth2 client credentials.
canUseSmtpCredentials This property is required. boolean
Indicates whether a user can use SMTP credentials.
can_use_api_keys This property is required. bool
Indicates whether a user can use API keys.
can_use_auth_tokens This property is required. bool
Indicates whether a user can use Auth tokens.
can_use_console This property is required. bool
Specifies whether user can access the Console.
can_use_console_password This property is required. bool
Indicates whether a user can use Console passwords.
can_use_customer_secret_keys This property is required. bool
Indicates whether a user can use customer secret keys.
can_use_db_credentials This property is required. bool
Indicates whether a user can use database credentials.
can_use_oauth2client_credentials This property is required. bool
Indicates whether a user can use OAuth2 client credentials.
can_use_smtp_credentials This property is required. bool
Indicates whether a user can use SMTP credentials.
canUseApiKeys This property is required. Boolean
Indicates whether a user can use API keys.
canUseAuthTokens This property is required. Boolean
Indicates whether a user can use Auth tokens.
canUseConsole This property is required. Boolean
Specifies whether user can access the Console.
canUseConsolePassword This property is required. Boolean
Indicates whether a user can use Console passwords.
canUseCustomerSecretKeys This property is required. Boolean
Indicates whether a user can use customer secret keys.
canUseDbCredentials This property is required. Boolean
Indicates whether a user can use database credentials.
canUseOauth2clientCredentials This property is required. Boolean
Indicates whether a user can use OAuth2 client credentials.
canUseSmtpCredentials This property is required. Boolean
Indicates whether a user can use SMTP credentials.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbCredentialsUser

DbLoginAttempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
DbUserName This property is required. string
The database username.
DbLoginAttempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
DbUserName This property is required. string
The database username.
dbLoginAttempts This property is required. Integer
The number of failed login attempts. The value is reset to 0 after a successful login.
dbUserName This property is required. String
The database username.
dbLoginAttempts This property is required. number
The number of failed login attempts. The value is reset to 0 after a successful login.
dbUserName This property is required. string
The database username.
db_login_attempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
db_user_name This property is required. str
The database username.
dbLoginAttempts This property is required. Number
The number of failed login attempts. The value is reset to 0 after a successful login.
dbUserName This property is required. String
The database username.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUser

DbGlobalRoles This property is required. List<string>
DB global roles to which the user is granted access.
DomainLevelSchema This property is required. string
DB domain level schema to which the user is granted access.
InstanceLevelSchema This property is required. string
DB instance level schema to which the user is granted access.
IsDbUser This property is required. bool
If true, indicates this is a database user.
PasswordVerifiers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier>
Password Verifiers for DB User.
DbGlobalRoles This property is required. []string
DB global roles to which the user is granted access.
DomainLevelSchema This property is required. string
DB domain level schema to which the user is granted access.
InstanceLevelSchema This property is required. string
DB instance level schema to which the user is granted access.
IsDbUser This property is required. bool
If true, indicates this is a database user.
PasswordVerifiers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier
Password Verifiers for DB User.
dbGlobalRoles This property is required. List<String>
DB global roles to which the user is granted access.
domainLevelSchema This property is required. String
DB domain level schema to which the user is granted access.
instanceLevelSchema This property is required. String
DB instance level schema to which the user is granted access.
isDbUser This property is required. Boolean
If true, indicates this is a database user.
passwordVerifiers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier>
Password Verifiers for DB User.
dbGlobalRoles This property is required. string[]
DB global roles to which the user is granted access.
domainLevelSchema This property is required. string
DB domain level schema to which the user is granted access.
instanceLevelSchema This property is required. string
DB instance level schema to which the user is granted access.
isDbUser This property is required. boolean
If true, indicates this is a database user.
passwordVerifiers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier[]
Password Verifiers for DB User.
db_global_roles This property is required. Sequence[str]
DB global roles to which the user is granted access.
domain_level_schema This property is required. str
DB domain level schema to which the user is granted access.
instance_level_schema This property is required. str
DB instance level schema to which the user is granted access.
is_db_user This property is required. bool
If true, indicates this is a database user.
password_verifiers This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier]
Password Verifiers for DB User.
dbGlobalRoles This property is required. List<String>
DB global roles to which the user is granted access.
domainLevelSchema This property is required. String
DB domain level schema to which the user is granted access.
instanceLevelSchema This property is required. String
DB instance level schema to which the user is granted access.
isDbUser This property is required. Boolean
If true, indicates this is a database user.
passwordVerifiers This property is required. List<Property Map>
Password Verifiers for DB User.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiondbUserUserPasswordVerifier

Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUser

RealmUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser>
A list of kerberos realm users for an Oracle Identity Cloud Service User
RealmUsers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser
A list of kerberos realm users for an Oracle Identity Cloud Service User
realmUsers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser>
A list of kerberos realm users for an Oracle Identity Cloud Service User
realmUsers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser[]
A list of kerberos realm users for an Oracle Identity Cloud Service User
realm_users This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser]
A list of kerberos realm users for an Oracle Identity Cloud Service User
realmUsers This property is required. List<Property Map>
A list of kerberos realm users for an Oracle Identity Cloud Service User

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionkerberosUserUserRealmUser

PrincipalName This property is required. string
Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
RealmName This property is required. string
Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
PrincipalName This property is required. string
Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
RealmName This property is required. string
Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
principalName This property is required. String
Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
realmName This property is required. String
Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
principalName This property is required. string
Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
realmName This property is required. string
Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
principal_name This property is required. str
Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
realm_name This property is required. str
Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
principalName This property is required. String
Principal Name of the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
realmName This property is required. String
Realm Name for the KerberosRealmUser associated with the Oracle Identity Cloud Service User.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUser

BypassCodes This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserBypassCode>
A list of bypass codes that belongs to the user.
Devices This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice>
A list of devices enrolled by the user.
LoginAttempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
MfaEnabledOn This property is required. string
The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
MfaIgnoredApps This property is required. List<string>
User MFA Ignored Apps Identifiers
MfaStatus This property is required. string
The user opted for MFA.
PreferredAuthenticationFactor This property is required. string
The preferred authentication factor type.
PreferredAuthenticationMethod This property is required. string
The preferred authentication method.
PreferredDevices This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice>
The user's preferred device.
PreferredThirdPartyVendor This property is required. string
The preferred third-party vendor name.
TrustedUserAgents This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent>
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 This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserBypassCode
A list of bypass codes that belongs to the user.
Devices This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice
A list of devices enrolled by the user.
LoginAttempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
MfaEnabledOn This property is required. string
The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
MfaIgnoredApps This property is required. []string
User MFA Ignored Apps Identifiers
MfaStatus This property is required. string
The user opted for MFA.
PreferredAuthenticationFactor This property is required. string
The preferred authentication factor type.
PreferredAuthenticationMethod This property is required. string
The preferred authentication method.
PreferredDevices This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice
The user's preferred device.
PreferredThirdPartyVendor This property is required. string
The preferred third-party vendor name.
TrustedUserAgents This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserBypassCode>
A list of bypass codes that belongs to the user.
devices This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice>
A list of devices enrolled by the user.
loginAttempts This property is required. Integer
The number of failed login attempts. The value is reset to 0 after a successful login.
mfaEnabledOn This property is required. String
The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
mfaIgnoredApps This property is required. List<String>
User MFA Ignored Apps Identifiers
mfaStatus This property is required. String
The user opted for MFA.
preferredAuthenticationFactor This property is required. String
The preferred authentication factor type.
preferredAuthenticationMethod This property is required. String
The preferred authentication method.
preferredDevices This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice>
The user's preferred device.
preferredThirdPartyVendor This property is required. String
The preferred third-party vendor name.
trustedUserAgents This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent>
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 This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserBypassCode[]
A list of bypass codes that belongs to the user.
devices This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice[]
A list of devices enrolled by the user.
loginAttempts This property is required. number
The number of failed login attempts. The value is reset to 0 after a successful login.
mfaEnabledOn This property is required. string
The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
mfaIgnoredApps This property is required. string[]
User MFA Ignored Apps Identifiers
mfaStatus This property is required. string
The user opted for MFA.
preferredAuthenticationFactor This property is required. string
The preferred authentication factor type.
preferredAuthenticationMethod This property is required. string
The preferred authentication method.
preferredDevices This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice[]
The user's preferred device.
preferredThirdPartyVendor This property is required. string
The preferred third-party vendor name.
trustedUserAgents This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent[]
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 This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserBypassCode]
A list of bypass codes that belongs to the user.
devices This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice]
A list of devices enrolled by the user.
login_attempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
mfa_enabled_on This property is required. str
The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
mfa_ignored_apps This property is required. Sequence[str]
User MFA Ignored Apps Identifiers
mfa_status This property is required. str
The user opted for MFA.
preferred_authentication_factor This property is required. str
The preferred authentication factor type.
preferred_authentication_method This property is required. str
The preferred authentication method.
preferred_devices This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice]
The user's preferred device.
preferred_third_party_vendor This property is required. str
The preferred third-party vendor name.
trusted_user_agents This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent]
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 This property is required. List<Property Map>
A list of bypass codes that belongs to the user.
devices This property is required. List<Property Map>
A list of devices enrolled by the user.
loginAttempts This property is required. Number
The number of failed login attempts. The value is reset to 0 after a successful login.
mfaEnabledOn This property is required. String
The date when the user enrolled in multi factor authentication. This will be set to null, when the user resets their factors.
mfaIgnoredApps This property is required. List<String>
User MFA Ignored Apps Identifiers
mfaStatus This property is required. String
The user opted for MFA.
preferredAuthenticationFactor This property is required. String
The preferred authentication factor type.
preferredAuthenticationMethod This property is required. String
The preferred authentication method.
preferredDevices This property is required. List<Property Map>
The user's preferred device.
preferredThirdPartyVendor This property is required. String
The preferred third-party vendor name.
trustedUserAgents This property is required. List<Property Map>
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

Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserDevice

AuthenticationMethod This property is required. string
The authentication method.
Display This property is required. string
A human readable name, primarily used for display purposes.
FactorStatus This property is required. string
The device authentication factor status.
FactorType This property is required. string
Authentication Factor Type
LastSyncTime This property is required. string
The last sync time for device.
Ref This property is required. string
User Token URI
Status This property is required. string
A supplemental status indicating the reason why a user is disabled
ThirdPartyVendorName This property is required. string
The third-party factor vendor name.
Value This property is required. string
The value of a X509 certificate.
AuthenticationMethod This property is required. string
The authentication method.
Display This property is required. string
A human readable name, primarily used for display purposes.
FactorStatus This property is required. string
The device authentication factor status.
FactorType This property is required. string
Authentication Factor Type
LastSyncTime This property is required. string
The last sync time for device.
Ref This property is required. string
User Token URI
Status This property is required. string
A supplemental status indicating the reason why a user is disabled
ThirdPartyVendorName This property is required. string
The third-party factor vendor name.
Value This property is required. string
The value of a X509 certificate.
authenticationMethod This property is required. String
The authentication method.
display This property is required. String
A human readable name, primarily used for display purposes.
factorStatus This property is required. String
The device authentication factor status.
factorType This property is required. String
Authentication Factor Type
lastSyncTime This property is required. String
The last sync time for device.
ref This property is required. String
User Token URI
status This property is required. String
A supplemental status indicating the reason why a user is disabled
thirdPartyVendorName This property is required. String
The third-party factor vendor name.
value This property is required. String
The value of a X509 certificate.
authenticationMethod This property is required. string
The authentication method.
display This property is required. string
A human readable name, primarily used for display purposes.
factorStatus This property is required. string
The device authentication factor status.
factorType This property is required. string
Authentication Factor Type
lastSyncTime This property is required. string
The last sync time for device.
ref This property is required. string
User Token URI
status This property is required. string
A supplemental status indicating the reason why a user is disabled
thirdPartyVendorName This property is required. string
The third-party factor vendor name.
value This property is required. string
The value of a X509 certificate.
authentication_method This property is required. str
The authentication method.
display This property is required. str
A human readable name, primarily used for display purposes.
factor_status This property is required. str
The device authentication factor status.
factor_type This property is required. str
Authentication Factor Type
last_sync_time This property is required. str
The last sync time for device.
ref This property is required. str
User Token URI
status This property is required. str
A supplemental status indicating the reason why a user is disabled
third_party_vendor_name This property is required. str
The third-party factor vendor name.
value This property is required. str
The value of a X509 certificate.
authenticationMethod This property is required. String
The authentication method.
display This property is required. String
A human readable name, primarily used for display purposes.
factorStatus This property is required. String
The device authentication factor status.
factorType This property is required. String
Authentication Factor Type
lastSyncTime This property is required. String
The last sync time for device.
ref This property is required. String
User Token URI
status This property is required. String
A supplemental status indicating the reason why a user is disabled
thirdPartyVendorName This property is required. String
The third-party factor vendor name.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserPreferredDevice

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionmfaUserTrustedUserAgent

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUser

ApplicablePasswordPolicies This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUserApplicablePasswordPolicy>
Applicable Password Policy
CantChange This property is required. bool
Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
CantExpire This property is required. bool
Indicates that the password expiry policy will not be applied for the current Resource
Expired This property is required. bool
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
LastFailedValidationDate This property is required. string
A DateTime that specifies the date and time when last failed password validation was set
LastSuccessfulSetDate This property is required. string
A DateTime that specifies the date and time when the current password was set
LastSuccessfulValidationDate This property is required. string
A DateTime that specifies the date and time when last successful password validation was set
MustChange This property is required. 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.
ApplicablePasswordPolicies This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUserApplicablePasswordPolicy
Applicable Password Policy
CantChange This property is required. bool
Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
CantExpire This property is required. bool
Indicates that the password expiry policy will not be applied for the current Resource
Expired This property is required. bool
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
LastFailedValidationDate This property is required. string
A DateTime that specifies the date and time when last failed password validation was set
LastSuccessfulSetDate This property is required. string
A DateTime that specifies the date and time when the current password was set
LastSuccessfulValidationDate This property is required. string
A DateTime that specifies the date and time when last successful password validation was set
MustChange This property is required. 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.
applicablePasswordPolicies This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUserApplicablePasswordPolicy>
Applicable Password Policy
cantChange This property is required. Boolean
Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
cantExpire This property is required. Boolean
Indicates that the password expiry policy will not be applied for the current Resource
expired This property is required. Boolean
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lastFailedValidationDate This property is required. String
A DateTime that specifies the date and time when last failed password validation was set
lastSuccessfulSetDate This property is required. String
A DateTime that specifies the date and time when the current password was set
lastSuccessfulValidationDate This property is required. String
A DateTime that specifies the date and time when last successful password validation was set
mustChange This property is required. 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.
applicablePasswordPolicies This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUserApplicablePasswordPolicy[]
Applicable Password Policy
cantChange This property is required. boolean
Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
cantExpire This property is required. boolean
Indicates that the password expiry policy will not be applied for the current Resource
expired This property is required. boolean
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lastFailedValidationDate This property is required. string
A DateTime that specifies the date and time when last failed password validation was set
lastSuccessfulSetDate This property is required. string
A DateTime that specifies the date and time when the current password was set
lastSuccessfulValidationDate This property is required. string
A DateTime that specifies the date and time when last successful password validation was set
mustChange This property is required. 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_policies This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordStateUserApplicablePasswordPolicy]
Applicable Password Policy
cant_change This property is required. bool
Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
cant_expire This property is required. bool
Indicates that the password expiry policy will not be applied for the current Resource
expired This property is required. bool
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
last_failed_validation_date This property is required. str
A DateTime that specifies the date and time when last failed password validation was set
last_successful_set_date This property is required. str
A DateTime that specifies the date and time when the current password was set
last_successful_validation_date This property is required. str
A DateTime that specifies the date and time when last successful password validation was set
must_change This property is required. 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.
applicablePasswordPolicies This property is required. List<Property Map>
Applicable Password Policy
cantChange This property is required. Boolean
Indicates that the current password MAY NOT be changed and all other password expiry settings SHALL be ignored
cantExpire This property is required. Boolean
Indicates that the password expiry policy will not be applied for the current Resource
expired This property is required. Boolean
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lastFailedValidationDate This property is required. String
A DateTime that specifies the date and time when last failed password validation was set
lastSuccessfulSetDate This property is required. String
A DateTime that specifies the date and time when the current password was set
lastSuccessfulValidationDate This property is required. String
A DateTime that specifies the date and time when last successful password validation was set
mustChange This property is required. 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

Display This property is required. string
A human readable name, primarily used for display purposes.
Priority This property is required. int
PasswordPolicy priority
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Priority This property is required. int
PasswordPolicy priority
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
priority This property is required. Integer
PasswordPolicy priority
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
priority This property is required. number
PasswordPolicy priority
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
priority This property is required. int
PasswordPolicy priority
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
priority This property is required. Number
PasswordPolicy priority
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUser

FactorIdentifiers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier>
Factor Identifier ID
FactorMethod This property is required. string
Authentication Factor Method
FactorType This property is required. string
Authentication Factor Type
FactorIdentifiers This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier
Factor Identifier ID
FactorMethod This property is required. string
Authentication Factor Method
FactorType This property is required. string
Authentication Factor Type
factorIdentifiers This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier>
Factor Identifier ID
factorMethod This property is required. String
Authentication Factor Method
factorType This property is required. String
Authentication Factor Type
factorIdentifiers This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier[]
Factor Identifier ID
factorMethod This property is required. string
Authentication Factor Method
factorType This property is required. string
Authentication Factor Type
factor_identifiers This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier]
Factor Identifier ID
factor_method This property is required. str
Authentication Factor Method
factor_type This property is required. str
Authentication Factor Type
factorIdentifiers This property is required. List<Property Map>
Factor Identifier ID
factorMethod This property is required. String
Authentication Factor Method
factorType This property is required. String
Authentication Factor Type

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionpasswordlessUserFactorIdentifier

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionposixUser

Gecos This property is required. string
General information about the POSIX account such as their real name and phone number
GidNumber This property is required. int
Primary Group identifier of the POSIX user
HomeDirectory This property is required. string
The absolute path to the home directory of the POSIX account
LoginShell This property is required. string
The path to the login shell of the POSIX account
UidNumber This property is required. int
Integer uniquely identifying a user in a POSIX administrative domain
Gecos This property is required. string
General information about the POSIX account such as their real name and phone number
GidNumber This property is required. int
Primary Group identifier of the POSIX user
HomeDirectory This property is required. string
The absolute path to the home directory of the POSIX account
LoginShell This property is required. string
The path to the login shell of the POSIX account
UidNumber This property is required. int
Integer uniquely identifying a user in a POSIX administrative domain
gecos This property is required. String
General information about the POSIX account such as their real name and phone number
gidNumber This property is required. Integer
Primary Group identifier of the POSIX user
homeDirectory This property is required. String
The absolute path to the home directory of the POSIX account
loginShell This property is required. String
The path to the login shell of the POSIX account
uidNumber This property is required. Integer
Integer uniquely identifying a user in a POSIX administrative domain
gecos This property is required. string
General information about the POSIX account such as their real name and phone number
gidNumber This property is required. number
Primary Group identifier of the POSIX user
homeDirectory This property is required. string
The absolute path to the home directory of the POSIX account
loginShell This property is required. string
The path to the login shell of the POSIX account
uidNumber This property is required. number
Integer uniquely identifying a user in a POSIX administrative domain
gecos This property is required. str
General information about the POSIX account such as their real name and phone number
gid_number This property is required. int
Primary Group identifier of the POSIX user
home_directory This property is required. str
The absolute path to the home directory of the POSIX account
login_shell This property is required. str
The path to the login shell of the POSIX account
uid_number This property is required. int
Integer uniquely identifying a user in a POSIX administrative domain
gecos This property is required. String
General information about the POSIX account such as their real name and phone number
gidNumber This property is required. Number
Primary Group identifier of the POSIX user
homeDirectory This property is required. String
The absolute path to the home directory of the POSIX account
loginShell This property is required. String
The path to the login shell of the POSIX account
uidNumber This property is required. Number
Integer uniquely identifying a user in a POSIX administrative domain

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUser

SecQuestions This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUserSecQuestion>
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 This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUserSecQuestion
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUserSecQuestion>
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 This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUserSecQuestion[]
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 This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsecurityQuestionsUserSecQuestion]
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 This property is required. 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

Answer This property is required. string
The answer provided by a user for a security question.
HintText This property is required. string
The hint for an answer that's given by user when setting up a security question.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Answer This property is required. string
The answer provided by a user for a security question.
HintText This property is required. string
The hint for an answer that's given by user when setting up a security question.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
answer This property is required. String
The answer provided by a user for a security question.
hintText This property is required. String
The hint for an answer that's given by user when setting up a security question.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
answer This property is required. string
The answer provided by a user for a security question.
hintText This property is required. string
The hint for an answer that's given by user when setting up a security question.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
answer This property is required. str
The answer provided by a user for a security question.
hint_text This property is required. str
The hint for an answer that's given by user when setting up a security question.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
answer This property is required. String
The answer provided by a user for a security question.
hintText This property is required. String
The hint for an answer that's given by user when setting up a security question.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfChangeUser

AllowSelfChange This property is required. bool
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
AllowSelfChange This property is required. bool
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
allowSelfChange This property is required. Boolean
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
allowSelfChange This property is required. boolean
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
allow_self_change This property is required. bool
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
allowSelfChange This property is required. Boolean
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUser

ConsentGranted This property is required. bool
A boolean value that indicates whether the consent is granted.
SelfRegistrationProfiles This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile>
Self registration profile used when user is self registered.
UserToken This property is required. string
User token returned if userFlowControlledByExternalClient is true
ConsentGranted This property is required. bool
A boolean value that indicates whether the consent is granted.
SelfRegistrationProfiles This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile
Self registration profile used when user is self registered.
UserToken This property is required. string
User token returned if userFlowControlledByExternalClient is true
consentGranted This property is required. Boolean
A boolean value that indicates whether the consent is granted.
selfRegistrationProfiles This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile>
Self registration profile used when user is self registered.
userToken This property is required. String
User token returned if userFlowControlledByExternalClient is true
consentGranted This property is required. boolean
A boolean value that indicates whether the consent is granted.
selfRegistrationProfiles This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile[]
Self registration profile used when user is self registered.
userToken This property is required. string
User token returned if userFlowControlledByExternalClient is true
consent_granted This property is required. bool
A boolean value that indicates whether the consent is granted.
self_registration_profiles This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile]
Self registration profile used when user is self registered.
user_token This property is required. str
User token returned if userFlowControlledByExternalClient is true
consentGranted This property is required. Boolean
A boolean value that indicates whether the consent is granted.
selfRegistrationProfiles This property is required. List<Property Map>
Self registration profile used when user is self registered.
userToken This property is required. String
User token returned if userFlowControlledByExternalClient is true

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionselfRegistrationUserSelfRegistrationProfile

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsffUser

SffAuthKeys This property is required. string
SFF auth keys clob
SffAuthKeys This property is required. string
SFF auth keys clob
sffAuthKeys This property is required. String
SFF auth keys clob
sffAuthKeys This property is required. string
SFF auth keys clob
sff_auth_keys This property is required. str
SFF auth keys clob
sffAuthKeys This property is required. String
SFF auth keys clob

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUser

socialAccounts This property is required. List<Property Map>
Description:

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionsocialAccountUserSocialAccount

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUser

termsOfUseConsents This property is required. List<Property Map>
Description:

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensiontermsOfUseUserTermsOfUseConsent

Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUser

ApiKeys This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey>
A list of API keys corresponding to user.
AuthTokens This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken>
A list of Auth tokens corresponding to user.
CustomerSecretKeys This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey>
A list of customer secret keys corresponding to user.
DbCredentials This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential>
A list of database credentials corresponding to user.
OAuth2clientCredentials This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential>
A list of OAuth2 client credentials corresponding to a user.
SmtpCredentials This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential>
A list of SMTP credentials corresponding to user.
ApiKeys This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey
A list of API keys corresponding to user.
AuthTokens This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken
A list of Auth tokens corresponding to user.
CustomerSecretKeys This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey
A list of customer secret keys corresponding to user.
DbCredentials This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential
A list of database credentials corresponding to user.
OAuth2clientCredentials This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential
A list of OAuth2 client credentials corresponding to a user.
SmtpCredentials This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential
A list of SMTP credentials corresponding to user.
apiKeys This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey>
A list of API keys corresponding to user.
authTokens This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken>
A list of Auth tokens corresponding to user.
customerSecretKeys This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey>
A list of customer secret keys corresponding to user.
dbCredentials This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential>
A list of database credentials corresponding to user.
oAuth2clientCredentials This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential>
A list of OAuth2 client credentials corresponding to a user.
smtpCredentials This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential>
A list of SMTP credentials corresponding to user.
apiKeys This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey[]
A list of API keys corresponding to user.
authTokens This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken[]
A list of Auth tokens corresponding to user.
customerSecretKeys This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey[]
A list of customer secret keys corresponding to user.
dbCredentials This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential[]
A list of database credentials corresponding to user.
oAuth2clientCredentials This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential[]
A list of OAuth2 client credentials corresponding to a user.
smtpCredentials This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential[]
A list of SMTP credentials corresponding to user.
api_keys This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey]
A list of API keys corresponding to user.
auth_tokens This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken]
A list of Auth tokens corresponding to user.
customer_secret_keys This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey]
A list of customer secret keys corresponding to user.
db_credentials This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential]
A list of database credentials corresponding to user.
o_auth2client_credentials This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential]
A list of OAuth2 client credentials corresponding to a user.
smtp_credentials This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential]
A list of SMTP credentials corresponding to user.
apiKeys This property is required. List<Property Map>
A list of API keys corresponding to user.
authTokens This property is required. List<Property Map>
A list of Auth tokens corresponding to user.
customerSecretKeys This property is required. List<Property Map>
A list of customer secret keys corresponding to user.
dbCredentials This property is required. List<Property Map>
A list of database credentials corresponding to user.
oAuth2clientCredentials This property is required. List<Property Map>
A list of OAuth2 client credentials corresponding to a user.
smtpCredentials This property is required. List<Property Map>
A list of SMTP credentials corresponding to user.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserApiKey

Key This property is required. string
The user's API key value.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Key This property is required. string
The user's API key value.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
key This property is required. String
The user's API key value.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
key This property is required. string
The user's API key value.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
key This property is required. str
The user's API key value.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
key This property is required. String
The user's API key value.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserAuthToken

Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserCustomerSecretKey

Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserDbCredential

Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserOAuth2clientCredential

Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserCredentialsUserSmtpCredential

Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUser

LastFailedLoginDate This property is required. string
The last failed login date.
LastSuccessfulLoginDate This property is required. string
The last successful login date.
Lockeds This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked>
A complex attribute that indicates an account is locked (blocking any new sessions).
LoginAttempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
MaxConcurrentSessions This property is required. int
The maximum number of concurrent sessions for a user.
PreviousSuccessfulLoginDate This property is required. string
The previous successful login date.
RecoveryAttempts This property is required. int
The number of failed recovery attempts. The value is reset to 0 after a successful login.
RecoveryEnrollAttempts This property is required. int
The number of failed account recovery enrollment attempts.
RecoveryLockeds This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserRecoveryLocked>
A complex attribute that indicates a password recovery is locked (blocking any new sessions).
LastFailedLoginDate This property is required. string
The last failed login date.
LastSuccessfulLoginDate This property is required. string
The last successful login date.
Lockeds This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked
A complex attribute that indicates an account is locked (blocking any new sessions).
LoginAttempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
MaxConcurrentSessions This property is required. int
The maximum number of concurrent sessions for a user.
PreviousSuccessfulLoginDate This property is required. string
The previous successful login date.
RecoveryAttempts This property is required. int
The number of failed recovery attempts. The value is reset to 0 after a successful login.
RecoveryEnrollAttempts This property is required. int
The number of failed account recovery enrollment attempts.
RecoveryLockeds This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserRecoveryLocked
A complex attribute that indicates a password recovery is locked (blocking any new sessions).
lastFailedLoginDate This property is required. String
The last failed login date.
lastSuccessfulLoginDate This property is required. String
The last successful login date.
lockeds This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked>
A complex attribute that indicates an account is locked (blocking any new sessions).
loginAttempts This property is required. Integer
The number of failed login attempts. The value is reset to 0 after a successful login.
maxConcurrentSessions This property is required. Integer
The maximum number of concurrent sessions for a user.
previousSuccessfulLoginDate This property is required. String
The previous successful login date.
recoveryAttempts This property is required. Integer
The number of failed recovery attempts. The value is reset to 0 after a successful login.
recoveryEnrollAttempts This property is required. Integer
The number of failed account recovery enrollment attempts.
recoveryLockeds This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserRecoveryLocked>
A complex attribute that indicates a password recovery is locked (blocking any new sessions).
lastFailedLoginDate This property is required. string
The last failed login date.
lastSuccessfulLoginDate This property is required. string
The last successful login date.
lockeds This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked[]
A complex attribute that indicates an account is locked (blocking any new sessions).
loginAttempts This property is required. number
The number of failed login attempts. The value is reset to 0 after a successful login.
maxConcurrentSessions This property is required. number
The maximum number of concurrent sessions for a user.
previousSuccessfulLoginDate This property is required. string
The previous successful login date.
recoveryAttempts This property is required. number
The number of failed recovery attempts. The value is reset to 0 after a successful login.
recoveryEnrollAttempts This property is required. number
The number of failed account recovery enrollment attempts.
recoveryLockeds This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserRecoveryLocked[]
A complex attribute that indicates a password recovery is locked (blocking any new sessions).
last_failed_login_date This property is required. str
The last failed login date.
last_successful_login_date This property is required. str
The last successful login date.
lockeds This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked]
A complex attribute that indicates an account is locked (blocking any new sessions).
login_attempts This property is required. int
The number of failed login attempts. The value is reset to 0 after a successful login.
max_concurrent_sessions This property is required. int
The maximum number of concurrent sessions for a user.
previous_successful_login_date This property is required. str
The previous successful login date.
recovery_attempts This property is required. int
The number of failed recovery attempts. The value is reset to 0 after a successful login.
recovery_enroll_attempts This property is required. int
The number of failed account recovery enrollment attempts.
recovery_lockeds This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserRecoveryLocked]
A complex attribute that indicates a password recovery is locked (blocking any new sessions).
lastFailedLoginDate This property is required. String
The last failed login date.
lastSuccessfulLoginDate This property is required. String
The last successful login date.
lockeds This property is required. List<Property Map>
A complex attribute that indicates an account is locked (blocking any new sessions).
loginAttempts This property is required. Number
The number of failed login attempts. The value is reset to 0 after a successful login.
maxConcurrentSessions This property is required. Number
The maximum number of concurrent sessions for a user.
previousSuccessfulLoginDate This property is required. String
The previous successful login date.
recoveryAttempts This property is required. Number
The number of failed recovery attempts. The value is reset to 0 after a successful login.
recoveryEnrollAttempts This property is required. Number
The number of failed account recovery enrollment attempts.
recoveryLockeds This property is required. List<Property Map>
A complex attribute that indicates a password recovery is locked (blocking any new sessions).

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserStateUserLocked

Expired This property is required. bool
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
LockDate This property is required. string
The date and time that the current resource was locked.
On This property is required. bool
Indicates that the recovery is locked.
Reason This property is required. 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 This property is required. bool
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
LockDate This property is required. string
The date and time that the current resource was locked.
On This property is required. bool
Indicates that the recovery is locked.
Reason This property is required. 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 This property is required. Boolean
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lockDate This property is required. String
The date and time that the current resource was locked.
on This property is required. Boolean
Indicates that the recovery is locked.
reason This property is required. 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 This property is required. boolean
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lockDate This property is required. string
The date and time that the current resource was locked.
on This property is required. boolean
Indicates that the recovery is locked.
reason This property is required. 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 This property is required. bool
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lock_date This property is required. str
The date and time that the current resource was locked.
on This property is required. bool
Indicates that the recovery is locked.
reason This property is required. 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 This property is required. Boolean
Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
lockDate This property is required. String
The date and time that the current resource was locked.
on This property is required. Boolean
Indicates that the recovery is locked.
reason This property is required. 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

LockDate This property is required. string
The date and time that the current resource was locked.
On This property is required. bool
Indicates that the recovery is locked.
LockDate This property is required. string
The date and time that the current resource was locked.
On This property is required. bool
Indicates that the recovery is locked.
lockDate This property is required. String
The date and time that the current resource was locked.
on This property is required. Boolean
Indicates that the recovery is locked.
lockDate This property is required. string
The date and time that the current resource was locked.
on This property is required. boolean
Indicates that the recovery is locked.
lock_date This property is required. str
The date and time that the current resource was locked.
on This property is required. bool
Indicates that the recovery is locked.
lockDate This property is required. String
The date and time that the current resource was locked.
on This property is required. Boolean
Indicates that the recovery is locked.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUser

AccountRecoveryRequired This property is required. bool
Boolean value to prompt user to setup account recovery during login.
Accounts This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole>
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.
ApplicableAuthenticationTargetApps This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp>
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 This property is required. 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 This property is required. string
User creation mechanism
DelegatedAuthenticationTargetApps This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp>
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.
DoNotShowGettingStarted This property is required. bool
A Boolean value indicating whether or not to hide the getting started page
Grants This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant>
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.
GroupMembershipLastModified This property is required. string
Specifies date time when a User's group membership was last modified.
IdcsAppRolesLimitedToGroups This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup>
Description:
IsAccountRecoveryEnrolled This property is required. bool
A Boolean value indicating whether or not a user is enrolled for account recovery
IsAuthenticationDelegated This property is required. bool
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
IsFederatedUser This property is required. bool
A Boolean value indicating whether or not the user is federated.
IsGroupMembershipNormalized This property is required. bool
A Boolean value indicating whether or not group membership is normalized for this user.
IsGroupMembershipSyncedToUsersGroups This property is required. bool
A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
NotificationEmailTemplateId This property is required. string
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.
PreferredUiLandingPage This property is required. string
User's preferred landing page following login, logout and reset password.
ServiceUser This property is required. bool
Indicates if User is a Service User
Status This property is required. string
A supplemental status indicating the reason why a user is disabled
SupportAccounts This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount>
A list of Support Accounts corresponding to user.
SyncedFromApps This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp>
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.
UserFlowControlledByExternalClient This property is required. bool
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 This property is required. string
User Support Account Provider
UserTokens This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken>
User token returned if userFlowControlledByExternalClient is true
AccountRecoveryRequired This property is required. bool
Boolean value to prompt user to setup account recovery during login.
Accounts This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount
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 This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole
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.
ApplicableAuthenticationTargetApps This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp
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 This property is required. 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 This property is required. string
User creation mechanism
DelegatedAuthenticationTargetApps This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp
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.
DoNotShowGettingStarted This property is required. bool
A Boolean value indicating whether or not to hide the getting started page
Grants This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant
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.
GroupMembershipLastModified This property is required. string
Specifies date time when a User's group membership was last modified.
IdcsAppRolesLimitedToGroups This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup
Description:
IsAccountRecoveryEnrolled This property is required. bool
A Boolean value indicating whether or not a user is enrolled for account recovery
IsAuthenticationDelegated This property is required. bool
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
IsFederatedUser This property is required. bool
A Boolean value indicating whether or not the user is federated.
IsGroupMembershipNormalized This property is required. bool
A Boolean value indicating whether or not group membership is normalized for this user.
IsGroupMembershipSyncedToUsersGroups This property is required. bool
A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
NotificationEmailTemplateId This property is required. string
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.
PreferredUiLandingPage This property is required. string
User's preferred landing page following login, logout and reset password.
ServiceUser This property is required. bool
Indicates if User is a Service User
Status This property is required. string
A supplemental status indicating the reason why a user is disabled
SupportAccounts This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount
A list of Support Accounts corresponding to user.
SyncedFromApps This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp
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.
UserFlowControlledByExternalClient This property is required. bool
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 This property is required. string
User Support Account Provider
UserTokens This property is required. []GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken
User token returned if userFlowControlledByExternalClient is true
accountRecoveryRequired This property is required. Boolean
Boolean value to prompt user to setup account recovery during login.
accounts This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount>
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 This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole>
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.
applicableAuthenticationTargetApps This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp>
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 This property is required. 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 This property is required. String
User creation mechanism
delegatedAuthenticationTargetApps This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp>
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.
doNotShowGettingStarted This property is required. Boolean
A Boolean value indicating whether or not to hide the getting started page
grants This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant>
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.
groupMembershipLastModified This property is required. String
Specifies date time when a User's group membership was last modified.
idcsAppRolesLimitedToGroups This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup>
Description:
isAccountRecoveryEnrolled This property is required. Boolean
A Boolean value indicating whether or not a user is enrolled for account recovery
isAuthenticationDelegated This property is required. Boolean
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
isFederatedUser This property is required. Boolean
A Boolean value indicating whether or not the user is federated.
isGroupMembershipNormalized This property is required. Boolean
A Boolean value indicating whether or not group membership is normalized for this user.
isGroupMembershipSyncedToUsersGroups This property is required. Boolean
A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
notificationEmailTemplateId This property is required. String
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.
preferredUiLandingPage This property is required. String
User's preferred landing page following login, logout and reset password.
serviceUser This property is required. Boolean
Indicates if User is a Service User
status This property is required. String
A supplemental status indicating the reason why a user is disabled
supportAccounts This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount>
A list of Support Accounts corresponding to user.
syncedFromApps This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp>
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.
userFlowControlledByExternalClient This property is required. Boolean
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 This property is required. String
User Support Account Provider
userTokens This property is required. List<GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken>
User token returned if userFlowControlledByExternalClient is true
accountRecoveryRequired This property is required. boolean
Boolean value to prompt user to setup account recovery during login.
accounts This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount[]
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 This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole[]
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.
applicableAuthenticationTargetApps This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp[]
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 This property is required. 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 This property is required. string
User creation mechanism
delegatedAuthenticationTargetApps This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp[]
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.
doNotShowGettingStarted This property is required. boolean
A Boolean value indicating whether or not to hide the getting started page
grants This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant[]
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.
groupMembershipLastModified This property is required. string
Specifies date time when a User's group membership was last modified.
idcsAppRolesLimitedToGroups This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup[]
Description:
isAccountRecoveryEnrolled This property is required. boolean
A Boolean value indicating whether or not a user is enrolled for account recovery
isAuthenticationDelegated This property is required. boolean
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
isFederatedUser This property is required. boolean
A Boolean value indicating whether or not the user is federated.
isGroupMembershipNormalized This property is required. boolean
A Boolean value indicating whether or not group membership is normalized for this user.
isGroupMembershipSyncedToUsersGroups This property is required. boolean
A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
notificationEmailTemplateId This property is required. string
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.
preferredUiLandingPage This property is required. string
User's preferred landing page following login, logout and reset password.
serviceUser This property is required. boolean
Indicates if User is a Service User
status This property is required. string
A supplemental status indicating the reason why a user is disabled
supportAccounts This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount[]
A list of Support Accounts corresponding to user.
syncedFromApps This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp[]
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.
userFlowControlledByExternalClient This property is required. boolean
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 This property is required. string
User Support Account Provider
userTokens This property is required. GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken[]
User token returned if userFlowControlledByExternalClient is true
account_recovery_required This property is required. bool
Boolean value to prompt user to setup account recovery during login.
accounts This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount]
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 This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole]
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_target_apps This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp]
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 This property is required. 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 This property is required. str
User creation mechanism
delegated_authentication_target_apps This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp]
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_show_getting_started This property is required. bool
A Boolean value indicating whether or not to hide the getting started page
grants This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant]
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_last_modified This property is required. str
Specifies date time when a User's group membership was last modified.
idcs_app_roles_limited_to_groups This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup]
Description:
is_account_recovery_enrolled This property is required. bool
A Boolean value indicating whether or not a user is enrolled for account recovery
is_authentication_delegated This property is required. bool
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_user This property is required. bool
A Boolean value indicating whether or not the user is federated.
is_group_membership_normalized This property is required. bool
A Boolean value indicating whether or not group membership is normalized for this user.
is_group_membership_synced_to_users_groups This property is required. bool
A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
notification_email_template_id This property is required. str
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_landing_page This property is required. str
User's preferred landing page following login, logout and reset password.
service_user This property is required. bool
Indicates if User is a Service User
status This property is required. str
A supplemental status indicating the reason why a user is disabled
support_accounts This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount]
A list of Support Accounts corresponding to user.
synced_from_apps This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp]
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_controlled_by_external_client This property is required. bool
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 This property is required. str
User Support Account Provider
user_tokens This property is required. Sequence[identity.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken]
User token returned if userFlowControlledByExternalClient is true
accountRecoveryRequired This property is required. Boolean
Boolean value to prompt user to setup account recovery during login.
accounts This property is required. 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 This property is required. 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.
applicableAuthenticationTargetApps This property is required. List<Property Map>
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 This property is required. 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 This property is required. String
User creation mechanism
delegatedAuthenticationTargetApps This property is required. List<Property Map>
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.
doNotShowGettingStarted This property is required. Boolean
A Boolean value indicating whether or not to hide the getting started page
grants This property is required. 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.
groupMembershipLastModified This property is required. String
Specifies date time when a User's group membership was last modified.
idcsAppRolesLimitedToGroups This property is required. List<Property Map>
Description:
isAccountRecoveryEnrolled This property is required. Boolean
A Boolean value indicating whether or not a user is enrolled for account recovery
isAuthenticationDelegated This property is required. Boolean
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
isFederatedUser This property is required. Boolean
A Boolean value indicating whether or not the user is federated.
isGroupMembershipNormalized This property is required. Boolean
A Boolean value indicating whether or not group membership is normalized for this user.
isGroupMembershipSyncedToUsersGroups This property is required. Boolean
A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
notificationEmailTemplateId This property is required. String
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.
preferredUiLandingPage This property is required. String
User's preferred landing page following login, logout and reset password.
serviceUser This property is required. Boolean
Indicates if User is a Service User
status This property is required. String
A supplemental status indicating the reason why a user is disabled
supportAccounts This property is required. List<Property Map>
A list of Support Accounts corresponding to user.
syncedFromApps This property is required. List<Property Map>
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.
userFlowControlledByExternalClient This property is required. Boolean
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 This property is required. String
User Support Account Provider
userTokens This property is required. List<Property Map>
User token returned if userFlowControlledByExternalClient is true

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAccount

Active This property is required. bool
Status of the account
AppId This property is required. string
The ID of the App in this Grant.
Name This property is required. string
Name of the account assigned to the User.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Active This property is required. bool
Status of the account
AppId This property is required. string
The ID of the App in this Grant.
Name This property is required. string
Name of the account assigned to the User.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
active This property is required. Boolean
Status of the account
appId This property is required. String
The ID of the App in this Grant.
name This property is required. String
Name of the account assigned to the User.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
active This property is required. boolean
Status of the account
appId This property is required. string
The ID of the App in this Grant.
name This property is required. string
Name of the account assigned to the User.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
active This property is required. bool
Status of the account
app_id This property is required. str
The ID of the App in this Grant.
name This property is required. str
Name of the account assigned to the User.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
active This property is required. Boolean
Status of the account
appId This property is required. String
The ID of the App in this Grant.
name This property is required. String
Name of the account assigned to the User.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserAppRole

AdminRole This property is required. bool
If true, then the role provides administrative access privileges. READ-ONLY.
AppId This property is required. string
The ID of the App in this Grant.
AppName This property is required. string
The name (Client ID) of the App that defines this AppRole.
Display This property is required. string
A human readable name, primarily used for display purposes.
LegacyGroupName This property is required. string
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 This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
AdminRole This property is required. bool
If true, then the role provides administrative access privileges. READ-ONLY.
AppId This property is required. string
The ID of the App in this Grant.
AppName This property is required. string
The name (Client ID) of the App that defines this AppRole.
Display This property is required. string
A human readable name, primarily used for display purposes.
LegacyGroupName This property is required. string
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 This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
adminRole This property is required. Boolean
If true, then the role provides administrative access privileges. READ-ONLY.
appId This property is required. String
The ID of the App in this Grant.
appName This property is required. String
The name (Client ID) of the App that defines this AppRole.
display This property is required. String
A human readable name, primarily used for display purposes.
legacyGroupName This property is required. String
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 This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
adminRole This property is required. boolean
If true, then the role provides administrative access privileges. READ-ONLY.
appId This property is required. string
The ID of the App in this Grant.
appName This property is required. string
The name (Client ID) of the App that defines this AppRole.
display This property is required. string
A human readable name, primarily used for display purposes.
legacyGroupName This property is required. string
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 This property is required. string
User Token URI
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
admin_role This property is required. bool
If true, then the role provides administrative access privileges. READ-ONLY.
app_id This property is required. str
The ID of the App in this Grant.
app_name This property is required. str
The name (Client ID) of the App that defines this AppRole.
display This property is required. str
A human readable name, primarily used for display purposes.
legacy_group_name This property is required. str
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 This property is required. str
User Token URI
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
adminRole This property is required. Boolean
If true, then the role provides administrative access privileges. READ-ONLY.
appId This property is required. String
The ID of the App in this Grant.
appName This property is required. String
The name (Client ID) of the App that defines this AppRole.
display This property is required. String
A human readable name, primarily used for display purposes.
legacyGroupName This property is required. String
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 This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserApplicableAuthenticationTargetApp

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
TargetRequestTimeout This property is required. int
Timeout interval for Synchronization TargetAction in milliseconds
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
TargetRequestTimeout This property is required. int
Timeout interval for Synchronization TargetAction in milliseconds
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
targetRequestTimeout This property is required. Integer
Timeout interval for Synchronization TargetAction in milliseconds
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
targetRequestTimeout This property is required. number
Timeout interval for Synchronization TargetAction in milliseconds
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
target_request_timeout This property is required. int
Timeout interval for Synchronization TargetAction in milliseconds
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
targetRequestTimeout This property is required. Number
Timeout interval for Synchronization TargetAction in milliseconds
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserDelegatedAuthenticationTargetApp

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserGrant

AppId This property is required. string
The ID of the App in this Grant.
GrantMechanism This property is required. 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 This property is required. string
Grantor identifier
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
AppId This property is required. string
The ID of the App in this Grant.
GrantMechanism This property is required. 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 This property is required. string
Grantor identifier
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
appId This property is required. String
The ID of the App in this Grant.
grantMechanism This property is required. 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 This property is required. String
Grantor identifier
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
appId This property is required. string
The ID of the App in this Grant.
grantMechanism This property is required. 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 This property is required. string
Grantor identifier
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
app_id This property is required. str
The ID of the App in this Grant.
grant_mechanism This property is required. 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 This property is required. str
Grantor identifier
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
appId This property is required. String
The ID of the App in this Grant.
grantMechanism This property is required. 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 This property is required. String
Grantor identifier
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserIdcsAppRolesLimitedToGroup

Display This property is required. string
A human readable name, primarily used for display purposes.
IdcsAppRoleId This property is required. string
The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
IdcsAppRoleId This property is required. string
The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
idcsAppRoleId This property is required. String
The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
idcsAppRoleId This property is required. string
The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
idcs_app_role_id This property is required. str
The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
idcsAppRoleId This property is required. String
The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount

Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
UserId This property is required. string
User Support User Id
UserProvider This property is required. string
User Support Account Provider
Value This property is required. string
The value of a X509 certificate.
Ocid This property is required. string
The OCID of the user's support account.
Ref This property is required. string
User Token URI
UserId This property is required. string
User Support User Id
UserProvider This property is required. string
User Support Account Provider
Value This property is required. string
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
userId This property is required. String
User Support User Id
userProvider This property is required. String
User Support Account Provider
value This property is required. String
The value of a X509 certificate.
ocid This property is required. string
The OCID of the user's support account.
ref This property is required. string
User Token URI
userId This property is required. string
User Support User Id
userProvider This property is required. string
User Support Account Provider
value This property is required. string
The value of a X509 certificate.
ocid This property is required. str
The OCID of the user's support account.
ref This property is required. str
User Token URI
user_id This property is required. str
User Support User Id
user_provider This property is required. str
User Support Account Provider
value This property is required. str
The value of a X509 certificate.
ocid This property is required. String
The OCID of the user's support account.
ref This property is required. String
User Token URI
userId This property is required. String
User Support User Id
userProvider This property is required. String
User Support Account Provider
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp

Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Ref This property is required. string
User Token URI
Type This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
ref This property is required. string
User Token URI
type This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
ref This property is required. str
User Token URI
type This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
ref This property is required. String
User Token URI
type This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserUserToken

Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
Ref This property is required. string
User Token URI
Value This property is required. string
The value of a X509 certificate.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.
ref This property is required. string
User Token URI
value This property is required. string
The value of a X509 certificate.
ref This property is required. str
User Token URI
value This property is required. str
The value of a X509 certificate.
ref This property is required. String
User Token URI
value This property is required. String
The value of a X509 certificate.

GetDomainsUsersUserX509certificate

Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
Display This property is required. string
A human readable name, primarily used for display purposes.
Primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
Value This property is required. string
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. String
The value of a X509 certificate.
display This property is required. string
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. string
A label indicating the attribute's function.
value This property is required. string
The value of a X509 certificate.
display This property is required. str
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. str
A label indicating the attribute's function.
value This property is required. str
The value of a X509 certificate.
display This property is required. String
A human readable name, primarily used for display purposes.
primary This property is required. 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 This property is required. String
A label indicating the attribute's function.
value This property is required. 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 oci Terraform Provider.
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi