1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. getDomainsAccountMgmtInfos
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.Identity.getDomainsAccountMgmtInfos

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Account Mgmt Infos in Oracle Cloud Infrastructure Identity Domains service.

Search Account Mgmt Info

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAccountMgmtInfos = oci.Identity.getDomainsAccountMgmtInfos({
    idcsEndpoint: testDomain.url,
    accountMgmtInfoCount: accountMgmtInfoAccountMgmtInfoCount,
    accountMgmtInfoFilter: accountMgmtInfoAccountMgmtInfoFilter,
    attributeSets: ["all"],
    attributes: "",
    authorization: accountMgmtInfoAuthorization,
    resourceTypeSchemaVersion: accountMgmtInfoResourceTypeSchemaVersion,
    startIndex: accountMgmtInfoStartIndex,
});
Copy
import pulumi
import pulumi_oci as oci

test_account_mgmt_infos = oci.Identity.get_domains_account_mgmt_infos(idcs_endpoint=test_domain["url"],
    account_mgmt_info_count=account_mgmt_info_account_mgmt_info_count,
    account_mgmt_info_filter=account_mgmt_info_account_mgmt_info_filter,
    attribute_sets=["all"],
    attributes="",
    authorization=account_mgmt_info_authorization,
    resource_type_schema_version=account_mgmt_info_resource_type_schema_version,
    start_index=account_mgmt_info_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.GetDomainsAccountMgmtInfos(ctx, &identity.GetDomainsAccountMgmtInfosArgs{
			IdcsEndpoint:          testDomain.Url,
			AccountMgmtInfoCount:  pulumi.IntRef(accountMgmtInfoAccountMgmtInfoCount),
			AccountMgmtInfoFilter: pulumi.StringRef(accountMgmtInfoAccountMgmtInfoFilter),
			AttributeSets: []string{
				"all",
			},
			Attributes:                pulumi.StringRef(""),
			Authorization:             pulumi.StringRef(accountMgmtInfoAuthorization),
			ResourceTypeSchemaVersion: pulumi.StringRef(accountMgmtInfoResourceTypeSchemaVersion),
			StartIndex:                pulumi.IntRef(accountMgmtInfoStartIndex),
		}, 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 testAccountMgmtInfos = Oci.Identity.GetDomainsAccountMgmtInfos.Invoke(new()
    {
        IdcsEndpoint = testDomain.Url,
        AccountMgmtInfoCount = accountMgmtInfoAccountMgmtInfoCount,
        AccountMgmtInfoFilter = accountMgmtInfoAccountMgmtInfoFilter,
        AttributeSets = new[]
        {
            "all",
        },
        Attributes = "",
        Authorization = accountMgmtInfoAuthorization,
        ResourceTypeSchemaVersion = accountMgmtInfoResourceTypeSchemaVersion,
        StartIndex = accountMgmtInfoStartIndex,
    });

});
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.GetDomainsAccountMgmtInfosArgs;
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 testAccountMgmtInfos = IdentityFunctions.getDomainsAccountMgmtInfos(GetDomainsAccountMgmtInfosArgs.builder()
            .idcsEndpoint(testDomain.url())
            .accountMgmtInfoCount(accountMgmtInfoAccountMgmtInfoCount)
            .accountMgmtInfoFilter(accountMgmtInfoAccountMgmtInfoFilter)
            .attributeSets("all")
            .attributes("")
            .authorization(accountMgmtInfoAuthorization)
            .resourceTypeSchemaVersion(accountMgmtInfoResourceTypeSchemaVersion)
            .startIndex(accountMgmtInfoStartIndex)
            .build());

    }
}
Copy
variables:
  testAccountMgmtInfos:
    fn::invoke:
      function: oci:Identity:getDomainsAccountMgmtInfos
      arguments:
        idcsEndpoint: ${testDomain.url}
        accountMgmtInfoCount: ${accountMgmtInfoAccountMgmtInfoCount}
        accountMgmtInfoFilter: ${accountMgmtInfoAccountMgmtInfoFilter}
        attributeSets:
          - all
        attributes: ""
        authorization: ${accountMgmtInfoAuthorization}
        resourceTypeSchemaVersion: ${accountMgmtInfoResourceTypeSchemaVersion}
        startIndex: ${accountMgmtInfoStartIndex}
