Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Identity.getDomainsSetting
Explore with Pulumi AI
This data source provides details about a specific Setting resource in Oracle Cloud Infrastructure Identity Domains service.
Get Settings
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSetting = oci.Identity.getDomainsSetting({
    idcsEndpoint: testDomain.url,
    settingId: "Settings",
    attributeSets: ["all"],
    attributes: "",
    authorization: settingAuthorization,
    resourceTypeSchemaVersion: settingResourceTypeSchemaVersion,
});
import pulumi
import pulumi_oci as oci
test_setting = oci.Identity.get_domains_setting(idcs_endpoint=test_domain["url"],
    setting_id="Settings",
    attribute_sets=["all"],
    attributes="",
    authorization=setting_authorization,
    resource_type_schema_version=setting_resource_type_schema_version)
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.GetDomainsSetting(ctx, &identity.GetDomainsSettingArgs{
			IdcsEndpoint: testDomain.Url,
			SettingId:    "Settings",
			AttributeSets: []string{
				"all",
			},
			Attributes:                pulumi.StringRef(""),
			Authorization:             pulumi.StringRef(settingAuthorization),
			ResourceTypeSchemaVersion: pulumi.StringRef(settingResourceTypeSchemaVersion),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testSetting = Oci.Identity.GetDomainsSetting.Invoke(new()
    {
        IdcsEndpoint = testDomain.Url,
        SettingId = "Settings",
        AttributeSets = new[]
        {
            "all",
        },
        Attributes = "",
        Authorization = settingAuthorization,
        ResourceTypeSchemaVersion = settingResourceTypeSchemaVersion,
    });
});
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.GetDomainsSettingArgs;
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 testSetting = IdentityFunctions.getDomainsSetting(GetDomainsSettingArgs.builder()
            .idcsEndpoint(testDomain.url())
            .settingId("Settings")
            .attributeSets("all")
            .attributes("")
            .authorization(settingAuthorization)
            .resourceTypeSchemaVersion(settingResourceTypeSchemaVersion)
            .build());
    }
}
variables:
  testSetting:
    fn::invoke:
      function: oci:Identity:getDomainsSetting
      arguments:
        idcsEndpoint: ${testDomain.url}
        settingId: Settings
        attributeSets:
          - all
        attributes: ""
        authorization: ${settingAuthorization}
        resourceTypeSchemaVersion: ${settingResourceTypeSchemaVersion}
