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

oci.Identity.DomainsSecurityQuestionSetting

Explore with Pulumi AI

This resource provides the Security Question Setting resource in Oracle Cloud Infrastructure Identity Domains service.

Replace a security question setting.

Create DomainsSecurityQuestionSetting Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DomainsSecurityQuestionSetting(name: string, args: DomainsSecurityQuestionSettingArgs, opts?: CustomResourceOptions);
@overload
def DomainsSecurityQuestionSetting(resource_name: str,
                                   args: DomainsSecurityQuestionSettingArgs,
                                   opts: Optional[ResourceOptions] = None)

@overload
def DomainsSecurityQuestionSetting(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   num_questions_to_ans: Optional[int] = None,
                                   security_question_setting_id: Optional[str] = None,
                                   schemas: Optional[Sequence[str]] = None,
                                   num_questions_to_setup: Optional[int] = None,
                                   idcs_endpoint: Optional[str] = None,
                                   max_field_length: Optional[int] = None,
                                   min_answer_length: Optional[int] = None,
                                   external_id: Optional[str] = None,
                                   attribute_sets: Optional[Sequence[str]] = None,
                                   ocid: Optional[str] = None,
                                   resource_type_schema_version: Optional[str] = None,
                                   authorization: Optional[str] = None,
                                   attributes: Optional[str] = None,
                                   tags: Optional[Sequence[_identity.DomainsSecurityQuestionSettingTagArgs]] = None)