Copy

Using getDomainsAccountMgmtInfos

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 getDomainsAccountMgmtInfos(args: GetDomainsAccountMgmtInfosArgs, opts?: InvokeOptions): Promise<GetDomainsAccountMgmtInfosResult>
function getDomainsAccountMgmtInfosOutput(args: GetDomainsAccountMgmtInfosOutputArgs, opts?: InvokeOptions): Output<GetDomainsAccountMgmtInfosResult>
Copy
def get_domains_account_mgmt_infos(account_mgmt_info_count: Optional[int] = None,
                                   account_mgmt_info_filter: Optional[str] = None,
                                   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,
                                   opts: Optional[InvokeOptions] = None) -> GetDomainsAccountMgmtInfosResult
def get_domains_account_mgmt_infos_output(account_mgmt_info_count: Optional[pulumi.Input[int]] = None,
                                   account_mgmt_info_filter: Optional[pulumi.Input[str]] = None,
                                   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,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetDomainsAccountMgmtInfosResult]
Copy
func GetDomainsAccountMgmtInfos(ctx *Context, args *GetDomainsAccountMgmtInfosArgs, opts ...InvokeOption) (*GetDomainsAccountMgmtInfosResult, error)
func GetDomainsAccountMgmtInfosOutput(ctx *Context, args *GetDomainsAccountMgmtInfosOutputArgs, opts ...InvokeOption) GetDomainsAccountMgmtInfosResultOutput
Copy

> Note: This function is named GetDomainsAccountMgmtInfos in the Go SDK.

public static class GetDomainsAccountMgmtInfos 
{
    public static Task<GetDomainsAccountMgmtInfosResult> InvokeAsync(GetDomainsAccountMgmtInfosArgs args, InvokeOptions? opts = null)
    public static Output<GetDomainsAccountMgmtInfosResult> Invoke(GetDomainsAccountMgmtInfosInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDomainsAccountMgmtInfosResult> getDomainsAccountMgmtInfos(GetDomainsAccountMgmtInfosArgs args, InvokeOptions options)
public static Output<GetDomainsAccountMgmtInfosResult> getDomainsAccountMgmtInfos(GetDomainsAccountMgmtInfosArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Identity/getDomainsAccountMgmtInfos:getDomainsAccountMgmtInfos
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
AccountMgmtInfoCount 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).
AccountMgmtInfoFilter 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.
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.
IdcsEndpoint This property is required. string
The basic endpoint for the identity domain
AccountMgmtInfoCount 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).
AccountMgmtInfoFilter 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.
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.
idcsEndpoint This property is required. String
The basic endpoint for the identity domain
accountMgmtInfoCount 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).
accountMgmtInfoFilter 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.
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.
idcsEndpoint This property is required. string
The basic endpoint for the identity domain
accountMgmtInfoCount 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).
accountMgmtInfoFilter 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.
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.
idcs_endpoint This property is required. str
The basic endpoint for the identity domain
account_mgmt_info_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).
account_mgmt_info_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.
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.
idcsEndpoint This property is required. String
The basic endpoint for the identity domain
accountMgmtInfoCount 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).
accountMgmtInfoFilter 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.
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.

getDomainsAccountMgmtInfos Result

The following output properties are available:

