Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 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 GetDomainsSetting(ctx *Context, args *GetDomainsSettingArgs, opts ...InvokeOption) (*GetDomainsSettingResult, error)
func GetDomainsSettingOutput(ctx *Context, args *GetDomainsSettingOutputArgs, opts ...InvokeOption) GetDomainsSettingResultOutput
> Note: This function is named GetDomainsSetting
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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Identity/getDomainsSetting:getDomainsSetting
arguments:
# arguments dictionary
The following arguments are supported:
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Setting
Id string - ID of the resource
- Attribute
Sets List<string> - A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Resource
Type stringSchema Version - An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Setting
Id string - ID of the resource
- Attribute
Sets []string - A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Resource
Type stringSchema Version - An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- idcs
Endpoint String - The basic endpoint for the identity domain
- setting
Id String - ID of the resource
- attribute
Sets List<String> - A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource
Type StringSchema Version - An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- idcs
Endpoint string - The basic endpoint for the identity domain
- setting
Id string - ID of the resource
- attribute
Sets string[] - A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource
Type stringSchema Version - An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- idcs
Endpoint String - The basic endpoint for the identity domain
- setting
Id String - ID of the resource
- attribute
Sets List<String> - A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource
Type StringSchema Version - An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
getDomainsSetting Result
The following output properties are available:
- 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 List<string> - One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- Allowed
Forgot List<string>Password Flow Return Urls - If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- Allowed
Notification 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.
- Audit
Event intRetention Period - Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- Certificate
Validations List<GetDomains Setting Certificate Validation> - Certificate Validation Config
- Cloud
Account stringName - The attribute to store the cloud account name
- Cloud
Gate List<GetCors Settings Domains Setting Cloud Gate Cors Setting> - A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- Cloud
Migration stringCustom 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 List<GetDomains Setting Company Name> - Name of the company in different locales
- Compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Contact
Emails List<string> - Contact emails used to notify tenants. Can be one or more user or group alias emails.
- Csr
Access 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.
- Custom
Branding bool - Indicates if the branding is default or custom
- Custom
Css stringLocation - Storage URL location where the sanitized custom css is located
- Custom
Html stringLocation - Storage URL location where the sanitized custom html is located
- Custom
Translation string - Custom translations (JSON String)
- Default
Company List<GetNames Domains Setting Default Company Name> - Default name of the Company in different locales
- Default
Images List<GetDomains Setting Default Image> - References to various images
- Default
Login List<GetTexts Domains Setting Default Login Text> - Default Login text in different locales
- Default
Trust stringScope - 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 stringUpto - The end time up to which diagnostic recording is switched on
- Domain
Ocid string - 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 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.
- Iam
Upst 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.
- Idcs
Created List<GetBies Domains Setting Idcs Created By> - The User or App who created the Resource
- Idcs
Endpoint string - Idcs
Last List<GetModified Bies Domains Setting Idcs Last Modified By> - The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- Idcs
Prevented List<string>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Images
List<Get
Domains Setting Image> - References to various images
- Is
Hosted boolPage - Indicates if 'hosted' option was selected
- Issuer string
- Tenant issuer.
- Locale string
- Locale
- Login
Texts List<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
List<Get
Domains Setting Meta> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Migration
Status string - Database Migration Status
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- On
Premises boolProvisioning - On-Premises provisioning feature toggle.
- Preferred
Language string - Preferred written or spoken language used for localized user interfaces
- Prev
Issuer 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.
- Privacy
Policy stringUrl - Privacy Policy URL
- Purge
Configs List<GetDomains Setting Purge Config> - Purge Configs for different Resource Types
- Re
Auth List<string>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 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.
- 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 string - Signing
Cert boolPublic Access - Indicates if access on SigningCert is allowed to public or not
- Sub
Mapping stringAttr - Added In: 20.1.3
- List<Get
Domains Setting Tag> - A list of tags on this resource.
- Tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Tenant
Custom List<GetClaims Domains Setting Tenant Custom Claim> - Custom claims associated with the specific tenant
- Terms
Of stringUse Url - Terms of Use URL
- Timezone string
- User's timezone
- Attribute
Sets List<string> - Attributes string
- string
- Resource
Type 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 []string - One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- Allowed
Forgot []stringPassword Flow Return Urls - If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- Allowed
Notification []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.
- Audit
Event intRetention Period - Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- Certificate
Validations []GetDomains Setting Certificate Validation - Certificate Validation Config
- Cloud
Account stringName - The attribute to store the cloud account name
- Cloud
Gate []GetCors Settings Domains Setting Cloud Gate Cors Setting - A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- Cloud
Migration stringCustom 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 []GetDomains Setting Company Name - Name of the company in different locales
- Compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Contact
Emails []string - Contact emails used to notify tenants. Can be one or more user or group alias emails.
- Csr
Access 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.
- Custom
Branding bool - Indicates if the branding is default or custom
- Custom
Css stringLocation - Storage URL location where the sanitized custom css is located
- Custom
Html stringLocation - Storage URL location where the sanitized custom html is located
- Custom
Translation string - Custom translations (JSON String)
- Default
Company []GetNames Domains Setting Default Company Name - Default name of the Company in different locales
- Default
Images []GetDomains Setting Default Image - References to various images
- Default
Login []GetTexts Domains Setting Default Login Text - Default Login text in different locales
- Default
Trust stringScope - 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 stringUpto - The end time up to which diagnostic recording is switched on
- Domain
Ocid string - 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 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.
- Iam
Upst 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.
- Idcs
Created []GetBies Domains Setting Idcs Created By - The User or App who created the Resource
- Idcs
Endpoint string - Idcs
Last []GetModified Bies Domains Setting Idcs Last Modified By - The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- Idcs
Prevented []stringOperations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Images
[]Get
Domains Setting Image - References to various images
- Is
Hosted boolPage - Indicates if 'hosted' option was selected
- Issuer string
- Tenant issuer.
- Locale string
- Locale
- Login
Texts []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
[]Get
Domains Setting Meta - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Migration
Status string - Database Migration Status
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- On
Premises boolProvisioning - On-Premises provisioning feature toggle.
- Preferred
Language string - Preferred written or spoken language used for localized user interfaces
- Prev
Issuer 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.
- Privacy
Policy stringUrl - Privacy Policy URL
- Purge
Configs []GetDomains Setting Purge Config - Purge Configs for different Resource Types
- Re
Auth []stringFactors - 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 []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.
- 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 string - Signing
Cert boolPublic Access - Indicates if access on SigningCert is allowed to public or not
- Sub
Mapping stringAttr - Added In: 20.1.3
- []Get
Domains Setting Tag - A list of tags on this resource.
- Tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Tenant
Custom []GetClaims Domains Setting Tenant Custom Claim - Custom claims associated with the specific tenant
- Terms
Of stringUse Url - Terms of Use URL
- Timezone string
- User's timezone
- Attribute
Sets []string - Attributes string
- string
- Resource
Type stringSchema Version
- account
Always 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.
- allowed
Domains List<String> - One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowed
Forgot List<String>Password Flow Return Urls - If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowed
Notification 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.
- audit
Event IntegerRetention Period - Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificate
Validations List<GetDomains Setting Certificate Validation> - Certificate Validation Config
- cloud
Account StringName - The attribute to store the cloud account name
- cloud
Gate List<GetCors Settings Domains Setting Cloud Gate Cors Setting> - A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloud
Migration StringCustom Url - If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloud
Migration BooleanUrl Enabled - CloudAccountMigration: Enable Custom SIM Migrator Url.
- company
Names List<GetDomains Setting Company Name> - Name of the company in different locales
- compartment
Ocid String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contact
Emails List<String> - Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csr
Access 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.
- custom
Branding Boolean - Indicates if the branding is default or custom
- custom
Css StringLocation - Storage URL location where the sanitized custom css is located
- custom
Html StringLocation - Storage URL location where the sanitized custom html is located
- custom
Translation String - Custom translations (JSON String)
- default
Company List<GetNames Domains Setting Default Company Name> - Default name of the Company in different locales
- default
Images List<GetDomains Setting Default Image> - References to various images
- default
Login List<GetTexts Domains Setting Default Login Text> - Default Login text in different locales
- default
Trust StringScope - Deprecated Since: 18.3.6
- delete
In BooleanProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnostic
Level 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.
- diagnostic
Record 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.
- diagnostic
Tracing StringUpto - The end time up to which diagnostic recording is switched on
- domain
Ocid String - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enable
Terms BooleanOf Use - Indicates if Terms of Use is enabled in UI
- external
Id 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.
- iam
Upst 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.
- idcs
Created List<GetBies Domains Setting Idcs Created By> - The User or App who created the Resource
- idcs
Endpoint String - idcs
Last List<GetModified Bies Domains Setting Idcs Last Modified By> - The User or App who modified the Resource
- idcs
Last StringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- images
List<Get
Domains Setting Image> - References to various images
- is
Hosted BooleanPage - Indicates if 'hosted' option was selected
- issuer String
- Tenant issuer.
- locale String
- Locale
- login
Texts List<GetDomains Setting Login Text> - Login text in different locales
- max
No IntegerOf App Cmva To Return - Limit the maximum return of CMVA for an App
- max
No IntegerOf App Role Members To Return - Limit the maximum return of members for an AppRole
- metas
List<Get
Domains Setting Meta> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- migration
Status String - Database Migration Status
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- on
Premises BooleanProvisioning - On-Premises provisioning feature toggle.
- preferred
Language String - Preferred written or spoken language used for localized user interfaces
- prev
Issuer 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.
- privacy
Policy StringUrl - Privacy Policy URL
- purge
Configs List<GetDomains Setting Purge Config> - Purge Configs for different Resource Types
- re
Auth List<String>Factors - If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- re
Auth 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.
- service
Admin BooleanCannot 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 String - signing
Cert BooleanPublic Access - Indicates if access on SigningCert is allowed to public or not
- sub
Mapping StringAttr - Added In: 20.1.3
- List<Get
Domains Setting Tag> - A list of tags on this resource.
- tenancy
Ocid String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenant
Custom List<GetClaims Domains Setting Tenant Custom Claim> - Custom claims associated with the specific tenant
- terms
Of StringUse Url - Terms of Use URL
- timezone String
- User's timezone
- attribute
Sets List<String> - attributes String
- String
- resource
Type StringSchema Version
- account
Always 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.
- allowed
Domains string[] - One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowed
Forgot string[]Password Flow Return Urls - If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowed
Notification 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.
- audit
Event numberRetention Period - Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificate
Validations GetDomains Setting Certificate Validation[] - Certificate Validation Config
- cloud
Account stringName - The attribute to store the cloud account name
- cloud
Gate GetCors Settings Domains Setting Cloud Gate Cors Setting[] - A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloud
Migration stringCustom Url - If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloud
Migration booleanUrl Enabled - CloudAccountMigration: Enable Custom SIM Migrator Url.
- company
Names GetDomains Setting Company Name[] - Name of the company in different locales
- compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contact
Emails string[] - Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csr
Access 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.
- custom
Branding boolean - Indicates if the branding is default or custom
- custom
Css stringLocation - Storage URL location where the sanitized custom css is located
- custom
Html stringLocation - Storage URL location where the sanitized custom html is located
- custom
Translation string - Custom translations (JSON String)
- default
Company GetNames Domains Setting Default Company Name[] - Default name of the Company in different locales
- default
Images GetDomains Setting Default Image[] - References to various images
- default
Login GetTexts Domains Setting Default Login Text[] - Default Login text in different locales
- default
Trust stringScope - Deprecated Since: 18.3.6
- delete
In booleanProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnostic
Level 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.
- diagnostic
Record 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.
- diagnostic
Tracing stringUpto - The end time up to which diagnostic recording is switched on
- domain
Ocid string - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enable
Terms booleanOf Use - Indicates if Terms of Use is enabled in UI
- external
Id 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.
- iam
Upst 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.
- idcs
Created GetBies Domains Setting Idcs Created By[] - The User or App who created the Resource
- idcs
Endpoint string - idcs
Last GetModified Bies Domains Setting Idcs Last Modified By[] - The User or App who modified the Resource
- idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Prevented string[]Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- images
Get
Domains Setting Image[] - References to various images
- is
Hosted booleanPage - Indicates if 'hosted' option was selected
- issuer string
- Tenant issuer.
- locale string
- Locale
- login
Texts GetDomains Setting Login Text[] - Login text in different locales
- max
No numberOf App Cmva To Return - Limit the maximum return of CMVA for an App
- max
No numberOf App Role Members To Return - Limit the maximum return of members for an AppRole
- metas
Get
Domains Setting Meta[] - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- migration
Status string - Database Migration Status
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- on
Premises booleanProvisioning - On-Premises provisioning feature toggle.
- preferred
Language string - Preferred written or spoken language used for localized user interfaces
- prev
Issuer 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.
- privacy
Policy stringUrl - Privacy Policy URL
- purge
Configs GetDomains Setting Purge Config[] - Purge Configs for different Resource Types
- re
Auth string[]Factors - If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- re
Auth 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.
- service
Admin booleanCannot 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 string - signing
Cert booleanPublic Access - Indicates if access on SigningCert is allowed to public or not
- sub
Mapping stringAttr - Added In: 20.1.3
- Get
Domains Setting Tag[] - A list of tags on this resource.
- tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenant
Custom GetClaims Domains Setting Tenant Custom Claim[] - Custom claims associated with the specific tenant
- terms
Of stringUse Url - Terms of Use URL
- timezone string
- User's timezone
- attribute
Sets string[] - attributes string
- string
- resource
Type 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[identity.Get Domains Setting Certificate Validation] - Certificate Validation Config
- cloud_
account_ strname - The attribute to store the cloud account name
- cloud_
gate_ Sequence[identity.cors_ settings Get 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[identity.Get Domains 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[identity.names Get Domains Setting Default Company Name] - Default name of the Company in different locales
- default_
images Sequence[identity.Get Domains Setting Default Image] - References to various images
- default_
login_ Sequence[identity.texts Get 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[identity.bies Get Domains Setting Idcs Created By] - The User or App who created the Resource
- idcs_
endpoint str - idcs_
last_ Sequence[identity.modified_ bies Get 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[identity.
Get Domains 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[identity.Get Domains 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[identity.
Get Domains 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[identity.Get Domains 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[identity.
Get Domains 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[identity.claims Get 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
- account
Always 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.
- allowed
Domains List<String> - One or more email domains allowed in a user's email field. If unassigned, any domain is allowed.
- allowed
Forgot List<String>Password Flow Return Urls - If specified, indicates the set of Urls which can be returned to after successful forgot password flow
- allowed
Notification 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.
- audit
Event NumberRetention Period - Audit Event retention period. If set, overrides default of 30 days after which Audit Events will be purged
- certificate
Validations List<Property Map> - Certificate Validation Config
- cloud
Account StringName - The attribute to store the cloud account name
- cloud
Gate List<Property Map>Cors Settings - A complex attribute that specifies the Cloud Gate cross origin resource sharing settings.
- cloud
Migration StringCustom Url - If specified, indicates the custom SIM Migrator Url which can be used while SIM to Oracle Identity Cloud Service CloudAccount Migration.
- cloud
Migration BooleanUrl Enabled - CloudAccountMigration: Enable Custom SIM Migrator Url.
- company
Names List<Property Map> - Name of the company in different locales
- compartment
Ocid String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- contact
Emails List<String> - Contact emails used to notify tenants. Can be one or more user or group alias emails.
- csr
Access 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.
- custom
Branding Boolean - Indicates if the branding is default or custom
- custom
Css StringLocation - Storage URL location where the sanitized custom css is located
- custom
Html StringLocation - Storage URL location where the sanitized custom html is located
- custom
Translation String - Custom translations (JSON String)
- default
Company List<Property Map>Names - Default name of the Company in different locales
- default
Images List<Property Map> - References to various images
- default
Login List<Property Map>Texts - Default Login text in different locales
- default
Trust StringScope - Deprecated Since: 18.3.6
- delete
In BooleanProgress - A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- diagnostic
Level 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.
- diagnostic
Record 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.
- diagnostic
Tracing StringUpto - The end time up to which diagnostic recording is switched on
- domain
Ocid String - Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- enable
Terms BooleanOf Use - Indicates if Terms of Use is enabled in UI
- external
Id 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.
- iam
Upst 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.
- idcs
Created List<Property Map>Bies - The User or App who created the Resource
- idcs
Endpoint String - idcs
Last List<Property Map>Modified Bies - The User or App who modified the Resource
- idcs
Last StringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Prevented 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
- is
Hosted BooleanPage - Indicates if 'hosted' option was selected
- issuer String
- Tenant issuer.
- locale String
- Locale
- login
Texts List<Property Map> - Login text in different locales
- max
No NumberOf App Cmva To Return - Limit the maximum return of CMVA for an App
- max
No 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.
- migration
Status String - Database Migration Status
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- on
Premises BooleanProvisioning - On-Premises provisioning feature toggle.
- preferred
Language String - Preferred written or spoken language used for localized user interfaces
- prev
Issuer 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.
- privacy
Policy StringUrl - Privacy Policy URL
- purge
Configs List<Property Map> - Purge Configs for different Resource Types
- re
Auth List<String>Factors - If reAuthWhenChangingMyAuthenticationFactors is true (default), this attribute specifies which re-authentication factor to use. Allowed value is "password".
- re
Auth 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.
- service
Admin BooleanCannot 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 String - signing
Cert BooleanPublic Access - Indicates if access on SigningCert is allowed to public or not
- sub
Mapping StringAttr - Added In: 20.1.3
- List<Property Map>
- A list of tags on this resource.
- tenancy
Ocid String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- tenant
Custom List<Property Map>Claims - Custom claims associated with the specific tenant
- terms
Of StringUse Url - Terms of Use URL
- timezone String
- User's timezone
- attribute
Sets List<String> - attributes String
- String
- resource
Type StringSchema Version
Supporting Types
GetDomainsSettingCertificateValidation
- Crl
Check boolOn Ocsp Failure Enabled - Use CRL as Fallback.
- Crl
Enabled bool - CRL is enabled Configuration
- Crl
Location string - CRL Location.
- Crl
Refresh intInterval - The CRL refresh interval in minutes
- Ocsp
Enabled bool - OCSP is enabled Configuration
- Ocsp
Responder stringUrl - 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 stringCertificate 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.
- Crl
Check boolOn Ocsp Failure Enabled - Use CRL as Fallback.
- Crl
Enabled bool - CRL is enabled Configuration
- Crl
Location string - CRL Location.
- Crl
Refresh intInterval - The CRL refresh interval in minutes
- Ocsp
Enabled bool - OCSP is enabled Configuration
- Ocsp
Responder stringUrl - 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 stringCertificate 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.
- crl
Check BooleanOn Ocsp Failure Enabled - Use CRL as Fallback.
- crl
Enabled Boolean - CRL is enabled Configuration
- crl
Location String - CRL Location.
- crl
Refresh IntegerInterval - The CRL refresh interval in minutes
- ocsp
Enabled Boolean - OCSP is enabled Configuration
- ocsp
Responder StringUrl - OCSP Responder URL
- ocsp
Settings 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.
- ocsp
Signing StringCertificate Alias - OCSP Signing Certificate Alias
- ocsp
Timeout IntegerDuration - The OCSP Timeout duration in minutes
- ocsp
Unknown BooleanResponse Status Allowed - OCSP Accept unknown response status from ocsp responder.
- crl
Check booleanOn Ocsp Failure Enabled - Use CRL as Fallback.
- crl
Enabled boolean - CRL is enabled Configuration
- crl
Location string - CRL Location.
- crl
Refresh numberInterval - The CRL refresh interval in minutes
- ocsp
Enabled boolean - OCSP is enabled Configuration
- ocsp
Responder stringUrl - OCSP Responder URL
- ocsp
Settings 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.
- ocsp
Signing stringCertificate Alias - OCSP Signing Certificate Alias
- ocsp
Timeout numberDuration - The OCSP Timeout duration in minutes
- ocsp
Unknown 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.
- crl
Check BooleanOn Ocsp Failure Enabled - Use CRL as Fallback.
- crl
Enabled Boolean - CRL is enabled Configuration
- crl
Location String - CRL Location.
- crl
Refresh NumberInterval - The CRL refresh interval in minutes
- ocsp
Enabled Boolean - OCSP is enabled Configuration
- ocsp
Responder StringUrl - OCSP Responder URL
- ocsp
Settings 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.
- ocsp
Signing StringCertificate Alias - OCSP Signing Certificate Alias
- ocsp
Timeout NumberDuration - The OCSP Timeout duration in minutes
- ocsp
Unknown BooleanResponse Status Allowed - OCSP Accept unknown response status from ocsp responder.
GetDomainsSettingCloudGateCorsSetting
- Cloud
Gate boolCors Allow Null Origin - Allow Null Origin (CORS) for this tenant.
- Cloud
Gate List<string>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 List<string>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.
- Cloud
Gate boolCors Allow Null Origin - Allow Null Origin (CORS) for this tenant.
- Cloud
Gate []stringCors 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 []stringCors 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.
- cloud
Gate BooleanCors Allow Null Origin - Allow Null Origin (CORS) for this tenant.
- cloud
Gate List<String>Cors Allowed Origins - Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloud
Gate BooleanCors Enabled - Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloud
Gate List<String>Cors Exposed Headers - List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloud
Gate IntegerCors Max Age - Maximum number of seconds a CORS Pre-flight Response may be cached by client.
- cloud
Gate booleanCors Allow Null Origin - Allow Null Origin (CORS) for this tenant.
- cloud
Gate string[]Cors Allowed Origins - Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloud
Gate booleanCors Enabled - Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloud
Gate string[]Cors Exposed Headers - List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloud
Gate 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.
- cloud
Gate BooleanCors Allow Null Origin - Allow Null Origin (CORS) for this tenant.
- cloud
Gate List<String>Cors Allowed Origins - Cloud Gate Allowed Cross-Origin Resource Sharing (CORS) Origins for this tenant.
- cloud
Gate BooleanCors Enabled - Enable Cloud Gate Cross-Origin Resource Sharing (CORS) for this tenant.
- cloud
Gate List<String>Cors Exposed Headers - List of Response Headers Cloud Gate is allowed to expose in the CORS Response Header: Access-Control-Expose-Headers.
- cloud
Gate 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
- Last
Modified string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type string - 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
- Last
Modified string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type string - 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
- last
Modified String - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type String - 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
- last
Modified string - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location string
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type string - 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
- last
Modified String - The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
- The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type String - 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
- Resource
Name string - Resource Name
- Retention
Period int - Retention Period
- Resource
Name string - Resource Name
- Retention
Period int - Retention Period
- resource
Name String - Resource Name
- retention
Period Integer - Retention Period
- resource
Name string - Resource Name
- retention
Period number - Retention Period
- resource_
name str - Resource Name
- retention_
period int - Retention Period
- resource
Name String - Resource Name
- retention
Period Number - Retention Period
GetDomainsSettingTag
GetDomainsSettingTenantCustomClaim
- All
Scopes 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
- Token
Type 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 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
- Token
Type string - Indicates what type of token the custom claim will be embedded
- Value string
- Custom claim value
- all
Scopes 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
- token
Type String - Indicates what type of token the custom claim will be embedded
- value String
- Custom claim value
- all
Scopes 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
- token
Type 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
- all
Scopes 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
- token
Type 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
oci
Terraform Provider.