Using getDomainsSetting
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 getDomainsSetting(args: GetDomainsSettingArgs, opts?: InvokeOptions): Promise<GetDomainsSettingResult>
function getDomainsSettingOutput(args: GetDomainsSettingOutputArgs, opts?: InvokeOptions): Output<GetDomainsSettingResult>def get_domains_setting(attribute_sets: Optional[Sequence[str]] = None,
                        attributes: Optional[str] = None,
                        authorization: Optional[str] = None,
                        idcs_endpoint: Optional[str] = None,
                        resource_type_schema_version: Optional[str] = None,
                        setting_id: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetDomainsSettingResult
def get_domains_setting_output(attribute_sets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        attributes: Optional[pulumi.Input[str]] = None,
                        authorization: Optional[pulumi.Input[str]] = None,
                        idcs_endpoint: Optional[pulumi.Input[str]] = None,
                        resource_type_schema_version: Optional[pulumi.Input[str]] = None,
                        setting_id: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetDomainsSettingResult]func LookupDomainsSetting(ctx *Context, args *LookupDomainsSettingArgs, opts ...InvokeOption) (*LookupDomainsSettingResult, error)
func LookupDomainsSettingOutput(ctx *Context, args *LookupDomainsSettingOutputArgs, opts ...InvokeOption) LookupDomainsSettingResultOutput> Note: This function is named LookupDomainsSetting in the Go SDK.
public static class GetDomainsSetting 
{
    public static Task<GetDomainsSettingResult> InvokeAsync(GetDomainsSettingArgs args, InvokeOptions? opts = null)
    public static Output<GetDomainsSettingResult> Invoke(GetDomainsSettingInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDomainsSettingResult> getDomainsSetting(GetDomainsSettingArgs args, InvokeOptions options)
public static Output<GetDomainsSettingResult> getDomainsSetting(GetDomainsSettingArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Identity/getDomainsSetting:getDomainsSetting
  arguments:
    # arguments dictionaryThe following arguments are supported:
- IdcsEndpoint string
- The basic endpoint for the identity domain
- SettingId string
- ID of the resource
- AttributeSets List<string>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- IdcsEndpoint string
- The basic endpoint for the identity domain
- SettingId string
- ID of the resource
- AttributeSets []string
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- ResourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- idcsEndpoint String
- The basic endpoint for the identity domain
- settingId String
- ID of the resource
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- idcsEndpoint string
- The basic endpoint for the identity domain
- settingId string
- ID of the resource
- attributeSets string[]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resourceType stringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- idcs_endpoint str
- The basic endpoint for the identity domain
- setting_id str
- ID of the resource
- attribute_sets Sequence[str]
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- str
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource_type_ strschema_ version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- idcsEndpoint String
- The basic endpoint for the identity domain
- settingId String
- ID of the resource
- attributeSets List<String>
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resourceType StringSchema Version 
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
getDomainsSetting Result
The following output properties are available:
- AccountAlways boolTrust Scope 
- Indicates whether all the Apps in this customer tenancy should trust each other. A value of true overrides the 'defaultTrustScope' attribute here in Settings, as well as any App-specific 'trustScope' attribute, to force in effect 'trustScope=Account' for every App in this customer tenancy.
- AllowedDomains List<string>
- One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- AllowedForgot List<string>Password Flow Return Urls 
- If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- AllowedNotification List<string>Redirect Urls 
- If specified, indicates the set of allowed notification redirect Urls which can be specified as the value of "notificationRedirectUrl" in the POST .../admin/v1/MePasswordResetRequestor request payload, which will then be included in the reset password email notification sent to a user as part of the forgot password / password reset flow.
- AuditEvent intRetention Period 
- Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- CertificateValidations List<GetDomains Setting Certificate Validation> 
- Certificate Validation Config
- CloudAccount stringName 
- The attribute to store the cloud account name
- CloudGate List<GetCors Settings Domains Setting Cloud Gate Cors Setting> 
- A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- CloudMigration stringCustom Url 
- If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- CloudMigration boolUrl Enabled 
- CloudAccountMigration: Enable Custom SIM Migrator Url.
- CompanyNames List<GetDomains Setting Company Name> 
- Name of the company in different locales
- CompartmentOcid string
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- ContactEmails List<string>
- Contact emails used to notify tenants. Can be one or more user or group alias emails.
- CsrAccess string
- This value indicates whether Customer Service Representatives can login and have readOnly or readWrite access. A value of 'none' means CSR cannot login to the services.
- CustomBranding bool
- Indicates if the branding is default or custom
- CustomCss stringLocation 
- Storage URL location where the sanitized custom css is located
- CustomHtml stringLocation 
- Storage URL location where the sanitized custom html is located
- CustomTranslation string
- Custom translations (JSON String)
- DefaultCompany List<GetNames Domains Setting Default Company Name> 
- Default name of the Company in different locales
- DefaultImages List<GetDomains Setting Default Image> 
- References to various images
- DefaultLogin List<GetTexts Domains Setting Default Login Text> 
- Default Login text in different locales
- DefaultTrust stringScope 
- Deprecated Since: 18.3.6
- DeleteIn boolProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- DiagnosticLevel int
- The level of diagnostic logging that is currently in effect. A level of 0 (zero) indicates that diagnostic logging is disabled. A level of 1 (one) indicates that diagnostic logging is enabled.
- DiagnosticRecord boolFor Search Identifies Returned Resources 
- Controls whether DiagnosticRecords for external search-operations (against SCIM resource-types in the Admin service) identify returned resources. If true, indicates that for each successful external search-operation at least one DiagnosticRecord will include at least one identifier for each matching resource that is returned in that search-response. If false, no DiagnosticRecord should be expected to identify returned resources for a search-operation. The default value is false.
- DiagnosticTracing stringUpto 
- The end time up to which diagnostic recording is switched on
- DomainOcid string
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- EnableTerms boolOf Use 
- Indicates if Terms of Use is enabled in UI
- ExternalId string
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
- IamUpst intSession Expiry 
- Maximum duration for IAM User Principal Session Token expiry
- Id string
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- IdcsCreated List<GetBies Domains Setting Idcs Created By> 
- The User or App who created the Resource
- IdcsEndpoint string
- IdcsLast List<GetModified Bies Domains Setting Idcs Last Modified By> 
- The User or App who modified the Resource
- IdcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- IdcsPrevented List<string>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Images
List<GetDomains Setting Image> 
- References to various images
- IsHosted boolPage 
- Indicates if 'hosted' option was selected
- Issuer string
- Tenant issuer.
- Locale string
- Locale
- LoginTexts List<GetDomains Setting Login Text> 
- Login text in different locales
- MaxNo intOf App Cmva To Return 
- Limit the maximum return of CMVA for an App
- MaxNo intOf App Role Members To Return 
- Limit the maximum return of members for an AppRole
- Metas
List<GetDomains Setting Meta> 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- MigrationStatus string
- Database Migration Status
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- OnPremises boolProvisioning 
- On-Premises provisioning feature toggle.
- PreferredLanguage string
- Preferred written or spoken language used for localized user interfaces
- PrevIssuer string
- Previous Tenant issuer. This is an Oracle Identity Cloud Service internal attribute which is not meant to be directly modified by ID Admin. Even if the request body (Settings) contains this attribute, the actual value will be set according to the Oracle Identity Cloud Service internal logic rather than solely based on the value provided in the request payload.
- PrivacyPolicy stringUrl 
- Privacy Policy URL
- PurgeConfigs List<GetDomains Setting Purge Config> 
- Purge Configs for different Resource Types
- ReAuth List<string>Factors 
- If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- ReAuth boolWhen Changing My Authentication Factors 
- Specifies whether re-authentication is required or not when a user changes one of their security factors such as password or email. Default is true to ensure more secure behavior.
- 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.
- ServiceAdmin boolCannot List Other Users 
- By default, a service admin can list all users in stripe. If true, a service admin cannot list other users.
- SettingId string
- SigningCert boolPublic Access 
- Indicates if access on SigningCert is allowed to public or not
- SubMapping stringAttr 
- Added In: 20.1.3
- 
List<GetDomains Setting Tag> 
- A list of tags on this resource.
- TenancyOcid string
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- TenantCustom List<GetClaims Domains Setting Tenant Custom Claim> 
- Custom claims associated with the specific tenant
- TermsOf stringUse Url 
- Terms of Use URL
- Timezone string
- User's timezone
- AttributeSets List<string>
- Attributes string
- string
- ResourceType stringSchema Version 
- AccountAlways boolTrust Scope 
- Indicates whether all the Apps in this customer tenancy should trust each other. A value of true overrides the 'defaultTrustScope' attribute here in Settings, as well as any App-specific 'trustScope' attribute, to force in effect 'trustScope=Account' for every App in this customer tenancy.
- AllowedDomains []string
- One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- AllowedForgot []stringPassword Flow Return Urls 
- If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- AllowedNotification []stringRedirect Urls 
- If specified, indicates the set of allowed notification redirect Urls which can be specified as the value of "notificationRedirectUrl" in the POST .../admin/v1/MePasswordResetRequestor request payload, which will then be included in the reset password email notification sent to a user as part of the forgot password / password reset flow.
- AuditEvent intRetention Period 
- Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- CertificateValidations []GetDomains Setting Certificate Validation 
- Certificate Validation Config
- CloudAccount stringName 
- The attribute to store the cloud account name
- CloudGate []GetCors Settings Domains Setting Cloud Gate Cors Setting 
- A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- CloudMigration stringCustom Url 
- If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- CloudMigration boolUrl Enabled 
- CloudAccountMigration: Enable Custom SIM Migrator Url.
- CompanyNames []GetDomains Setting Company Name 
- Name of the company in different locales
- CompartmentOcid string
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- ContactEmails []string
- Contact emails used to notify tenants. Can be one or more user or group alias emails.
- CsrAccess string
- This value indicates whether Customer Service Representatives can login and have readOnly or readWrite access. A value of 'none' means CSR cannot login to the services.
- CustomBranding bool
- Indicates if the branding is default or custom
- CustomCss stringLocation 
- Storage URL location where the sanitized custom css is located
- CustomHtml stringLocation 
- Storage URL location where the sanitized custom html is located
- CustomTranslation string
- Custom translations (JSON String)
- DefaultCompany []GetNames Domains Setting Default Company Name 
- Default name of the Company in different locales
- DefaultImages []GetDomains Setting Default Image 
- References to various images
- DefaultLogin []GetTexts Domains Setting Default Login Text 
- Default Login text in different locales
- DefaultTrust stringScope 
- Deprecated Since: 18.3.6
- DeleteIn boolProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- DiagnosticLevel int
- The level of diagnostic logging that is currently in effect. A level of 0 (zero) indicates that diagnostic logging is disabled. A level of 1 (one) indicates that diagnostic logging is enabled.
- DiagnosticRecord boolFor Search Identifies Returned Resources 
- Controls whether DiagnosticRecords for external search-operations (against SCIM resource-types in the Admin service) identify returned resources. If true, indicates that for each successful external search-operation at least one DiagnosticRecord will include at least one identifier for each matching resource that is returned in that search-response. If false, no DiagnosticRecord should be expected to identify returned resources for a search-operation. The default value is false.
- DiagnosticTracing stringUpto 
- The end time up to which diagnostic recording is switched on
- DomainOcid string
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- EnableTerms boolOf Use 
- Indicates if Terms of Use is enabled in UI
- ExternalId string
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
- IamUpst intSession Expiry 
- Maximum duration for IAM User Principal Session Token expiry
- Id string
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- IdcsCreated []GetBies Domains Setting Idcs Created By 
- The User or App who created the Resource
- IdcsEndpoint string
- IdcsLast []GetModified Bies Domains Setting Idcs Last Modified By 
- The User or App who modified the Resource
- IdcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- IdcsPrevented []stringOperations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Images
[]GetDomains Setting Image 
- References to various images
- IsHosted boolPage 
- Indicates if 'hosted' option was selected
- Issuer string
- Tenant issuer.
- Locale string
- Locale
- LoginTexts []GetDomains Setting Login Text 
- Login text in different locales
- MaxNo intOf App Cmva To Return 
- Limit the maximum return of CMVA for an App
- MaxNo intOf App Role Members To Return 
- Limit the maximum return of members for an AppRole
- Metas
[]GetDomains Setting Meta 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- MigrationStatus string
- Database Migration Status
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- OnPremises boolProvisioning 
- On-Premises provisioning feature toggle.
- PreferredLanguage string
- Preferred written or spoken language used for localized user interfaces
- PrevIssuer string
- Previous Tenant issuer. This is an Oracle Identity Cloud Service internal attribute which is not meant to be directly modified by ID Admin. Even if the request body (Settings) contains this attribute, the actual value will be set according to the Oracle Identity Cloud Service internal logic rather than solely based on the value provided in the request payload.
- PrivacyPolicy stringUrl 
- Privacy Policy URL
- PurgeConfigs []GetDomains Setting Purge Config 
- Purge Configs for different Resource Types
- ReAuth []stringFactors 
- If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- ReAuth boolWhen Changing My Authentication Factors 
- Specifies whether re-authentication is required or not when a user changes one of their security factors such as password or email. Default is true to ensure more secure behavior.
- 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.
- ServiceAdmin boolCannot List Other Users 
- By default, a service admin can list all users in stripe. If true, a service admin cannot list other users.
- SettingId string
- SigningCert boolPublic Access 
- Indicates if access on SigningCert is allowed to public or not
- SubMapping stringAttr 
- Added In: 20.1.3
- 
[]GetDomains Setting Tag 
- A list of tags on this resource.
- TenancyOcid string
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- TenantCustom []GetClaims Domains Setting Tenant Custom Claim 
- Custom claims associated with the specific tenant
- TermsOf stringUse Url 
- Terms of Use URL
- Timezone string
- User's timezone
- AttributeSets []string
- Attributes string
- string
- ResourceType stringSchema Version 
- accountAlways BooleanTrust Scope 
- Indicates whether all the Apps in this customer tenancy should trust each other. A value of true overrides the 'defaultTrustScope' attribute here in Settings, as well as any App-specific 'trustScope' attribute, to force in effect 'trustScope=Account' for every App in this customer tenancy.
- allowedDomains List<String>
- One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowedForgot List<String>Password Flow Return Urls 
- If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowedNotification List<String>Redirect Urls 
- If specified, indicates the set of allowed notification redirect Urls which can be specified as the value of "notificationRedirectUrl" in the POST .../admin/v1/MePasswordResetRequestor request payload, which will then be included in the reset password email notification sent to a user as part of the forgot password / password reset flow.
- auditEvent IntegerRetention Period 
- Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificateValidations List<GetDomains Setting Certificate Validation> 
- Certificate Validation Config
- cloudAccount StringName 
- The attribute to store the cloud account name
- cloudGate List<GetCors Settings Domains Setting Cloud Gate Cors Setting> 
- A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloudMigration StringCustom Url 
- If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloudMigration BooleanUrl Enabled 
- CloudAccountMigration: Enable Custom SIM Migrator Url.
- companyNames List<GetDomains Setting Company Name> 
- Name of the company in different locales
- compartmentOcid String
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contactEmails List<String>
- Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csrAccess String
- This value indicates whether Customer Service Representatives can login and have readOnly or readWrite access. A value of 'none' means CSR cannot login to the services.
- customBranding Boolean
- Indicates if the branding is default or custom
- customCss StringLocation 
- Storage URL location where the sanitized custom css is located
- customHtml StringLocation 
- Storage URL location where the sanitized custom html is located
- customTranslation String
- Custom translations (JSON String)
- defaultCompany List<GetNames Domains Setting Default Company Name> 
- Default name of the Company in different locales
- defaultImages List<GetDomains Setting Default Image> 
- References to various images
- defaultLogin List<GetTexts Domains Setting Default Login Text> 
- Default Login text in different locales
- defaultTrust StringScope 
- Deprecated Since: 18.3.6
- deleteIn BooleanProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnosticLevel Integer
- The level of diagnostic logging that is currently in effect. A level of 0 (zero) indicates that diagnostic logging is disabled. A level of 1 (one) indicates that diagnostic logging is enabled.
- diagnosticRecord BooleanFor Search Identifies Returned Resources 
- Controls whether DiagnosticRecords for external search-operations (against SCIM resource-types in the Admin service) identify returned resources. If true, indicates that for each successful external search-operation at least one DiagnosticRecord will include at least one identifier for each matching resource that is returned in that search-response. If false, no DiagnosticRecord should be expected to identify returned resources for a search-operation. The default value is false.
- diagnosticTracing StringUpto 
- The end time up to which diagnostic recording is switched on
- domainOcid String
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enableTerms BooleanOf Use 
- Indicates if Terms of Use is enabled in UI
- externalId String
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
- iamUpst IntegerSession Expiry 
- Maximum duration for IAM User Principal Session Token expiry
- id String
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcsCreated List<GetBies Domains Setting Idcs Created By> 
- The User or App who created the Resource
- idcsEndpoint String
- idcsLast List<GetModified Bies Domains Setting Idcs Last Modified By> 
- The User or App who modified the Resource
- idcsLast StringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsPrevented List<String>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- images
List<GetDomains Setting Image> 
- References to various images
- isHosted BooleanPage 
- Indicates if 'hosted' option was selected
- issuer String
- Tenant issuer.
- locale String
- Locale
- loginTexts List<GetDomains Setting Login Text> 
- Login text in different locales
- maxNo IntegerOf App Cmva To Return 
- Limit the maximum return of CMVA for an App
- maxNo IntegerOf App Role Members To Return 
- Limit the maximum return of members for an AppRole
- metas
List<GetDomains Setting Meta> 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- migrationStatus String
- Database Migration Status
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- onPremises BooleanProvisioning 
- On-Premises provisioning feature toggle.
- preferredLanguage String
- Preferred written or spoken language used for localized user interfaces
- prevIssuer String
- Previous Tenant issuer. This is an Oracle Identity Cloud Service internal attribute which is not meant to be directly modified by ID Admin. Even if the request body (Settings) contains this attribute, the actual value will be set according to the Oracle Identity Cloud Service internal logic rather than solely based on the value provided in the request payload.
- privacyPolicy StringUrl 
- Privacy Policy URL
- purgeConfigs List<GetDomains Setting Purge Config> 
- Purge Configs for different Resource Types
- reAuth List<String>Factors 
- If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- reAuth BooleanWhen Changing My Authentication Factors 
- Specifies whether re-authentication is required or not when a user changes one of their security factors such as password or email. Default is true to ensure more secure behavior.
- 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.
- serviceAdmin BooleanCannot List Other Users 
- By default, a service admin can list all users in stripe. If true, a service admin cannot list other users.
- settingId String
- signingCert BooleanPublic Access 
- Indicates if access on SigningCert is allowed to public or not
- subMapping StringAttr 
- Added In: 20.1.3
- 
List<GetDomains Setting Tag> 
- A list of tags on this resource.
- tenancyOcid String
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenantCustom List<GetClaims Domains Setting Tenant Custom Claim> 
- Custom claims associated with the specific tenant
- termsOf StringUse Url 
- Terms of Use URL
- timezone String
- User's timezone
- attributeSets List<String>
- attributes String
- String
- resourceType StringSchema Version 
- accountAlways booleanTrust Scope 
- Indicates whether all the Apps in this customer tenancy should trust each other. A value of true overrides the 'defaultTrustScope' attribute here in Settings, as well as any App-specific 'trustScope' attribute, to force in effect 'trustScope=Account' for every App in this customer tenancy.
- allowedDomains string[]
- One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowedForgot string[]Password Flow Return Urls 
- If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowedNotification string[]Redirect Urls 
- If specified, indicates the set of allowed notification redirect Urls which can be specified as the value of "notificationRedirectUrl" in the POST .../admin/v1/MePasswordResetRequestor request payload, which will then be included in the reset password email notification sent to a user as part of the forgot password / password reset flow.
- auditEvent numberRetention Period 
- Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificateValidations GetDomains Setting Certificate Validation[] 
- Certificate Validation Config
- cloudAccount stringName 
- The attribute to store the cloud account name
- cloudGate GetCors Settings Domains Setting Cloud Gate Cors Setting[] 
- A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloudMigration stringCustom Url 
- If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloudMigration booleanUrl Enabled 
- CloudAccountMigration: Enable Custom SIM Migrator Url.
- companyNames GetDomains Setting Company Name[] 
- Name of the company in different locales
- compartmentOcid string
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contactEmails string[]
- Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csrAccess string
- This value indicates whether Customer Service Representatives can login and have readOnly or readWrite access. A value of 'none' means CSR cannot login to the services.
- customBranding boolean
- Indicates if the branding is default or custom
- customCss stringLocation 
- Storage URL location where the sanitized custom css is located
- customHtml stringLocation 
- Storage URL location where the sanitized custom html is located
- customTranslation string
- Custom translations (JSON String)
- defaultCompany GetNames Domains Setting Default Company Name[] 
- Default name of the Company in different locales
- defaultImages GetDomains Setting Default Image[] 
- References to various images
- defaultLogin GetTexts Domains Setting Default Login Text[] 
- Default Login text in different locales
- defaultTrust stringScope 
- Deprecated Since: 18.3.6
- deleteIn booleanProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnosticLevel number
- The level of diagnostic logging that is currently in effect. A level of 0 (zero) indicates that diagnostic logging is disabled. A level of 1 (one) indicates that diagnostic logging is enabled.
- diagnosticRecord booleanFor Search Identifies Returned Resources 
- Controls whether DiagnosticRecords for external search-operations (against SCIM resource-types in the Admin service) identify returned resources. If true, indicates that for each successful external search-operation at least one DiagnosticRecord will include at least one identifier for each matching resource that is returned in that search-response. If false, no DiagnosticRecord should be expected to identify returned resources for a search-operation. The default value is false.
- diagnosticTracing stringUpto 
- The end time up to which diagnostic recording is switched on
- domainOcid string
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enableTerms booleanOf Use 
- Indicates if Terms of Use is enabled in UI
- externalId string
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
- iamUpst numberSession Expiry 
- Maximum duration for IAM User Principal Session Token expiry
- id string
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcsCreated GetBies Domains Setting Idcs Created By[] 
- The User or App who created the Resource
- idcsEndpoint string
- idcsLast GetModified Bies Domains Setting Idcs Last Modified By[] 
- The User or App who modified the Resource
- idcsLast stringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsPrevented string[]Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- images
GetDomains Setting Image[] 
- References to various images
- isHosted booleanPage 
- Indicates if 'hosted' option was selected
- issuer string
- Tenant issuer.
- locale string
- Locale
- loginTexts GetDomains Setting Login Text[] 
- Login text in different locales
- maxNo numberOf App Cmva To Return 
- Limit the maximum return of CMVA for an App
- maxNo numberOf App Role Members To Return 
- Limit the maximum return of members for an AppRole
- metas
GetDomains Setting Meta[] 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- migrationStatus string
- Database Migration Status
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- onPremises booleanProvisioning 
- On-Premises provisioning feature toggle.
- preferredLanguage string
- Preferred written or spoken language used for localized user interfaces
- prevIssuer string
- Previous Tenant issuer. This is an Oracle Identity Cloud Service internal attribute which is not meant to be directly modified by ID Admin. Even if the request body (Settings) contains this attribute, the actual value will be set according to the Oracle Identity Cloud Service internal logic rather than solely based on the value provided in the request payload.
- privacyPolicy stringUrl 
- Privacy Policy URL
- purgeConfigs GetDomains Setting Purge Config[] 
- Purge Configs for different Resource Types
- reAuth string[]Factors 
- If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- reAuth booleanWhen Changing My Authentication Factors 
- Specifies whether re-authentication is required or not when a user changes one of their security factors such as password or email. Default is true to ensure more secure behavior.
- 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.
- serviceAdmin booleanCannot List Other Users 
- By default, a service admin can list all users in stripe. If true, a service admin cannot list other users.
- settingId string
- signingCert booleanPublic Access 
- Indicates if access on SigningCert is allowed to public or not
- subMapping stringAttr 
- Added In: 20.1.3
- 
GetDomains Setting Tag[] 
- A list of tags on this resource.
- tenancyOcid string
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenantCustom GetClaims Domains Setting Tenant Custom Claim[] 
- Custom claims associated with the specific tenant
- termsOf stringUse Url 
- Terms of Use URL
- timezone string
- User's timezone
- attributeSets string[]
- attributes string
- string
- resourceType stringSchema Version 
- account_always_ booltrust_ scope 
- Indicates whether all the Apps in this customer tenancy should trust each other. A value of true overrides the 'defaultTrustScope' attribute here in Settings, as well as any App-specific 'trustScope' attribute, to force in effect 'trustScope=Account' for every App in this customer tenancy.
- allowed_domains Sequence[str]
- One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowed_forgot_ Sequence[str]password_ flow_ return_ urls 
- If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowed_notification_ Sequence[str]redirect_ urls 
- If specified, indicates the set of allowed notification redirect Urls which can be specified as the value of "notificationRedirectUrl" in the POST .../admin/v1/MePasswordResetRequestor request payload, which will then be included in the reset password email notification sent to a user as part of the forgot password / password reset flow.
- audit_event_ intretention_ period 
- Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificate_validations Sequence[GetDomains Setting Certificate Validation] 
- Certificate Validation Config
- cloud_account_ strname 
- The attribute to store the cloud account name
- cloud_gate_ Sequence[Getcors_ settings Domains Setting Cloud Gate Cors Setting] 
- A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloud_migration_ strcustom_ url 
- If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloud_migration_ boolurl_ enabled 
- CloudAccountMigration: Enable Custom SIM Migrator Url.
- company_names Sequence[GetDomains Setting Company Name] 
- Name of the company in different locales
- compartment_ocid str
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contact_emails Sequence[str]
- Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csr_access str
- This value indicates whether Customer Service Representatives can login and have readOnly or readWrite access. A value of 'none' means CSR cannot login to the services.
- custom_branding bool
- Indicates if the branding is default or custom
- custom_css_ strlocation 
- Storage URL location where the sanitized custom css is located
- custom_html_ strlocation 
- Storage URL location where the sanitized custom html is located
- custom_translation str
- Custom translations (JSON String)
- default_company_ Sequence[Getnames Domains Setting Default Company Name] 
- Default name of the Company in different locales
- default_images Sequence[GetDomains Setting Default Image] 
- References to various images
- default_login_ Sequence[Gettexts Domains Setting Default Login Text] 
- Default Login text in different locales
- default_trust_ strscope 
- Deprecated Since: 18.3.6
- delete_in_ boolprogress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnostic_level int
- The level of diagnostic logging that is currently in effect. A level of 0 (zero) indicates that diagnostic logging is disabled. A level of 1 (one) indicates that diagnostic logging is enabled.
- diagnostic_record_ boolfor_ search_ identifies_ returned_ resources 
- Controls whether DiagnosticRecords for external search-operations (against SCIM resource-types in the Admin service) identify returned resources. If true, indicates that for each successful external search-operation at least one DiagnosticRecord will include at least one identifier for each matching resource that is returned in that search-response. If false, no DiagnosticRecord should be expected to identify returned resources for a search-operation. The default value is false.
- diagnostic_tracing_ strupto 
- The end time up to which diagnostic recording is switched on
- domain_ocid str
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enable_terms_ boolof_ use 
- Indicates if Terms of Use is enabled in UI
- external_id str
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
- iam_upst_ intsession_ expiry 
- Maximum duration for IAM User Principal Session Token expiry
- id str
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcs_created_ Sequence[Getbies Domains Setting Idcs Created By] 
- The User or App who created the Resource
- idcs_endpoint str
- idcs_last_ Sequence[Getmodified_ bies Domains Setting Idcs Last Modified By] 
- The User or App who modified the Resource
- idcs_last_ strupgraded_ in_ release 
- The release number when the resource was upgraded.
- idcs_prevented_ Sequence[str]operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- images
Sequence[GetDomains Setting Image] 
- References to various images
- is_hosted_ boolpage 
- Indicates if 'hosted' option was selected
- issuer str
- Tenant issuer.
- locale str
- Locale
- login_texts Sequence[GetDomains Setting Login Text] 
- Login text in different locales
- max_no_ intof_ app_ cmva_ to_ return 
- Limit the maximum return of CMVA for an App
- max_no_ intof_ app_ role_ members_ to_ return 
- Limit the maximum return of members for an AppRole
- metas
Sequence[GetDomains Setting Meta] 
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- migration_status str
- Database Migration Status
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- on_premises_ boolprovisioning 
- On-Premises provisioning feature toggle.
- preferred_language str
- Preferred written or spoken language used for localized user interfaces
- prev_issuer str
- Previous Tenant issuer. This is an Oracle Identity Cloud Service internal attribute which is not meant to be directly modified by ID Admin. Even if the request body (Settings) contains this attribute, the actual value will be set according to the Oracle Identity Cloud Service internal logic rather than solely based on the value provided in the request payload.
- privacy_policy_ strurl 
- Privacy Policy URL
- purge_configs Sequence[GetDomains Setting Purge Config] 
- Purge Configs for different Resource Types
- re_auth_ Sequence[str]factors 
- If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- re_auth_ boolwhen_ changing_ my_ authentication_ factors 
- Specifies whether re-authentication is required or not when a user changes one of their security factors such as password or email. Default is true to ensure more secure behavior.
- 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.
- service_admin_ boolcannot_ list_ other_ users 
- By default, a service admin can list all users in stripe. If true, a service admin cannot list other users.
- setting_id str
- signing_cert_ boolpublic_ access 
- Indicates if access on SigningCert is allowed to public or not
- sub_mapping_ strattr 
- Added In: 20.1.3
- 
Sequence[GetDomains Setting Tag] 
- A list of tags on this resource.
- tenancy_ocid str
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenant_custom_ Sequence[Getclaims Domains Setting Tenant Custom Claim] 
- Custom claims associated with the specific tenant
- terms_of_ struse_ url 
- Terms of Use URL
- timezone str
- User's timezone
- attribute_sets Sequence[str]
- attributes str
- str
- resource_type_ strschema_ version 
- accountAlways BooleanTrust Scope 
- Indicates whether all the Apps in this customer tenancy should trust each other. A value of true overrides the 'defaultTrustScope' attribute here in Settings, as well as any App-specific 'trustScope' attribute, to force in effect 'trustScope=Account' for every App in this customer tenancy.
- allowedDomains List<String>
- One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowedForgot List<String>Password Flow Return Urls 
- If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowedNotification List<String>Redirect Urls 
- If specified, indicates the set of allowed notification redirect Urls which can be specified as the value of "notificationRedirectUrl" in the POST .../admin/v1/MePasswordResetRequestor request payload, which will then be included in the reset password email notification sent to a user as part of the forgot password / password reset flow.
- auditEvent NumberRetention Period 
- Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificateValidations List<Property Map>
- Certificate Validation Config
- cloudAccount StringName 
- The attribute to store the cloud account name
- cloudGate List<Property Map>Cors Settings 
- A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloudMigration StringCustom Url 
- If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloudMigration BooleanUrl Enabled 
- CloudAccountMigration: Enable Custom SIM Migrator Url.
- companyNames List<Property Map>
- Name of the company in different locales
- compartmentOcid String
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contactEmails List<String>
- Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csrAccess String
- This value indicates whether Customer Service Representatives can login and have readOnly or readWrite access. A value of 'none' means CSR cannot login to the services.
- customBranding Boolean
- Indicates if the branding is default or custom
- customCss StringLocation 
- Storage URL location where the sanitized custom css is located
- customHtml StringLocation 
- Storage URL location where the sanitized custom html is located
- customTranslation String
- Custom translations (JSON String)
- defaultCompany List<Property Map>Names 
- Default name of the Company in different locales
- defaultImages List<Property Map>
- References to various images
- defaultLogin List<Property Map>Texts 
- Default Login text in different locales
- defaultTrust StringScope 
- Deprecated Since: 18.3.6
- deleteIn BooleanProgress 
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnosticLevel Number
- The level of diagnostic logging that is currently in effect. A level of 0 (zero) indicates that diagnostic logging is disabled. A level of 1 (one) indicates that diagnostic logging is enabled.
- diagnosticRecord BooleanFor Search Identifies Returned Resources 
- Controls whether DiagnosticRecords for external search-operations (against SCIM resource-types in the Admin service) identify returned resources. If true, indicates that for each successful external search-operation at least one DiagnosticRecord will include at least one identifier for each matching resource that is returned in that search-response. If false, no DiagnosticRecord should be expected to identify returned resources for a search-operation. The default value is false.
- diagnosticTracing StringUpto 
- The end time up to which diagnostic recording is switched on
- domainOcid String
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enableTerms BooleanOf Use 
- Indicates if Terms of Use is enabled in UI
- externalId String
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
- iamUpst NumberSession Expiry 
- Maximum duration for IAM User Principal Session Token expiry
- id String
- Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
- idcsCreated List<Property Map>Bies 
- The User or App who created the Resource
- idcsEndpoint String
- idcsLast List<Property Map>Modified Bies 
- The User or App who modified the Resource
- idcsLast StringUpgraded In Release 
- The release number when the resource was upgraded.
- idcsPrevented List<String>Operations 
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- images List<Property Map>
- References to various images
- isHosted BooleanPage 
- Indicates if 'hosted' option was selected
- issuer String
- Tenant issuer.
- locale String
- Locale
- loginTexts List<Property Map>
- Login text in different locales
- maxNo NumberOf App Cmva To Return 
- Limit the maximum return of CMVA for an App
- maxNo NumberOf App Role Members To Return 
- Limit the maximum return of members for an AppRole
- metas List<Property Map>
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- migrationStatus String
- Database Migration Status
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- onPremises BooleanProvisioning 
- On-Premises provisioning feature toggle.
- preferredLanguage String
- Preferred written or spoken language used for localized user interfaces
- prevIssuer String
- Previous Tenant issuer. This is an Oracle Identity Cloud Service internal attribute which is not meant to be directly modified by ID Admin. Even if the request body (Settings) contains this attribute, the actual value will be set according to the Oracle Identity Cloud Service internal logic rather than solely based on the value provided in the request payload.
- privacyPolicy StringUrl 
- Privacy Policy URL
- purgeConfigs List<Property Map>
- Purge Configs for different Resource Types
- reAuth List<String>Factors 
- If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- reAuth BooleanWhen Changing My Authentication Factors 
- Specifies whether re-authentication is required or not when a user changes one of their security factors such as password or email. Default is true to ensure more secure behavior.
- 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.
- serviceAdmin BooleanCannot List Other Users 
- By default, a service admin can list all users in stripe. If true, a service admin cannot list other users.
- settingId String
- signingCert BooleanPublic Access 
- Indicates if access on SigningCert is allowed to public or not
- subMapping StringAttr 
- Added In: 20.1.3
- List<Property Map>
- A list of tags on this resource.
- tenancyOcid String
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenantCustom List<Property Map>Claims 
- Custom claims associated with the specific tenant
- termsOf StringUse Url 
- Terms of Use URL
- timezone String
- User's timezone
- attributeSets List<String>
- attributes String
- String
- resourceType StringSchema Version 
Supporting Types
GetDomainsSettingCertificateValidation    
- CrlCheck boolOn Ocsp Failure Enabled 
- Use CRL as Fallback.
- CrlEnabled bool
- CRL is enabled Configuration
- CrlLocation string
- CRL Location.
- CrlRefresh intInterval 
- The CRL refresh interval in minutes
- OcspEnabled bool
- OCSP is enabled Configuration
- OcspResponder stringUrl 
- OCSP Responder URL
- OcspSettings boolResponder Url Preferred 
- This setting says, OCSP Responder URL present in the issued certificate must be used. Otherwise, OCSP Responder URL from IDP or Settings.
- OcspSigning stringCertificate Alias 
- OCSP Signing Certificate Alias
- OcspTimeout intDuration 
- The OCSP Timeout duration in minutes
- OcspUnknown boolResponse Status Allowed 
- OCSP Accept unknown response status from ocsp responder.
- CrlCheck boolOn Ocsp Failure Enabled 
- Use CRL as Fallback.
- CrlEnabled bool
- CRL is enabled Configuration
- CrlLocation string
- CRL Location.
- CrlRefresh intInterval 
- The CRL refresh interval in minutes
- OcspEnabled bool
- OCSP is enabled Configuration
- OcspResponder stringUrl 
- OCSP Responder URL
- OcspSettings boolResponder Url Preferred 
- This setting says, OCSP Responder URL present in the issued certificate must be used. Otherwise, OCSP Responder URL from IDP or Settings.
- OcspSigning stringCertificate Alias 
- OCSP Signing Certificate Alias
- OcspTimeout intDuration 
- The OCSP Timeout duration in minutes
- OcspUnknown boolResponse Status Allowed 
- OCSP Accept unknown response status from ocsp responder.
- crlCheck BooleanOn Ocsp Failure Enabled 
- Use CRL as Fallback.
- crlEnabled Boolean
- CRL is enabled Configuration
- crlLocation String
- CRL Location.
- crlRefresh IntegerInterval 
- The CRL refresh interval in minutes
- ocspEnabled Boolean
- OCSP is enabled Configuration
- ocspResponder StringUrl 
- OCSP Responder URL
- ocspSettings BooleanResponder Url Preferred 
- This setting says, OCSP Responder URL present in the issued certificate must be used. Otherwise, OCSP Responder URL from IDP or Settings.
- ocspSigning StringCertificate Alias 
- OCSP Signing Certificate Alias
- ocspTimeout IntegerDuration 
- The OCSP Timeout duration in minutes
- ocspUnknown BooleanResponse Status Allowed 
- OCSP Accept unknown response status from ocsp responder.
- crlCheck booleanOn Ocsp Failure Enabled 
- Use CRL as Fallback.
- crlEnabled boolean
- CRL is enabled Configuration
- crlLocation string
- CRL Location.
- crlRefresh numberInterval 
- The CRL refresh interval in minutes
- ocspEnabled boolean
- OCSP is enabled Configuration
- ocspResponder stringUrl 
- OCSP Responder URL
- ocspSettings booleanResponder Url Preferred 
- This setting says, OCSP Responder URL present in the issued certificate must be used. Otherwise, OCSP Responder URL from IDP or Settings.
- ocspSigning stringCertificate Alias 
- OCSP Signing Certificate Alias
- ocspTimeout numberDuration 
- The OCSP Timeout duration in minutes
- ocspUnknown booleanResponse Status Allowed 
- OCSP Accept unknown response status from ocsp responder.
- crl_check_ boolon_ ocsp_ failure_ enabled 
- Use CRL as Fallback.
- crl_enabled bool
- CRL is enabled Configuration
- crl_location str
- CRL Location.
- crl_refresh_ intinterval 
- The CRL refresh interval in minutes
- ocsp_enabled bool
- OCSP is enabled Configuration
- ocsp_responder_ strurl 
- OCSP Responder URL
- ocsp_settings_ boolresponder_ url_ preferred 
- This setting says, OCSP Responder URL present in the issued certificate must be used. Otherwise, OCSP Responder URL from IDP or Settings.
- ocsp_signing_ strcertificate_ alias 
- OCSP Signing Certificate Alias
- ocsp_timeout_ intduration 
- The OCSP Timeout duration in minutes
- ocsp_unknown_ boolresponse_ status_ allowed 
- OCSP Accept unknown response status from ocsp responder.
- crlCheck BooleanOn Ocsp Failure Enabled 
- Use CRL as Fallback.
- crlEnabled Boolean
- CRL is enabled Configuration
- crlLocation String
- CRL Location.
- crlRefresh NumberInterval 
- The CRL refresh interval in minutes
- ocspEnabled Boolean
- OCSP is enabled Configuration
- ocspResponder StringUrl 
- OCSP Responder URL
- ocspSettings BooleanResponder Url Preferred 
- This setting says, OCSP Responder URL present in the issued certificate must be used. Otherwise, OCSP Responder URL from IDP or Settings.
- ocspSigning StringCertificate Alias 
- OCSP Signing Certificate Alias
- ocspTimeout NumberDuration 
- The OCSP Timeout duration in minutes
- ocspUnknown BooleanResponse Status Allowed 
- OCSP Accept unknown response status from ocsp responder.
GetDomainsSettingCloudGateCorsSetting      
- CloudGate boolCors Allow Null Origin 
- Allow Null Origin (CORS) for this tenant.
- CloudGate List<string>Cors Allowed Origins 
- Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- CloudGate boolCors Enabled 
- Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- CloudGate List<string>Cors Exposed Headers 
- List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- CloudGate intCors Max Age 
- Maximum number of seconds a CORS Pre-flight Response may be cached by client.
- CloudGate boolCors Allow Null Origin 
- Allow Null Origin (CORS) for this tenant.
- CloudGate []stringCors Allowed Origins 
- Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- CloudGate boolCors Enabled 
- Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- CloudGate []stringCors Exposed Headers 
- List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- CloudGate intCors Max Age 
- Maximum number of seconds a CORS Pre-flight Response may be cached by client.
- cloudGate BooleanCors Allow Null Origin 
- Allow Null Origin (CORS) for this tenant.
- cloudGate List<String>Cors Allowed Origins 
- Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloudGate BooleanCors Enabled 
- Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloudGate List<String>Cors Exposed Headers 
- List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloudGate IntegerCors Max Age 
- Maximum number of seconds a CORS Pre-flight Response may be cached by client.
- cloudGate booleanCors Allow Null Origin 
- Allow Null Origin (CORS) for this tenant.
- cloudGate string[]Cors Allowed Origins 
- Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloudGate booleanCors Enabled 
- Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloudGate string[]Cors Exposed Headers 
- List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloudGate numberCors Max Age 
- Maximum number of seconds a CORS Pre-flight Response may be cached by client.
- cloud_gate_ boolcors_ allow_ null_ origin 
- Allow Null Origin (CORS) for this tenant.
- cloud_gate_ Sequence[str]cors_ allowed_ origins 
- Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloud_gate_ boolcors_ enabled 
- Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloud_gate_ Sequence[str]cors_ exposed_ headers 
- List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloud_gate_ intcors_ max_ age 
- Maximum number of seconds a CORS Pre-flight Response may be cached by client.
- cloudGate BooleanCors Allow Null Origin 
- Allow Null Origin (CORS) for this tenant.
- cloudGate List<String>Cors Allowed Origins 
- Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloudGate BooleanCors Enabled 
- Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloudGate List<String>Cors Exposed Headers 
- List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloudGate NumberCors Max Age 
- Maximum number of seconds a CORS Pre-flight Response may be cached by client.
GetDomainsSettingCompanyName    
GetDomainsSettingDefaultCompanyName     
GetDomainsSettingDefaultImage    
GetDomainsSettingDefaultLoginText     
GetDomainsSettingIdcsCreatedBy     
- Display string
- A human-readable name, primarily used for display purposes
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- Indicates the image type
- Value string
- Custom claim value
- Display string
- A human-readable name, primarily used for display purposes
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- Indicates the image type
- Value string
- Custom claim value
- display String
- A human-readable name, primarily used for display purposes
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- Indicates the image type
- value String
- Custom claim value
- display string
- A human-readable name, primarily used for display purposes
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type string
- Indicates the image type
- value string
- Custom claim value
- display String
- A human-readable name, primarily used for display purposes
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- Indicates the image type
- value String
- Custom claim value
GetDomainsSettingIdcsLastModifiedBy      
- Display string
- A human-readable name, primarily used for display purposes
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- Indicates the image type
- Value string
- Custom claim value
- Display string
- A human-readable name, primarily used for display purposes
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- Type string
- Indicates the image type
- Value string
- Custom claim value
- display String
- A human-readable name, primarily used for display purposes
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- Indicates the image type
- value String
- Custom claim value
- display string
- A human-readable name, primarily used for display purposes
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref string
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type string
- Indicates the image type
- value string
- Custom claim value
- display String
- A human-readable name, primarily used for display purposes
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- ref String
- The URI of the SCIM resource that represents the User or App who modified this Resource
- type String
- Indicates the image type
- value String
- Custom claim value
GetDomainsSettingImage   
GetDomainsSettingLoginText    
GetDomainsSettingMeta   
- Created string
- The DateTime the Resource was added to the Service Provider
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- ResourceType string
- Name of the resource type of the resource--for example, Users or Groups
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- Created string
- The DateTime the Resource was added to the Service Provider
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- ResourceType string
- Name of the resource type of the resource--for example, Users or Groups
- Version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
- The DateTime the Resource was added to the Service Provider
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resourceType String
- Name of the resource type of the resource--for example, Users or Groups
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created string
- The DateTime the Resource was added to the Service Provider
- lastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resourceType string
- Name of the resource type of the resource--for example, Users or Groups
- version string
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created str
- The DateTime the Resource was added to the Service Provider
- last_modified str
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location str
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource_type str
- Name of the resource type of the resource--for example, Users or Groups
- version str
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
- The DateTime the Resource was added to the Service Provider
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resourceType String
- Name of the resource type of the resource--for example, Users or Groups
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
GetDomainsSettingPurgeConfig    
- ResourceName string
- Resource Name
- RetentionPeriod int
- Retention Period
- ResourceName string
- Resource Name
- RetentionPeriod int
- Retention Period
- resourceName String
- Resource Name
- retentionPeriod Integer
- Retention Period
- resourceName string
- Resource Name
- retentionPeriod number
- Retention Period
- resource_name str
- Resource Name
- retention_period int
- Retention Period
- resourceName String
- Resource Name
- retentionPeriod Number
- Retention Period
GetDomainsSettingTag   
GetDomainsSettingTenantCustomClaim     
- AllScopes bool
- Indicates if the custom claim is associated with all scopes
- Expression bool
- Indicates if the custom claim is an expression
- Mode string
- Indicates under what scenario the custom claim will be return
- Name string
- Custom claim name
- Scopes List<string>
- Scopes associated with a specific custom claim
- TokenType string
- Indicates what type of token the custom claim will be embedded
- Value string
- Custom claim value
- AllScopes bool
- Indicates if the custom claim is associated with all scopes
- Expression bool
- Indicates if the custom claim is an expression
- Mode string
- Indicates under what scenario the custom claim will be return
- Name string
- Custom claim name
- Scopes []string
- Scopes associated with a specific custom claim
- TokenType string
- Indicates what type of token the custom claim will be embedded
- Value string
- Custom claim value
- allScopes Boolean
- Indicates if the custom claim is associated with all scopes
- expression Boolean
- Indicates if the custom claim is an expression
- mode String
- Indicates under what scenario the custom claim will be return
- name String
- Custom claim name
- scopes List<String>
- Scopes associated with a specific custom claim
- tokenType String
- Indicates what type of token the custom claim will be embedded
- value String
- Custom claim value
- allScopes boolean
- Indicates if the custom claim is associated with all scopes
- expression boolean
- Indicates if the custom claim is an expression
- mode string
- Indicates under what scenario the custom claim will be return
- name string
- Custom claim name
- scopes string[]
- Scopes associated with a specific custom claim
- tokenType string
- Indicates what type of token the custom claim will be embedded
- value string
- Custom claim value
- all_scopes bool
- Indicates if the custom claim is associated with all scopes
- expression bool
- Indicates if the custom claim is an expression
- mode str
- Indicates under what scenario the custom claim will be return
- name str
- Custom claim name
- scopes Sequence[str]
- Scopes associated with a specific custom claim
- token_type str
- Indicates what type of token the custom claim will be embedded
- value str
- Custom claim value
- allScopes Boolean
- Indicates if the custom claim is associated with all scopes
- expression Boolean
- Indicates if the custom claim is an expression
- mode String
- Indicates under what scenario the custom claim will be return
- name String
- Custom claim name
- scopes List<String>
- Scopes associated with a specific custom claim
- tokenType String
- Indicates what type of token the custom claim will be embedded
- value String
- Custom claim value
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.