AccountMgmtInfos List<GetDomainsAccountMgmtInfosAccountMgmtInfo>
The list of account_mgmt_infos.
Id string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
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
AccountMgmtInfoCount int
AccountMgmtInfoFilter string
AttributeSets List<string>
Attributes string
Authorization string
CompartmentId string
ResourceTypeSchemaVersion string
SortBy string
SortOrder string
StartIndex int
AccountMgmtInfos []GetDomainsAccountMgmtInfosAccountMgmtInfo
The list of account_mgmt_infos.
Id string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
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
AccountMgmtInfoCount int
AccountMgmtInfoFilter string
AttributeSets []string
Attributes string
Authorization string
CompartmentId string
ResourceTypeSchemaVersion string
SortBy string
SortOrder string
StartIndex int
accountMgmtInfos List<GetDomainsAccountMgmtInfosAccountMgmtInfo>
The list of account_mgmt_infos.
id String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
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
accountMgmtInfoCount Integer
accountMgmtInfoFilter String
attributeSets List<String>
attributes String
authorization String
compartmentId String
resourceTypeSchemaVersion String
sortBy String
sortOrder String
startIndex Integer
accountMgmtInfos GetDomainsAccountMgmtInfosAccountMgmtInfo[]
The list of account_mgmt_infos.
id string
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
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
accountMgmtInfoCount number
accountMgmtInfoFilter string
attributeSets string[]
attributes string
authorization string
compartmentId string
resourceTypeSchemaVersion string
sortBy string
sortOrder string
startIndex number
account_mgmt_infos Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfo]
The list of account_mgmt_infos.
id str
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
idcs_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
account_mgmt_info_count int
account_mgmt_info_filter str
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
accountMgmtInfos List<Property Map>
The list of account_mgmt_infos.
id String
Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
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
accountMgmtInfoCount Number
accountMgmtInfoFilter String
attributeSets List<String>
attributes String
authorization String
compartmentId String
resourceTypeSchemaVersion String
sortBy String
sortOrder String
startIndex Number

Supporting Types

GetDomainsAccountMgmtInfosAccountMgmtInfo

