oci.Identity.DomainsUserDbCredential
Explore with Pulumi AI
This resource provides the User Db Credential resource in Oracle Cloud Infrastructure Identity Domains service.
Create a user’s database (DB) credentials.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
testUserDbCredential:
type: oci:Identity:DomainsUserDbCredential
name: test_user_db_credential
properties:
dbPassword: ${userDbCredentialDbPassword}
idcsEndpoint: ${testDomain.url}
schemas:
- urn:ietf:params:scim:schemas:oracle:idcs:UserDbCredentials
attributeSets: []
attributes: ""
authorization: ${userDbCredentialAuthorization}
description: ${userDbCredentialDescription}
expiresOn: ${userDbCredentialExpiresOn}
id: ${userDbCredentialId}
ocid: ${userDbCredentialOcid}
resourceTypeSchemaVersion: ${userDbCredentialResourceTypeSchemaVersion}
status: ${userDbCredentialStatus}
tags:
- key: ${userDbCredentialTagsKey}
value: ${userDbCredentialTagsValue}
urnietfparamsscimschemasoracleidcsextensionselfChangeUser:
allowSelfChange: ${userDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserAllowSelfChange}
user:
value: ${testUser.id}
ocid: ${testUser.ocid}
Create DomainsUserDbCredential Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainsUserDbCredential(name: string, args: DomainsUserDbCredentialArgs, opts?: CustomResourceOptions);
@overload
def DomainsUserDbCredential(resource_name: str,
args: DomainsUserDbCredentialArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DomainsUserDbCredential(resource_name: str,
opts: Optional[ResourceOptions] = None,
idcs_endpoint: Optional[str] = None,
db_password: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
attribute_sets: Optional[Sequence[str]] = None,
description: Optional[str] = None,
expires_on: Optional[str] = None,
attributes: Optional[str] = None,
ocid: Optional[str] = None,
status: Optional[str] = None,
authorization: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsUserDbCredentialTagArgs]] = None,
urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[_identity.DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs] = None,
user: Optional[_identity.DomainsUserDbCredentialUserArgs] = None)
func NewDomainsUserDbCredential(ctx *Context, name string, args DomainsUserDbCredentialArgs, opts ...ResourceOption) (*DomainsUserDbCredential, error)
public DomainsUserDbCredential(string name, DomainsUserDbCredentialArgs args, CustomResourceOptions? opts = null)
public DomainsUserDbCredential(String name, DomainsUserDbCredentialArgs args)
public DomainsUserDbCredential(String name, DomainsUserDbCredentialArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsUserDbCredential
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. DomainsUserDbCredentialArgs - 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. DomainsUserDbCredentialArgs - 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. DomainsUserDbCredentialArgs - 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. DomainsUserDbCredentialArgs - 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. DomainsUserDbCredentialArgs - 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 domainsUserDbCredentialResource = new Oci.Identity.DomainsUserDbCredential("domainsUserDbCredentialResource", new()
{
IdcsEndpoint = "string",
DbPassword = "string",
Schemas = new[]
{
"string",
},
AttributeSets = new[]
{
"string",
},
Description = "string",
ExpiresOn = "string",
Attributes = "string",
Ocid = "string",
Status = "string",
Authorization = "string",
ResourceTypeSchemaVersion = "string",
Tags = new[]
{
new Oci.Identity.Inputs.DomainsUserDbCredentialTagArgs
{
Key = "string",
Value = "string",
},
},
UrnietfparamsscimschemasoracleidcsextensionselfChangeUser = new Oci.Identity.Inputs.DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs
{
AllowSelfChange = false,
},
User = new Oci.Identity.Inputs.DomainsUserDbCredentialUserArgs
{
Value = "string",
Display = "string",
Name = "string",
Ocid = "string",
Ref = "string",
},
});
example, err := Identity.NewDomainsUserDbCredential(ctx, "domainsUserDbCredentialResource", &Identity.DomainsUserDbCredentialArgs{
IdcsEndpoint: pulumi.String("string"),
DbPassword: pulumi.String("string"),
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
AttributeSets: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
ExpiresOn: pulumi.String("string"),
Attributes: pulumi.String("string"),
Ocid: pulumi.String("string"),
Status: pulumi.String("string"),
Authorization: pulumi.String("string"),
ResourceTypeSchemaVersion: pulumi.String("string"),
Tags: identity.DomainsUserDbCredentialTagArray{
&identity.DomainsUserDbCredentialTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UrnietfparamsscimschemasoracleidcsextensionselfChangeUser: &identity.DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs{
AllowSelfChange: pulumi.Bool(false),
},
User: &identity.DomainsUserDbCredentialUserArgs{
Value: pulumi.String("string"),
Display: pulumi.String("string"),
Name: pulumi.String("string"),
Ocid: pulumi.String("string"),
Ref: pulumi.String("string"),
},
})
var domainsUserDbCredentialResource = new DomainsUserDbCredential("domainsUserDbCredentialResource", DomainsUserDbCredentialArgs.builder()
.idcsEndpoint("string")
.dbPassword("string")
.schemas("string")
.attributeSets("string")
.description("string")
.expiresOn("string")
.attributes("string")
.ocid("string")
.status("string")
.authorization("string")
.resourceTypeSchemaVersion("string")
.tags(DomainsUserDbCredentialTagArgs.builder()
.key("string")
.value("string")
.build())
.urnietfparamsscimschemasoracleidcsextensionselfChangeUser(DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs.builder()
.allowSelfChange(false)
.build())
.user(DomainsUserDbCredentialUserArgs.builder()
.value("string")
.display("string")
.name("string")
.ocid("string")
.ref("string")
.build())
.build());
domains_user_db_credential_resource = oci.identity.DomainsUserDbCredential("domainsUserDbCredentialResource",
idcs_endpoint="string",
db_password="string",
schemas=["string"],
attribute_sets=["string"],
description="string",
expires_on="string",
attributes="string",
ocid="string",
status="string",
authorization="string",
resource_type_schema_version="string",
tags=[{
"key": "string",
"value": "string",
}],
urnietfparamsscimschemasoracleidcsextensionself_change_user={
"allow_self_change": False,
},
user={
"value": "string",
"display": "string",
"name": "string",
"ocid": "string",
"ref": "string",
})
const domainsUserDbCredentialResource = new oci.identity.DomainsUserDbCredential("domainsUserDbCredentialResource", {
idcsEndpoint: "string",
dbPassword: "string",
schemas: ["string"],
attributeSets: ["string"],
description: "string",
expiresOn: "string",
attributes: "string",
ocid: "string",
status: "string",
authorization: "string",
resourceTypeSchemaVersion: "string",
tags: [{
key: "string",
value: "string",
}],
urnietfparamsscimschemasoracleidcsextensionselfChangeUser: {
allowSelfChange: false,
},
user: {
value: "string",
display: "string",
name: "string",
ocid: "string",
ref: "string",
},
});
type: oci:Identity:DomainsUserDbCredential
properties:
attributeSets:
- string
attributes: string
authorization: string
dbPassword: string
description: string
expiresOn: string
idcsEndpoint: string
ocid: string
resourceTypeSchemaVersion: string
schemas:
- string
status: string
tags:
- key: string
value: string
urnietfparamsscimschemasoracleidcsextensionselfChangeUser:
allowSelfChange: false
user:
display: string
name: string
ocid: string
ref: string
value: string
DomainsUserDbCredential 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 DomainsUserDbCredential resource accepts the following input properties:
- Db
Password This property is required. Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- Idcs
Endpoint This property is required. Changes to this property will trigger replacement.
- The basic endpoint for the identity domain
- Schemas
This property is required. Changes to this property will trigger replacement.
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
- Attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- Expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- Status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag> 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
- Urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User - Controls whether a user can update themselves or not via User related APIs
- User
Changes to this property will trigger replacement.
User Db Credential User The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- Db
Password This property is required. Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- Idcs
Endpoint This property is required. Changes to this property will trigger replacement.
- The basic endpoint for the identity domain
- Schemas
This property is required. Changes to this property will trigger replacement.
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
- Attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- Expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- Status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag Args 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
- Urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args - Controls whether a user can update themselves or not via User related APIs
- User
Changes to this property will trigger replacement.
User Db Credential User Args The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- db
Password This property is required. Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- idcs
Endpoint This property is required. Changes to this property will trigger replacement.
- The basic endpoint for the identity domain
- schemas
This property is required. Changes to this property will trigger replacement.
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
- attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag> 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
- urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User - Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
User Db Credential User The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- db
Password This property is required. Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- idcs
Endpoint This property is required. Changes to this property will trigger replacement.
- The basic endpoint for the identity domain
- schemas
This property is required. Changes to this property will trigger replacement.
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
- attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag[] 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
- urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User - Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
User Db Credential User The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- db_
password This property is required. Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- idcs_
endpoint This property is required. Changes to this property will trigger replacement.
- The basic endpoint for the identity domain
- schemas
This property is required. Changes to this property will trigger replacement.
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
- attribute_
sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- expires_
on Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
Domains User Db Credential Tag Args] 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
- urnietfparamsscimschemasoracleidcsextensionself_
change_ user Changes to this property will trigger replacement.
Domains User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args - Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
Domains User Db Credential User Args The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- db
Password This property is required. Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- idcs
Endpoint This property is required. Changes to this property will trigger replacement.
- The basic endpoint for the identity domain
- schemas
This property is required. Changes to this property will trigger replacement.
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
- attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
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
- urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
- Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainsUserDbCredential resource produces the following output properties:
- Compartment
Ocid 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
- Delete
In boolProgress (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 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
- Expired bool
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- Id string
- The provider-assigned unique ID for this managed resource.
- Idcs
Created List<DomainsBies User Db Credential Idcs Created By> (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 List<DomainsModified Bies User Db Credential Idcs Last Modified By> (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 stringUpgraded In Release (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 List<string>Operations (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
- Last
Set stringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- Metas
List<Domains
User Db Credential Meta> (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
- Mixed
Db stringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Mixed
Salt string (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Name string
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- Salt string
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Tenancy
Ocid 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
- Compartment
Ocid 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
- Delete
In boolProgress (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 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
- Expired bool
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- Id string
- The provider-assigned unique ID for this managed resource.
- Idcs
Created []DomainsBies User Db Credential Idcs Created By (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 []DomainsModified Bies User Db Credential Idcs Last Modified By (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 stringUpgraded In Release (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 []stringOperations (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
- Last
Set stringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- Metas
[]Domains
User Db Credential Meta (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
- Mixed
Db stringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Mixed
Salt string (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Name string
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- Salt string
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Tenancy
Ocid 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
- compartment
Ocid 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
- delete
In BooleanProgress (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 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
- expired Boolean
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- id String
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<DomainsBies User Db Credential Idcs Created By> (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 List<DomainsModified Bies User Db Credential Idcs Last Modified By> (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 StringUpgraded In Release (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 List<String>Operations (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
- last
Set StringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- metas
List<Domains
User Db Credential Meta> (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
- mixed
Db StringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed
Salt String (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name String
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- salt String
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- tenancy
Ocid 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
- compartment
Ocid 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
- delete
In booleanProgress (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 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
- expired boolean
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- id string
- The provider-assigned unique ID for this managed resource.
- idcs
Created DomainsBies User Db Credential Idcs Created By[] (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 DomainsModified Bies User Db Credential Idcs Last Modified By[] (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 stringUpgraded In Release (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 string[]Operations (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
- last
Set stringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- metas
Domains
User Db Credential Meta[] (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
- mixed
Db stringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed
Salt string (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name string
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- salt string
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- tenancy
Ocid 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
- 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_ boolprogress (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
- expired bool
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- id str
- The provider-assigned unique ID for this managed resource.
- idcs_
created_ Sequence[identity.bies Domains User Db Credential Idcs Created By] (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_ Sequence[identity.modified_ bies Domains User Db Credential Idcs Last Modified By] (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_ strupgraded_ in_ release (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_ Sequence[str]operations (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
- last_
set_ strdate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- metas
Sequence[identity.
Domains User Db Credential Meta] (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
- mixed_
db_ strpassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed_
salt str (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name str
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- salt str
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- 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
- compartment
Ocid 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
- delete
In BooleanProgress (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 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
- expired Boolean
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- id String
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<Property Map>Bies (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 List<Property Map>Modified Bies (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 StringUpgraded In Release (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 List<String>Operations (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
- last
Set StringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- 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
- mixed
Db StringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed
Salt String (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name String
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- salt String
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- tenancy
Ocid 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
Look up Existing DomainsUserDbCredential Resource
Get an existing DomainsUserDbCredential 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?: DomainsUserDbCredentialState, opts?: CustomResourceOptions): DomainsUserDbCredential
@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,
db_password: Optional[str] = None,
delete_in_progress: Optional[bool] = None,
description: Optional[str] = None,
domain_ocid: Optional[str] = None,
expired: Optional[bool] = None,
expires_on: Optional[str] = None,
idcs_created_bies: Optional[Sequence[_identity.DomainsUserDbCredentialIdcsCreatedByArgs]] = None,
idcs_endpoint: Optional[str] = None,
idcs_last_modified_bies: Optional[Sequence[_identity.DomainsUserDbCredentialIdcsLastModifiedByArgs]] = None,
idcs_last_upgraded_in_release: Optional[str] = None,
idcs_prevented_operations: Optional[Sequence[str]] = None,
last_set_date: Optional[str] = None,
metas: Optional[Sequence[_identity.DomainsUserDbCredentialMetaArgs]] = None,
mixed_db_password: Optional[str] = None,
mixed_salt: Optional[str] = None,
name: Optional[str] = None,
ocid: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
salt: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
status: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsUserDbCredentialTagArgs]] = None,
tenancy_ocid: Optional[str] = None,
urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[_identity.DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs] = None,
user: Optional[_identity.DomainsUserDbCredentialUserArgs] = None) -> DomainsUserDbCredential
func GetDomainsUserDbCredential(ctx *Context, name string, id IDInput, state *DomainsUserDbCredentialState, opts ...ResourceOption) (*DomainsUserDbCredential, error)
public static DomainsUserDbCredential Get(string name, Input<string> id, DomainsUserDbCredentialState? state, CustomResourceOptions? opts = null)
public static DomainsUserDbCredential get(String name, Output<String> id, DomainsUserDbCredentialState state, CustomResourceOptions options)
resources: _: type: oci:Identity:DomainsUserDbCredential 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.
- Attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- 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 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
- Db
Password Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- Delete
In boolProgress (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
- Description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- Domain
Ocid 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
- Expired bool
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- Expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Idcs
Created List<DomainsBies User Db Credential Idcs Created By> (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.
- The basic endpoint for the identity domain
- Idcs
Last List<DomainsModified Bies User Db Credential Idcs Last Modified By> (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 stringUpgraded In Release (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 List<string>Operations (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
- Last
Set stringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- Metas
List<Domains
User Db Credential Meta> (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
- Mixed
Db stringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Mixed
Salt string (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Name string
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- Ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- Salt string
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Schemas
Changes to this property will trigger replacement.
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
- Status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag> 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 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
- Urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User - Controls whether a user can update themselves or not via User related APIs
- User
Changes to this property will trigger replacement.
User Db Credential User The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- Attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- 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 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
- Db
Password Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- Delete
In boolProgress (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
- Description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- Domain
Ocid 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
- Expired bool
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- Expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Idcs
Created []DomainsBies User Db Credential Idcs Created By Args (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.
- The basic endpoint for the identity domain
- Idcs
Last []DomainsModified Bies User Db Credential Idcs Last Modified By Args (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 stringUpgraded In Release (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 []stringOperations (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
- Last
Set stringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- Metas
[]Domains
User Db Credential Meta Args (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
- Mixed
Db stringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Mixed
Salt string (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Name string
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- Ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- Salt string
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- Schemas
Changes to this property will trigger replacement.
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
- Status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag Args 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 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
- Urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args - Controls whether a user can update themselves or not via User related APIs
- User
Changes to this property will trigger replacement.
User Db Credential User Args The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- 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 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
- db
Password Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- delete
In BooleanProgress (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
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- domain
Ocid 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
- expired Boolean
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- idcs
Created List<DomainsBies User Db Credential Idcs Created By> (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.
- The basic endpoint for the identity domain
- idcs
Last List<DomainsModified Bies User Db Credential Idcs Last Modified By> (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 StringUpgraded In Release (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 List<String>Operations (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
- last
Set StringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- metas
List<Domains
User Db Credential Meta> (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
- mixed
Db StringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed
Salt String (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name String
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- salt String
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- schemas
Changes to this property will trigger replacement.
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
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag> 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 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
- urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User - Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
User Db Credential User The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- 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 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
- db
Password Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- delete
In booleanProgress (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
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- domain
Ocid 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
- expired boolean
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- idcs
Created DomainsBies User Db Credential Idcs Created By[] (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.
- The basic endpoint for the identity domain
- idcs
Last DomainsModified Bies User Db Credential Idcs Last Modified By[] (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 stringUpgraded In Release (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 string[]Operations (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
- last
Set stringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- metas
Domains
User Db Credential Meta[] (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
- mixed
Db stringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed
Salt string (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name string
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- salt string
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- schemas
Changes to this property will trigger replacement.
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
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
User Db Credential Tag[] 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 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
- urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User - Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
User Db Credential User The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- attribute_
sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- 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
- db_
password Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- delete_
in_ boolprogress (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
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- 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
- expired bool
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- expires_
on Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- idcs_
created_ Sequence[identity.bies Domains User Db Credential Idcs Created By Args] (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.
- The basic endpoint for the identity domain
- idcs_
last_ Sequence[identity.modified_ bies Domains User Db Credential Idcs Last Modified By Args] (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_ strupgraded_ in_ release (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_ Sequence[str]operations (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
- last_
set_ strdate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- metas
Sequence[identity.
Domains User Db Credential Meta Args] (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
- mixed_
db_ strpassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed_
salt str (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name str
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- salt str
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- schemas
Changes to this property will trigger replacement.
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
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
Domains User Db Credential Tag Args] 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
- urnietfparamsscimschemasoracleidcsextensionself_
change_ user Changes to this property will trigger replacement.
Domains User Db Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args - Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
Domains User Db Credential User Args The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
- attribute
Sets Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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.
Changes to this property will trigger replacement.
- 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 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
- db
Password Changes to this property will trigger replacement.
The user's database password.
SCIM++ Properties:
- type: string
- mutability: immutable
- returned: default
- required: true
- delete
In BooleanProgress (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
- description
Changes to this property will trigger replacement.
Description
Added In: 2109020413
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readWrite
- required: false
- returned: default
- domain
Ocid 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
- expired Boolean
(Updatable) Indicates that the database password has expired.
SCIM++ Properties:
- type: boolean
- mutability: readOnly
- returned: default
- expires
On Changes to this property will trigger replacement.
When the user credential expires.
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- idcs
Created List<Property Map>Bies (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.
- The basic endpoint for the identity domain
- idcs
Last List<Property Map>Modified Bies (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 StringUpgraded In Release (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 List<String>Operations (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
- last
Set StringDate (Updatable) A DateTime that specifies the date and time when the current database password was set.
SCIM++ Properties:
- type: dateTime
- mutability: readOnly
- returned: default
- 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
- mixed
Db StringPassword (Updatable) The user's database password with mixed salt.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- mixed
Salt String (Updatable) The mixed salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- name String
(Updatable) Name
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- type: string
- mutability: readOnly
- required: false
- returned: default
- ocid
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
- 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.
- salt String
(Updatable) The salt of the password.
SCIM++ Properties:
- type: string
- mutability: readOnly
- returned: default
- required: false
- schemas
Changes to this property will trigger replacement.
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
- status
Changes to this property will trigger replacement.
User credential status
Added In: 2109090424
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: never
- type: string
- uniqueness: none
Changes to this property will trigger replacement.
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 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
- urnietfparamsscimschemasoracleidcsextensionself
Change User Changes to this property will trigger replacement.
- Controls whether a user can update themselves or not via User related APIs
- user
Changes to this property will trigger replacement.
The user linked to the database credential.
SCIM++ Properties:
- caseExact: false
- idcsCompositeKey: [value]
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: complex
- uniqueness: none
Supporting Types
DomainsUserDbCredentialIdcsCreatedBy, DomainsUserDbCredentialIdcsCreatedByArgs
- Value
This property is required. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
DomainsUserDbCredentialIdcsLastModifiedBy, DomainsUserDbCredentialIdcsLastModifiedByArgs
- Value
This property is required. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
DomainsUserDbCredentialMeta, DomainsUserDbCredentialMetaArgs
- Created
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement.
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
Changes to this property will trigger replacement.
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
DomainsUserDbCredentialTag, DomainsUserDbCredentialTagArgs
- Key
This property is required. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
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. Changes to this property will trigger replacement.
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUser, DomainsUserDbCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs
- Allow
Self Change Changes to this property will trigger replacement.
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
Added In: 2205182039
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: writeOnly
- required: false
- returned: never
- type: boolean
- uniqueness: none
- Allow
Self Change Changes to this property will trigger replacement.
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
Added In: 2205182039
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: writeOnly
- required: false
- returned: never
- type: boolean
- uniqueness: none
- allow
Self Change Changes to this property will trigger replacement.
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
Added In: 2205182039
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: writeOnly
- required: false
- returned: never
- type: boolean
- uniqueness: none
- allow
Self Change Changes to this property will trigger replacement.
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
Added In: 2205182039
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: writeOnly
- required: false
- returned: never
- type: boolean
- uniqueness: none
- allow_
self_ change Changes to this property will trigger replacement.
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
Added In: 2205182039
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: writeOnly
- required: false
- returned: never
- type: boolean
- uniqueness: none
- allow
Self Change Changes to this property will trigger replacement.
If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
Added In: 2205182039
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: writeOnly
- required: false
- returned: never
- type: boolean
- uniqueness: none
DomainsUserDbCredentialUser, DomainsUserDbCredentialUserArgs
- Value
This property is required. Changes to this property will trigger replacement.
The user's identifier.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: always
- 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
- Display string
(Updatable) The user display name.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Name string
(Updatable) The username.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid
Changes to this property will trigger replacement.
The user's OCID.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: always
- type: string
- uniqueness: none
- Ref string
(Updatable) The URI that corresponds to the user linked to this credential.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- Value
This property is required. Changes to this property will trigger replacement.
The user's identifier.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: always
- 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
- Display string
(Updatable) The user display name.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Name string
(Updatable) The username.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid
Changes to this property will trigger replacement.
The user's OCID.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: always
- type: string
- uniqueness: none
- Ref string
(Updatable) The URI that corresponds to the user linked to this credential.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- value
This property is required. Changes to this property will trigger replacement.
The user's identifier.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: always
- 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
- display String
(Updatable) The user display name.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- name String
(Updatable) The username.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
The user's OCID.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: always
- type: string
- uniqueness: none
- ref String
(Updatable) The URI that corresponds to the user linked to this credential.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- value
This property is required. Changes to this property will trigger replacement.
The user's identifier.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: always
- 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
- display string
(Updatable) The user display name.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- name string
(Updatable) The username.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
The user's OCID.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: always
- type: string
- uniqueness: none
- ref string
(Updatable) The URI that corresponds to the user linked to this credential.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- value
This property is required. Changes to this property will trigger replacement.
The user's identifier.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: always
- 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
- display str
(Updatable) The user display name.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- name str
(Updatable) The username.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
The user's OCID.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: always
- type: string
- uniqueness: none
- ref str
(Updatable) The URI that corresponds to the user linked to this credential.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- value
This property is required. Changes to this property will trigger replacement.
The user's identifier.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: always
- 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
- display String
(Updatable) The user display name.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- name String
(Updatable) The username.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid
Changes to this property will trigger replacement.
The user's OCID.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: always
- type: string
- uniqueness: none
- ref String
(Updatable) The URI that corresponds to the user linked to this credential.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
Import
UserDbCredentials can be imported using the id
, e.g.
$ pulumi import oci:Identity/domainsUserDbCredential:DomainsUserDbCredential test_user_db_credential "idcsEndpoint/{idcsEndpoint}/userDbCredentials/{userDbCredentialId}"
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.