func NewDomainsSecurityQuestionSetting(ctx *Context, name string, args DomainsSecurityQuestionSettingArgs, opts ...ResourceOption) (*DomainsSecurityQuestionSetting, error)
public DomainsSecurityQuestionSetting(string name, DomainsSecurityQuestionSettingArgs args, CustomResourceOptions? opts = null)
public DomainsSecurityQuestionSetting(String name, DomainsSecurityQuestionSettingArgs args)
public DomainsSecurityQuestionSetting(String name, DomainsSecurityQuestionSettingArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsSecurityQuestionSetting
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DomainsSecurityQuestionSettingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DomainsSecurityQuestionSettingArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DomainsSecurityQuestionSettingArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DomainsSecurityQuestionSettingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DomainsSecurityQuestionSettingArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var domainsSecurityQuestionSettingResource = new Oci.Identity.DomainsSecurityQuestionSetting("domainsSecurityQuestionSettingResource", new()
{
    NumQuestionsToAns = 0,
    SecurityQuestionSettingId = "string",
    Schemas = new[]
    {
        "string",
    },
    NumQuestionsToSetup = 0,
    IdcsEndpoint = "string",
    MaxFieldLength = 0,
    MinAnswerLength = 0,
    ExternalId = "string",
    AttributeSets = new[]
    {
        "string",
    },
    Ocid = "string",
    ResourceTypeSchemaVersion = "string",
    Authorization = "string",
    Attributes = "string",
    Tags = new[]
    {
        new Oci.Identity.Inputs.DomainsSecurityQuestionSettingTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
Copy
example, err := Identity.NewDomainsSecurityQuestionSetting(ctx, "domainsSecurityQuestionSettingResource", &Identity.DomainsSecurityQuestionSettingArgs{
	NumQuestionsToAns:         pulumi.Int(0),
	SecurityQuestionSettingId: pulumi.String("string"),
	Schemas: pulumi.StringArray{
		pulumi.String("string"),
	},
	NumQuestionsToSetup: pulumi.Int(0),
	IdcsEndpoint:        pulumi.String("string"),
	MaxFieldLength:      pulumi.Int(0),
	MinAnswerLength:     pulumi.Int(0),
	ExternalId:          pulumi.String("string"),
	AttributeSets: pulumi.StringArray{
		pulumi.String("string"),
	},
	Ocid:                      pulumi.String("string"),
	ResourceTypeSchemaVersion: pulumi.String("string"),
	Authorization:             pulumi.String("string"),
	Attributes:                pulumi.String("string"),
	Tags: identity.DomainsSecurityQuestionSettingTagArray{
		&identity.DomainsSecurityQuestionSettingTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
Copy
var domainsSecurityQuestionSettingResource = new DomainsSecurityQuestionSetting("domainsSecurityQuestionSettingResource", DomainsSecurityQuestionSettingArgs.builder()
    .numQuestionsToAns(0)
    .securityQuestionSettingId("string")
    .schemas("string")
    .numQuestionsToSetup(0)
    .idcsEndpoint("string")
    .maxFieldLength(0)
    .minAnswerLength(0)
    .externalId("string")
    .attributeSets("string")
    .ocid("string")
    .resourceTypeSchemaVersion("string")
    .authorization("string")
    .attributes("string")
    .tags(DomainsSecurityQuestionSettingTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
Copy
domains_security_question_setting_resource = oci.identity.DomainsSecurityQuestionSetting("domainsSecurityQuestionSettingResource",
    num_questions_to_ans=0,
    security_question_setting_id="string",
    schemas=["string"],
    num_questions_to_setup=0,
    idcs_endpoint="string",
    max_field_length=0,
    min_answer_length=0,
    external_id="string",
    attribute_sets=["string"],
    ocid="string",
    resource_type_schema_version="string",
    authorization="string",
    attributes="string",
    tags=[{
        "key": "string",
        "value": "string",
    }])
Copy
const domainsSecurityQuestionSettingResource = new oci.identity.DomainsSecurityQuestionSetting("domainsSecurityQuestionSettingResource", {
    numQuestionsToAns: 0,
    securityQuestionSettingId: "string",
    schemas: ["string"],
    numQuestionsToSetup: 0,
    idcsEndpoint: "string",
    maxFieldLength: 0,
    minAnswerLength: 0,
    externalId: "string",
    attributeSets: ["string"],
    ocid: "string",
    resourceTypeSchemaVersion: "string",
    authorization: "string",
    attributes: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
});
Copy
type: oci:Identity:DomainsSecurityQuestionSetting
properties:
    attributeSets:
        - string
    attributes: string
    authorization: string
    externalId: string
    idcsEndpoint: string
    maxFieldLength: 0
    minAnswerLength: 0
    numQuestionsToAns: 0
    numQuestionsToSetup: 0
    ocid: string
    resourceTypeSchemaVersion: string
    schemas:
        - string
    securityQuestionSettingId: string
    tags:
        - key: string
          value: string
Copy

DomainsSecurityQuestionSetting Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DomainsSecurityQuestionSetting resource accepts the following input properties:

IdcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
MaxFieldLength This property is required. int

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
MinAnswerLength This property is required. int

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
NumQuestionsToAns This property is required. int

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
NumQuestionsToSetup This property is required. int

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
Schemas This property is required. List<string>

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
SecurityQuestionSettingId
This property is required.
Changes to this property will trigger replacement.
string
ID of the resource
AttributeSets List<string>
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
ExternalId string

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
ResourceTypeSchemaVersion string
(Updatable) 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.
Tags List<DomainsSecurityQuestionSettingTag>

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
IdcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
MaxFieldLength This property is required. int

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
MinAnswerLength This property is required. int

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
NumQuestionsToAns This property is required. int

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
NumQuestionsToSetup This property is required. int

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
Schemas This property is required. []string

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
SecurityQuestionSettingId
This property is required.
Changes to this property will trigger replacement.
string
ID of the resource
AttributeSets []string
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
ExternalId string

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
ResourceTypeSchemaVersion string
(Updatable) 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.
Tags []DomainsSecurityQuestionSettingTagArgs

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
String
The basic endpoint for the identity domain
maxFieldLength This property is required. Integer

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
minAnswerLength This property is required. Integer

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
numQuestionsToAns This property is required. Integer

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
numQuestionsToSetup This property is required. Integer

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
schemas This property is required. List<String>

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
securityQuestionSettingId
This property is required.
Changes to this property will trigger replacement.
String
ID of the resource
attributeSets List<String>
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
externalId String

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resourceTypeSchemaVersion String
(Updatable) 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.
tags List<DomainsSecurityQuestionSettingTag>

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
string
The basic endpoint for the identity domain
maxFieldLength This property is required. number

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
minAnswerLength This property is required. number

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
numQuestionsToAns This property is required. number

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
numQuestionsToSetup This property is required. number

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
schemas This property is required. string[]

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
securityQuestionSettingId
This property is required.
Changes to this property will trigger replacement.
string
ID of the resource
attributeSets string[]
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
externalId string

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resourceTypeSchemaVersion string
(Updatable) 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.
tags DomainsSecurityQuestionSettingTag[]

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
idcs_endpoint
This property is required.
Changes to this property will trigger replacement.
str
The basic endpoint for the identity domain
max_field_length This property is required. int

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
min_answer_length This property is required. int

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
num_questions_to_ans This property is required. int

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
num_questions_to_setup This property is required. int

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
schemas This property is required. Sequence[str]

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
security_question_setting_id
This property is required.
Changes to this property will trigger replacement.
str
ID of the resource
attribute_sets Sequence[str]
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization str
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
external_id str

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resource_type_schema_version str
(Updatable) 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.
tags Sequence[identity.DomainsSecurityQuestionSettingTagArgs]

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
idcsEndpoint
This property is required.
Changes to this property will trigger replacement.
String
The basic endpoint for the identity domain
maxFieldLength This property is required. Number

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
minAnswerLength This property is required. Number

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
numQuestionsToAns This property is required. Number

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
numQuestionsToSetup This property is required. Number

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
schemas This property is required. List<String>

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
securityQuestionSettingId
This property is required.
Changes to this property will trigger replacement.
String
ID of the resource
attributeSets List<String>
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
externalId String

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resourceTypeSchemaVersion String
(Updatable) 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.
tags List<Property Map>

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none

Outputs

All input properties are implicitly available as output properties. Additionally, the DomainsSecurityQuestionSetting resource produces the following output properties:

CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
DeleteInProgress bool

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Id string
The provider-assigned unique ID for this managed resource.
IdcsCreatedBies List<DomainsSecurityQuestionSettingIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsLastModifiedBies List<DomainsSecurityQuestionSettingIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
IdcsPreventedOperations List<string>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Metas List<DomainsSecurityQuestionSettingMeta>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
DeleteInProgress bool

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Id string
The provider-assigned unique ID for this managed resource.
IdcsCreatedBies []DomainsSecurityQuestionSettingIdcsCreatedBy

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsLastModifiedBies []DomainsSecurityQuestionSettingIdcsLastModifiedBy

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
IdcsPreventedOperations []string

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
Metas []DomainsSecurityQuestionSettingMeta

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
deleteInProgress Boolean

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
id String
The provider-assigned unique ID for this managed resource.
idcsCreatedBies List<DomainsSecurityQuestionSettingIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsLastModifiedBies List<DomainsSecurityQuestionSettingIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
metas List<DomainsSecurityQuestionSettingMeta>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

compartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
deleteInProgress boolean

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
id string
The provider-assigned unique ID for this managed resource.
idcsCreatedBies DomainsSecurityQuestionSettingIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsLastModifiedBies DomainsSecurityQuestionSettingIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcsPreventedOperations string[]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
metas DomainsSecurityQuestionSettingMeta[]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
tenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

compartment_ocid str

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
delete_in_progress bool

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domain_ocid str

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
id str
The provider-assigned unique ID for this managed resource.
idcs_created_bies Sequence[identity.DomainsSecurityQuestionSettingIdcsCreatedBy]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcs_last_modified_bies Sequence[identity.DomainsSecurityQuestionSettingIdcsLastModifiedBy]

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcs_last_upgraded_in_release str

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcs_prevented_operations Sequence[str]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
metas Sequence[identity.DomainsSecurityQuestionSettingMeta]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
tenancy_ocid str

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
deleteInProgress Boolean

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
id String
The provider-assigned unique ID for this managed resource.
idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
metas List<Property Map>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Look up Existing DomainsSecurityQuestionSetting Resource

Get an existing DomainsSecurityQuestionSetting resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DomainsSecurityQuestionSettingState, opts?: CustomResourceOptions): DomainsSecurityQuestionSetting
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        attribute_sets: Optional[Sequence[str]] = None,
        attributes: Optional[str] = None,
        authorization: Optional[str] = None,
        compartment_ocid: Optional[str] = None,
        delete_in_progress: Optional[bool] = None,
        domain_ocid: Optional[str] = None,
        external_id: Optional[str] = None,
        idcs_created_bies: Optional[Sequence[_identity.DomainsSecurityQuestionSettingIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[_identity.DomainsSecurityQuestionSettingIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        max_field_length: Optional[int] = None,
        metas: Optional[Sequence[_identity.DomainsSecurityQuestionSettingMetaArgs]] = None,
        min_answer_length: Optional[int] = None,
        num_questions_to_ans: Optional[int] = None,
        num_questions_to_setup: Optional[int] = None,
        ocid: Optional[str] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        security_question_setting_id: Optional[str] = None,
        tags: Optional[Sequence[_identity.DomainsSecurityQuestionSettingTagArgs]] = None,
        tenancy_ocid: Optional[str] = None) -> DomainsSecurityQuestionSetting
func GetDomainsSecurityQuestionSetting(ctx *Context, name string, id IDInput, state *DomainsSecurityQuestionSettingState, opts ...ResourceOption) (*DomainsSecurityQuestionSetting, error)
public static DomainsSecurityQuestionSetting Get(string name, Input<string> id, DomainsSecurityQuestionSettingState? state, CustomResourceOptions? opts = null)
public static DomainsSecurityQuestionSetting get(String name, Output<String> id, DomainsSecurityQuestionSettingState state, CustomResourceOptions options)
resources:  _:    type: oci:Identity:DomainsSecurityQuestionSetting    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AttributeSets List<string>
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
DeleteInProgress bool

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ExternalId string

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
IdcsCreatedBies List<DomainsSecurityQuestionSettingIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsEndpoint Changes to this property will trigger replacement. string
The basic endpoint for the identity domain
IdcsLastModifiedBies List<DomainsSecurityQuestionSettingIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
IdcsPreventedOperations List<string>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
MaxFieldLength int

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
Metas List<DomainsSecurityQuestionSettingMeta>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
MinAnswerLength int

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
NumQuestionsToAns int

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
NumQuestionsToSetup int

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
ResourceTypeSchemaVersion string
(Updatable) 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.
Schemas List<string>

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
SecurityQuestionSettingId Changes to this property will trigger replacement. string
ID of the resource
Tags List<DomainsSecurityQuestionSettingTag>

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AttributeSets []string
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Authorization string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
DeleteInProgress bool

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ExternalId string

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
IdcsCreatedBies []DomainsSecurityQuestionSettingIdcsCreatedByArgs

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
IdcsEndpoint Changes to this property will trigger replacement. string
The basic endpoint for the identity domain
IdcsLastModifiedBies []DomainsSecurityQuestionSettingIdcsLastModifiedByArgs

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
IdcsPreventedOperations []string

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
MaxFieldLength int

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
Metas []DomainsSecurityQuestionSettingMetaArgs

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
MinAnswerLength int

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
NumQuestionsToAns int

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
NumQuestionsToSetup int

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
ResourceTypeSchemaVersion string
(Updatable) 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.
Schemas []string

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
SecurityQuestionSettingId Changes to this property will trigger replacement. string
ID of the resource
Tags []DomainsSecurityQuestionSettingTagArgs

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

attributeSets List<String>
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
deleteInProgress Boolean

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
externalId String

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
idcsCreatedBies List<DomainsSecurityQuestionSettingIdcsCreatedBy>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsEndpoint Changes to this property will trigger replacement. String
The basic endpoint for the identity domain
idcsLastModifiedBies List<DomainsSecurityQuestionSettingIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
maxFieldLength Integer

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
metas List<DomainsSecurityQuestionSettingMeta>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
minAnswerLength Integer

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
numQuestionsToAns Integer

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
numQuestionsToSetup Integer

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resourceTypeSchemaVersion String
(Updatable) 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.
schemas List<String>

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
securityQuestionSettingId Changes to this property will trigger replacement. String
ID of the resource
tags List<DomainsSecurityQuestionSettingTag>

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

attributeSets string[]
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
deleteInProgress boolean

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
externalId string

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
idcsCreatedBies DomainsSecurityQuestionSettingIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsEndpoint Changes to this property will trigger replacement. string
The basic endpoint for the identity domain
idcsLastModifiedBies DomainsSecurityQuestionSettingIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcsPreventedOperations string[]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
maxFieldLength number

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
metas DomainsSecurityQuestionSettingMeta[]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
minAnswerLength number

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
numQuestionsToAns number

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
numQuestionsToSetup number

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resourceTypeSchemaVersion string
(Updatable) 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.
schemas string[]

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
securityQuestionSettingId Changes to this property will trigger replacement. string
ID of the resource
tags DomainsSecurityQuestionSettingTag[]

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
tenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

attribute_sets Sequence[str]
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization str
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartment_ocid str

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
delete_in_progress bool

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domain_ocid str

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
external_id str

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
idcs_created_bies Sequence[identity.DomainsSecurityQuestionSettingIdcsCreatedByArgs]

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcs_endpoint Changes to this property will trigger replacement. str
The basic endpoint for the identity domain
idcs_last_modified_bies Sequence[identity.DomainsSecurityQuestionSettingIdcsLastModifiedByArgs]

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcs_last_upgraded_in_release str

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcs_prevented_operations Sequence[str]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
max_field_length int

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
metas Sequence[identity.DomainsSecurityQuestionSettingMetaArgs]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
min_answer_length int

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
num_questions_to_ans int

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
num_questions_to_setup int

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resource_type_schema_version str
(Updatable) 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.
schemas Sequence[str]

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
security_question_setting_id Changes to this property will trigger replacement. str
ID of the resource
tags Sequence[identity.DomainsSecurityQuestionSettingTagArgs]

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
tenancy_ocid str

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

attributeSets List<String>
(Updatable) 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
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
authorization String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
deleteInProgress Boolean

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
externalId String

(Updatable) 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.

SCIM++ Properties:

  • type: string
  • multiValued: false
  • required: false
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: complex
idcsEndpoint Changes to this property will trigger replacement. String
The basic endpoint for the identity domain
idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: complex
idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none
maxFieldLength Number

(Updatable) Indicates the maximum length of following fields Security Questions, Answer and Hint

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 5
  • idcsMaxValue: 100
metas List<Property Map>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
  • type: complex
minAnswerLength Number

(Updatable) Indicates the minimum length of answer for security questions

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 8
numQuestionsToAns Number

(Updatable) Indicates the number of security questions that a user must answer

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • returned: default
  • caseExact: false
  • mutability: readWrite
  • required: true
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
numQuestionsToSetup Number

(Updatable) Indicates the number of security questions a user must setup

SCIM++ Properties:

  • type: integer
  • multiValued: false
  • required: true
  • caseExact: false
  • mutability: readWrite
  • returned: default
  • uniqueness: none
  • idcsMinValue: 1
  • idcsMaxValue: 5
ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: default
  • type: string
  • uniqueness: global
resourceTypeSchemaVersion String
(Updatable) 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.
schemas List<String>

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
securityQuestionSettingId Changes to this property will trigger replacement. String
ID of the resource
tags List<Property Map>

(Updatable) A list of tags on this resource.

SCIM++ Properties:

  • idcsCompositeKey: [key, value]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Supporting Types

DomainsSecurityQuestionSettingIdcsCreatedBy
, DomainsSecurityQuestionSettingIdcsCreatedByArgs

Value This property is required. string

(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Display string

(Updatable) The displayName of the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ocid string

(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
Type string

(Updatable) The type of resource, User or App, that created this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Value This property is required. string

(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Display string

(Updatable) The displayName of the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ocid string

(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
Type string

(Updatable) The type of resource, User or App, that created this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. String

(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display String

(Updatable) The displayName of the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid String

(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type String

(Updatable) The type of resource, User or App, that created this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. string

(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display string

(Updatable) The displayName of the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid string

(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref string

(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type string

(Updatable) The type of resource, User or App, that created this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. str

(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display str

(Updatable) The displayName of the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid str

(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref str

(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type str

(Updatable) The type of resource, User or App, that created this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. String

(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display String

(Updatable) The displayName of the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid String

(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type String

(Updatable) The type of resource, User or App, that created this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

DomainsSecurityQuestionSettingIdcsLastModifiedBy
, DomainsSecurityQuestionSettingIdcsLastModifiedByArgs

Value This property is required. string

(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Display string

(Updatable) The displayName of the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ocid string

(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
Type string

(Updatable) The type of resource, User or App, that modified this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Value This property is required. string

(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Display string

(Updatable) The displayName of the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Ocid string

(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
Type string

(Updatable) The type of resource, User or App, that modified this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. String

(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display String

(Updatable) The displayName of the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid String

(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type String

(Updatable) The type of resource, User or App, that modified this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. string

(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display string

(Updatable) The displayName of the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid string

(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type string

(Updatable) The type of resource, User or App, that modified this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. str

(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display str

(Updatable) The displayName of the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid str

(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref str

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type str

(Updatable) The type of resource, User or App, that modified this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. String

(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
display String

(Updatable) The displayName of the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ocid String

(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • returned: default
  • type: string
  • uniqueness: none
ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none
type String

(Updatable) The type of resource, User or App, that modified this Resource

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

DomainsSecurityQuestionSettingMeta
, DomainsSecurityQuestionSettingMetaArgs

Created string

(Updatable) The DateTime the Resource was added to the Service Provider

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
LastModified string

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
Location string

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ResourceType string

(Updatable) Name of the resource type of the resource--for example, Users or Groups

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Version string

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Created string

(Updatable) The DateTime the Resource was added to the Service Provider

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
LastModified string

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
Location string

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
ResourceType string

(Updatable) Name of the resource type of the resource--for example, Users or Groups

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
Version string

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
created String

(Updatable) The DateTime the Resource was added to the Service Provider

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
lastModified String

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
location String

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
resourceType String

(Updatable) Name of the resource type of the resource--for example, Users or Groups

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
version String

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
created string

(Updatable) The DateTime the Resource was added to the Service Provider

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
lastModified string

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
location string

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
resourceType string

(Updatable) Name of the resource type of the resource--for example, Users or Groups

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
version string

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
created str

(Updatable) The DateTime the Resource was added to the Service Provider

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
last_modified str

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
location str

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
resource_type str

(Updatable) Name of the resource type of the resource--for example, Users or Groups

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
version str

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
created String

(Updatable) The DateTime the Resource was added to the Service Provider

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
lastModified String

(Updatable) 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.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none
location String

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
resourceType String

(Updatable) Name of the resource type of the resource--for example, Users or Groups

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
version String

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

DomainsSecurityQuestionSettingTag
, DomainsSecurityQuestionSettingTagArgs

Key This property is required. string

(Updatable) Key or name of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Value This property is required. string

(Updatable) Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Key This property is required. string

(Updatable) Key or name of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Value This property is required. string

(Updatable) Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key This property is required. String

(Updatable) Key or name of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. String

(Updatable) Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key This property is required. string

(Updatable) Key or name of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. string

(Updatable) Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key This property is required. str

(Updatable) Key or name of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. str

(Updatable) Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
key This property is required. String

(Updatable) Key or name of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
value This property is required. String

(Updatable) Value of the tag.

SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none

Import

SecurityQuestionSettings can be imported using the id, e.g.

$ pulumi import oci:Identity/domainsSecurityQuestionSetting:DomainsSecurityQuestionSetting test_security_question_setting "idcsEndpoint/{idcsEndpoint}/securityQuestionSettings/{securityQuestionSettingId}"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.