AccountMgmtInfoId This property is required. string
AccountType This property is required. string
Type of Account
Active This property is required. bool
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
Apps This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoApp>
Application on which the account is based
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.
CompositeKey This property is required. string
Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
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.
DoNotBackFillGrants This property is required. bool
If true, a back-fill grant will not be created for a connected managed app as part of account creation.
DoNotPerformActionOnTarget This property is required. bool
If true, the operation will not be performed on the target
DomainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
Favorite This property is required. bool
If true, this account has been marked as a favorite of the User who owns it
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<GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsCreatedBy>
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<GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsLastModifiedBy>
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.
IsAccount This property is required. bool
If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application
LastAccessed This property is required. string
Last accessed timestamp of an application
MatchingOwners This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoMatchingOwner>
Matching owning users of the account
Metas This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoMeta>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
Name This property is required. string
Name of the Account
ObjectClasses This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoObjectClass>
Object-class of the Account
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
OperationContext This property is required. string
The context in which the operation is performed on the account.
Owners This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoOwner>
Owning user of the account
PreviewOnly This property is required. bool
If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
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.
ResourceTypes This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoResourceType>
Resource Type of the Account
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.
SyncResponse This property is required. string
Last recorded sync response for the account
SyncSituation This property is required. string
Last recorded sync situation for the account
SyncTimestamp This property is required. string
Last sync timestamp of the account
Tags This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoTag>
A list of tags on this resource.
TenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Uid This property is required. string
Unique identifier of the Account
UserWalletArtifacts This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoUserWalletArtifact>
The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
AccountMgmtInfoId This property is required. string
AccountType This property is required. string
Type of Account
Active This property is required. bool
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
Apps This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoApp
Application on which the account is based
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.
CompositeKey This property is required. string
Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
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.
DoNotBackFillGrants This property is required. bool
If true, a back-fill grant will not be created for a connected managed app as part of account creation.
DoNotPerformActionOnTarget This property is required. bool
If true, the operation will not be performed on the target
DomainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
Favorite This property is required. bool
If true, this account has been marked as a favorite of the User who owns it
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. []GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsCreatedBy
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. []GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsLastModifiedBy
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.
IsAccount This property is required. bool
If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application
LastAccessed This property is required. string
Last accessed timestamp of an application
MatchingOwners This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoMatchingOwner
Matching owning users of the account
Metas This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoMeta
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
Name This property is required. string
Name of the Account
ObjectClasses This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoObjectClass
Object-class of the Account
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
OperationContext This property is required. string
The context in which the operation is performed on the account.
Owners This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoOwner
Owning user of the account
PreviewOnly This property is required. bool
If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
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.
ResourceTypes This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoResourceType
Resource Type of the Account
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.
SyncResponse This property is required. string
Last recorded sync response for the account
SyncSituation This property is required. string
Last recorded sync situation for the account
SyncTimestamp This property is required. string
Last sync timestamp of the account
Tags This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoTag
A list of tags on this resource.
TenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Uid This property is required. string
Unique identifier of the Account
UserWalletArtifacts This property is required. []GetDomainsAccountMgmtInfosAccountMgmtInfoUserWalletArtifact
The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
accountMgmtInfoId This property is required. String
accountType This property is required. String
Type of Account
active This property is required. Boolean
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
apps This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoApp>
Application on which the account is based
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.
compositeKey This property is required. String
Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
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.
doNotBackFillGrants This property is required. Boolean
If true, a back-fill grant will not be created for a connected managed app as part of account creation.
doNotPerformActionOnTarget This property is required. Boolean
If true, the operation will not be performed on the target
domainOcid This property is required. String
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
favorite This property is required. Boolean
If true, this account has been marked as a favorite of the User who owns it
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<GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsCreatedBy>
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<GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsLastModifiedBy>
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.
isAccount This property is required. Boolean
If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application
lastAccessed This property is required. String
Last accessed timestamp of an application
matchingOwners This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoMatchingOwner>
Matching owning users of the account
metas This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoMeta>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
name This property is required. String
Name of the Account
objectClasses This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoObjectClass>
Object-class of the Account
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
operationContext This property is required. String
The context in which the operation is performed on the account.
owners This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoOwner>
Owning user of the account
previewOnly This property is required. Boolean
If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
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.
resourceTypes This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoResourceType>
Resource Type of the Account
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.
syncResponse This property is required. String
Last recorded sync response for the account
syncSituation This property is required. String
Last recorded sync situation for the account
syncTimestamp This property is required. String
Last sync timestamp of the account
tags This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoTag>
A list of tags on this resource.
tenancyOcid This property is required. String
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
uid This property is required. String
Unique identifier of the Account
userWalletArtifacts This property is required. List<GetDomainsAccountMgmtInfosAccountMgmtInfoUserWalletArtifact>
The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
accountMgmtInfoId This property is required. string
accountType This property is required. string
Type of Account
active This property is required. boolean
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
apps This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoApp[]
Application on which the account is based
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.
compositeKey This property is required. string
Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
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.
doNotBackFillGrants This property is required. boolean
If true, a back-fill grant will not be created for a connected managed app as part of account creation.
doNotPerformActionOnTarget This property is required. boolean
If true, the operation will not be performed on the target
domainOcid This property is required. string
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
favorite This property is required. boolean
If true, this account has been marked as a favorite of the User who owns it
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. GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsCreatedBy[]
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. GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsLastModifiedBy[]
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.
isAccount This property is required. boolean
If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application
lastAccessed This property is required. string
Last accessed timestamp of an application
matchingOwners This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoMatchingOwner[]
Matching owning users of the account
metas This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoMeta[]
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
name This property is required. string
Name of the Account
objectClasses This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoObjectClass[]
Object-class of the Account
ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
operationContext This property is required. string
The context in which the operation is performed on the account.
owners This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoOwner[]
Owning user of the account
previewOnly This property is required. boolean
If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
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.
resourceTypes This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoResourceType[]
Resource Type of the Account
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.
syncResponse This property is required. string
Last recorded sync response for the account
syncSituation This property is required. string
Last recorded sync situation for the account
syncTimestamp This property is required. string
Last sync timestamp of the account
tags This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoTag[]
A list of tags on this resource.
tenancyOcid This property is required. string
Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
uid This property is required. string
Unique identifier of the Account
userWalletArtifacts This property is required. GetDomainsAccountMgmtInfosAccountMgmtInfoUserWalletArtifact[]
The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
account_mgmt_info_id This property is required. str
account_type This property is required. str
Type of Account
active This property is required. bool
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
apps This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoApp]
Application on which the account is based
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.
composite_key This property is required. str
Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
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.
do_not_back_fill_grants This property is required. bool
If true, a back-fill grant will not be created for a connected managed app as part of account creation.
do_not_perform_action_on_target This property is required. bool
If true, the operation will not be performed on the target
domain_ocid This property is required. str
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
favorite This property is required. bool
If true, this account has been marked as a favorite of the User who owns it
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.GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsCreatedBy]
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.GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsLastModifiedBy]
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.
is_account This property is required. bool
If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application
last_accessed This property is required. str
Last accessed timestamp of an application
matching_owners This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoMatchingOwner]
Matching owning users of the account
metas This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoMeta]
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
name This property is required. str
Name of the Account
object_classes This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoObjectClass]
Object-class of the Account
ocid This property is required. str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
operation_context This property is required. str
The context in which the operation is performed on the account.
owners This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoOwner]
Owning user of the account
preview_only This property is required. bool
If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
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.
resource_types This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoResourceType]
Resource Type of the Account
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.
sync_response This property is required. str
Last recorded sync response for the account
sync_situation This property is required. str
Last recorded sync situation for the account
sync_timestamp This property is required. str
Last sync timestamp of the account
tags This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoTag]
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.
uid This property is required. str
Unique identifier of the Account
user_wallet_artifacts This property is required. Sequence[identity.GetDomainsAccountMgmtInfosAccountMgmtInfoUserWalletArtifact]
The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
accountMgmtInfoId This property is required. String
accountType This property is required. String
Type of Account
active This property is required. Boolean
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
apps This property is required. List<Property Map>
Application on which the account is based
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.
compositeKey This property is required. String
Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
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.
doNotBackFillGrants This property is required. Boolean
If true, a back-fill grant will not be created for a connected managed app as part of account creation.
doNotPerformActionOnTarget This property is required. Boolean
If true, the operation will not be performed on the target
domainOcid This property is required. String
Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
favorite This property is required. Boolean
If true, this account has been marked as a favorite of the User who owns it
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.
isAccount This property is required. Boolean
If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application
lastAccessed This property is required. String
Last accessed timestamp of an application
matchingOwners This property is required. List<Property Map>
Matching owning users of the account
metas This property is required. List<Property Map>
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
name This property is required. String
Name of the Account
objectClasses This property is required. List<Property Map>
Object-class of the Account
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
operationContext This property is required. String
The context in which the operation is performed on the account.
owners This property is required. List<Property Map>
Owning user of the account
previewOnly This property is required. Boolean
If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
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.
resourceTypes This property is required. List<Property Map>
Resource Type of the Account
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.
syncResponse This property is required. String
Last recorded sync response for the account
syncSituation This property is required. String
Last recorded sync situation for the account
syncTimestamp This property is required. String
Last sync timestamp of the account
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.
uid This property is required. String
Unique identifier of the Account
userWalletArtifacts This property is required. List<Property Map>
The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application

GetDomainsAccountMgmtInfosAccountMgmtInfoApp

Active This property is required. bool
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
AppIcon This property is required. string
Application icon.
AppThumbnail This property is required. string
Application thumbnail.
Audience This property is required. string
The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
Description This property is required. string
Application description
Display This property is required. string
Resource Type display name
IsAliasApp This property is required. bool
If true, this App is an AliasApp and it cannot be granted to an end user directly
IsAuthoritative This property is required. bool
If true, sync from the managed app will be performed as authoritative sync.
IsLoginTarget This property is required. bool
If true, this App allows runtime services to log end users in to this App automatically
IsManagedApp This property is required. bool
If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
IsOauthResource This property is required. bool
If true, indicates that this application acts as an OAuth Resource.
IsOpcService This property is required. bool
If true, this application is an Oracle Public Cloud service-instance.
IsUnmanagedApp This property is required. bool
If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
LoginMechanism This property is required. string
The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use the Security Assertion Markup Language protocol.
MeterAsOpcService This property is required. bool
If true, customer is not billed for runtime operations of the app.
Ref This property is required. string
UserWalletArtifact URI
ServiceTypeUrn This property is required. string
This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
ShowInMyApps This property is required. bool
If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
Value This property is required. string
UserWalletArtifact identifier
Active This property is required. bool
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
AppIcon This property is required. string
Application icon.
AppThumbnail This property is required. string
Application thumbnail.
Audience This property is required. string
The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
Description This property is required. string
Application description
Display This property is required. string
Resource Type display name
IsAliasApp This property is required. bool
If true, this App is an AliasApp and it cannot be granted to an end user directly
IsAuthoritative This property is required. bool
If true, sync from the managed app will be performed as authoritative sync.
IsLoginTarget This property is required. bool
If true, this App allows runtime services to log end users in to this App automatically
IsManagedApp This property is required. bool
If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
IsOauthResource This property is required. bool
If true, indicates that this application acts as an OAuth Resource.
IsOpcService This property is required. bool
If true, this application is an Oracle Public Cloud service-instance.
IsUnmanagedApp This property is required. bool
If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
LoginMechanism This property is required. string
The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use the Security Assertion Markup Language protocol.
MeterAsOpcService This property is required. bool
If true, customer is not billed for runtime operations of the app.
Ref This property is required. string
UserWalletArtifact URI
ServiceTypeUrn This property is required. string
This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
ShowInMyApps This property is required. bool
If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
Value This property is required. string
UserWalletArtifact identifier
active This property is required. Boolean
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
appIcon This property is required. String
Application icon.
appThumbnail This property is required. String
Application thumbnail.
audience This property is required. String
The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
description This property is required. String
Application description
display This property is required. String
Resource Type display name
isAliasApp This property is required. Boolean
If true, this App is an AliasApp and it cannot be granted to an end user directly
isAuthoritative This property is required. Boolean
If true, sync from the managed app will be performed as authoritative sync.
isLoginTarget This property is required. Boolean
If true, this App allows runtime services to log end users in to this App automatically
isManagedApp This property is required. Boolean
If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
isOauthResource This property is required. Boolean
If true, indicates that this application acts as an OAuth Resource.
isOpcService This property is required. Boolean
If true, this application is an Oracle Public Cloud service-instance.
isUnmanagedApp This property is required. Boolean
If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
loginMechanism This property is required. String
The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use the Security Assertion Markup Language protocol.
meterAsOpcService This property is required. Boolean
If true, customer is not billed for runtime operations of the app.
ref This property is required. String
UserWalletArtifact URI
serviceTypeUrn This property is required. String
This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
showInMyApps This property is required. Boolean
If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
value This property is required. String
UserWalletArtifact identifier
active This property is required. boolean
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
appIcon This property is required. string
Application icon.
appThumbnail This property is required. string
Application thumbnail.
audience This property is required. string
The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
description This property is required. string
Application description
display This property is required. string
Resource Type display name
isAliasApp This property is required. boolean
If true, this App is an AliasApp and it cannot be granted to an end user directly
isAuthoritative This property is required. boolean
If true, sync from the managed app will be performed as authoritative sync.
isLoginTarget This property is required. boolean
If true, this App allows runtime services to log end users in to this App automatically
isManagedApp This property is required. boolean
If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
isOauthResource This property is required. boolean
If true, indicates that this application acts as an OAuth Resource.
isOpcService This property is required. boolean
If true, this application is an Oracle Public Cloud service-instance.
isUnmanagedApp This property is required. boolean
If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
loginMechanism This property is required. string
The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use the Security Assertion Markup Language protocol.
meterAsOpcService This property is required. boolean
If true, customer is not billed for runtime operations of the app.
ref This property is required. string
UserWalletArtifact URI
serviceTypeUrn This property is required. string
This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
showInMyApps This property is required. boolean
If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
value This property is required. string
UserWalletArtifact identifier
active This property is required. bool
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
app_icon This property is required. str
Application icon.
app_thumbnail This property is required. str
Application thumbnail.
audience This property is required. str
The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
description This property is required. str
Application description
display This property is required. str
Resource Type display name
is_alias_app This property is required. bool
If true, this App is an AliasApp and it cannot be granted to an end user directly
is_authoritative This property is required. bool
If true, sync from the managed app will be performed as authoritative sync.
is_login_target This property is required. bool
If true, this App allows runtime services to log end users in to this App automatically
is_managed_app This property is required. bool
If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
is_oauth_resource This property is required. bool
If true, indicates that this application acts as an OAuth Resource.
is_opc_service This property is required. bool
If true, this application is an Oracle Public Cloud service-instance.
is_unmanaged_app This property is required. bool
If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
login_mechanism This property is required. str
The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use the Security Assertion Markup Language protocol.
meter_as_opc_service This property is required. bool
If true, customer is not billed for runtime operations of the app.
ref This property is required. str
UserWalletArtifact URI
service_type_urn This property is required. str
This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
show_in_my_apps This property is required. bool
If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
value This property is required. str
UserWalletArtifact identifier
active This property is required. Boolean
If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App and only administrative operations can be performed.
appIcon This property is required. String
Application icon.
appThumbnail This property is required. String
Application thumbnail.
audience This property is required. String
The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
description This property is required. String
Application description
display This property is required. String
Resource Type display name
isAliasApp This property is required. Boolean
If true, this App is an AliasApp and it cannot be granted to an end user directly
isAuthoritative This property is required. Boolean
If true, sync from the managed app will be performed as authoritative sync.
isLoginTarget This property is required. Boolean
If true, this App allows runtime services to log end users in to this App automatically
isManagedApp This property is required. Boolean
If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
isOauthResource This property is required. Boolean
If true, indicates that this application acts as an OAuth Resource.
isOpcService This property is required. Boolean
If true, this application is an Oracle Public Cloud service-instance.
isUnmanagedApp This property is required. Boolean
If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
loginMechanism This property is required. String
The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use the Security Assertion Markup Language protocol.
meterAsOpcService This property is required. Boolean
If true, customer is not billed for runtime operations of the app.
ref This property is required. String
UserWalletArtifact URI
serviceTypeUrn This property is required. String
This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
showInMyApps This property is required. Boolean
If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsCreatedBy

Display This property is required. string
Resource Type display name
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
UserWalletArtifact URI
Type This property is required. string
The type of resource, User or App, that modified this Resource
Value This property is required. string
UserWalletArtifact identifier
Display This property is required. string
Resource Type display name
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
UserWalletArtifact URI
Type This property is required. string
The type of resource, User or App, that modified this Resource
Value This property is required. string
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
UserWalletArtifact URI
type This property is required. String
The type of resource, User or App, that modified this Resource
value This property is required. String
UserWalletArtifact identifier
display This property is required. string
Resource Type display name
ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. string
UserWalletArtifact URI
type This property is required. string
The type of resource, User or App, that modified this Resource
value This property is required. string
UserWalletArtifact identifier
display This property is required. str
Resource Type display name
ocid This property is required. str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. str
UserWalletArtifact URI
type This property is required. str
The type of resource, User or App, that modified this Resource
value This property is required. str
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
UserWalletArtifact URI
type This property is required. String
The type of resource, User or App, that modified this Resource
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoIdcsLastModifiedBy

Display This property is required. string
Resource Type display name
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
UserWalletArtifact URI
Type This property is required. string
The type of resource, User or App, that modified this Resource
Value This property is required. string
UserWalletArtifact identifier
Display This property is required. string
Resource Type display name
Ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
Ref This property is required. string
UserWalletArtifact URI
Type This property is required. string
The type of resource, User or App, that modified this Resource
Value This property is required. string
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
UserWalletArtifact URI
type This property is required. String
The type of resource, User or App, that modified this Resource
value This property is required. String
UserWalletArtifact identifier
display This property is required. string
Resource Type display name
ocid This property is required. string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. string
UserWalletArtifact URI
type This property is required. string
The type of resource, User or App, that modified this Resource
value This property is required. string
UserWalletArtifact identifier
display This property is required. str
Resource Type display name
ocid This property is required. str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. str
UserWalletArtifact URI
type This property is required. str
The type of resource, User or App, that modified this Resource
value This property is required. str
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ocid This property is required. String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
ref This property is required. String
UserWalletArtifact URI
type This property is required. String
The type of resource, User or App, that modified this Resource
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoMatchingOwner

Display This property is required. string
Resource Type display name
Email This property is required. string
The email address of this user
Ref This property is required. string
UserWalletArtifact URI
UserName This property is required. string
User name
Value This property is required. string
UserWalletArtifact identifier
Display This property is required. string
Resource Type display name
Email This property is required. string
The email address of this user
Ref This property is required. string
UserWalletArtifact URI
UserName This property is required. string
User name
Value This property is required. string
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
email This property is required. String
The email address of this user
ref This property is required. String
UserWalletArtifact URI
userName This property is required. String
User name
value This property is required. String
UserWalletArtifact identifier
display This property is required. string
Resource Type display name
email This property is required. string
The email address of this user
ref This property is required. string
UserWalletArtifact URI
userName This property is required. string
User name
value This property is required. string
UserWalletArtifact identifier
display This property is required. str
Resource Type display name
email This property is required. str
The email address of this user
ref This property is required. str
UserWalletArtifact URI
user_name This property is required. str
User name
value This property is required. str
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
email This property is required. String
The email address of this user
ref This property is required. String
UserWalletArtifact URI
userName This property is required. String
User name
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoMeta

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
Resource Type of the Account
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
Resource Type of the Account
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
Resource Type of the Account
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
Resource Type of the Account
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
Resource Type of the Account
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
Resource Type of the Account
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.

GetDomainsAccountMgmtInfosAccountMgmtInfoObjectClass

Display This property is required. string
Resource Type display name
Ref This property is required. string
UserWalletArtifact URI
Value This property is required. string
UserWalletArtifact identifier
Display This property is required. string
Resource Type display name
Ref This property is required. string
UserWalletArtifact URI
Value This property is required. string
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ref This property is required. String
UserWalletArtifact URI
value This property is required. String
UserWalletArtifact identifier
display This property is required. string
Resource Type display name
ref This property is required. string
UserWalletArtifact URI
value This property is required. string
UserWalletArtifact identifier
display This property is required. str
Resource Type display name
ref This property is required. str
UserWalletArtifact URI
value This property is required. str
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ref This property is required. String
UserWalletArtifact URI
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoOwner

Display This property is required. string
Resource Type display name
Email This property is required. string
The email address of this user
Ref This property is required. string
UserWalletArtifact URI
UserName This property is required. string
User name
Value This property is required. string
UserWalletArtifact identifier
Display This property is required. string
Resource Type display name
Email This property is required. string
The email address of this user
Ref This property is required. string
UserWalletArtifact URI
UserName This property is required. string
User name
Value This property is required. string
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
email This property is required. String
The email address of this user
ref This property is required. String
UserWalletArtifact URI
userName This property is required. String
User name
value This property is required. String
UserWalletArtifact identifier
display This property is required. string
Resource Type display name
email This property is required. string
The email address of this user
ref This property is required. string
UserWalletArtifact URI
userName This property is required. string
User name
value This property is required. string
UserWalletArtifact identifier
display This property is required. str
Resource Type display name
email This property is required. str
The email address of this user
ref This property is required. str
UserWalletArtifact URI
user_name This property is required. str
User name
value This property is required. str
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
email This property is required. String
The email address of this user
ref This property is required. String
UserWalletArtifact URI
userName This property is required. String
User name
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoResourceType

Display This property is required. string
Resource Type display name
Ref This property is required. string
UserWalletArtifact URI
Value This property is required. string
UserWalletArtifact identifier
Display This property is required. string
Resource Type display name
Ref This property is required. string
UserWalletArtifact URI
Value This property is required. string
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ref This property is required. String
UserWalletArtifact URI
value This property is required. String
UserWalletArtifact identifier
display This property is required. string
Resource Type display name
ref This property is required. string
UserWalletArtifact URI
value This property is required. string
UserWalletArtifact identifier
display This property is required. str
Resource Type display name
ref This property is required. str
UserWalletArtifact URI
value This property is required. str
UserWalletArtifact identifier
display This property is required. String
Resource Type display name
ref This property is required. String
UserWalletArtifact URI
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoTag

Key This property is required. string
Key or name of the tag.
Value This property is required. string
UserWalletArtifact identifier
Key This property is required. string
Key or name of the tag.
Value This property is required. string
UserWalletArtifact identifier
key This property is required. String
Key or name of the tag.
value This property is required. String
UserWalletArtifact identifier
key This property is required. string
Key or name of the tag.
value This property is required. string
UserWalletArtifact identifier
key This property is required. str
Key or name of the tag.
value This property is required. str
UserWalletArtifact identifier
key This property is required. String
Key or name of the tag.
value This property is required. String
UserWalletArtifact identifier

GetDomainsAccountMgmtInfosAccountMgmtInfoUserWalletArtifact

Ref This property is required. string
UserWalletArtifact URI
Value This property is required. string
UserWalletArtifact identifier
Ref This property is required. string
UserWalletArtifact URI
Value This property is required. string
UserWalletArtifact identifier
ref This property is required. String
UserWalletArtifact URI
value This property is required. String
UserWalletArtifact identifier
ref This property is required. string
UserWalletArtifact URI
value This property is required. string
UserWalletArtifact identifier
ref This property is required. str
UserWalletArtifact URI
value This property is required. str
UserWalletArtifact identifier
ref This property is required. String
UserWalletArtifact URI
value This property is required. String
UserWalletArtifact identifier

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.29.0 published on Wednesday, Apr 9, 2025 by Pulumi