oci logo
Oracle Cloud Infrastructure v0.13.0, Mar 28 23

oci.Identity.DomainsCustomerSecretKey

This resource provides the Customer Secret Key resource in Oracle Cloud Infrastructure Identity Domains service.

Add a user’s customer secret key

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.DomainsCustomerSecretKey;
import com.pulumi.oci.Identity.DomainsCustomerSecretKeyArgs;
import com.pulumi.oci.Identity.inputs.DomainsCustomerSecretKeyTagArgs;
import com.pulumi.oci.Identity.inputs.DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs;
import com.pulumi.oci.Identity.inputs.DomainsCustomerSecretKeyUserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testCustomerSecretKey = new DomainsCustomerSecretKey("testCustomerSecretKey", DomainsCustomerSecretKeyArgs.builder()        
            .idcsEndpoint(data.oci_identity_domain().test_domain().url())
            .schemas("urn:ietf:params:scim:schemas:oracle:idcs:customerSecretKey")
            .attributeSets()
            .attributes("")
            .authorization(var_.customer_secret_key_authorization())
            .description(var_.customer_secret_key_description())
            .displayName(var_.customer_secret_key_display_name())
            .expiresOn(var_.customer_secret_key_expires_on())
            .id(var_.customer_secret_key_id())
            .ocid(var_.customer_secret_key_ocid())
            .resourceTypeSchemaVersion(var_.customer_secret_key_resource_type_schema_version())
            .status(var_.customer_secret_key_status())
            .tags(DomainsCustomerSecretKeyTagArgs.builder()
                .key(var_.customer_secret_key_tags_key())
                .value(var_.customer_secret_key_tags_value())
                .build())
            .urnietfparamsscimschemasoracleidcsextensionselfChangeUser(DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs.builder()
                .allowSelfChange(var_.customer_secret_key_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change())
                .build())
            .user(DomainsCustomerSecretKeyUserArgs.builder()
                .ocid(oci_identity_domains_user.test_user().ocid())
                .value(oci_identity_domains_user.test_user().id())
                .build())
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  testCustomerSecretKey:
    type: oci:Identity:DomainsCustomerSecretKey
    properties:
      #Required
      idcsEndpoint: ${data.oci_identity_domain.test_domain.url}
      schemas:
        - urn:ietf:params:scim:schemas:oracle:idcs:customerSecretKey
      #Optional
      attributeSets: []
      attributes:
      authorization: ${var.customer_secret_key_authorization}
      description: ${var.customer_secret_key_description}
      displayName: ${var.customer_secret_key_display_name}
      expiresOn: ${var.customer_secret_key_expires_on}
      id: ${var.customer_secret_key_id}
      ocid: ${var.customer_secret_key_ocid}
      resourceTypeSchemaVersion: ${var.customer_secret_key_resource_type_schema_version}
      status: ${var.customer_secret_key_status}
      tags:
        - key: ${var.customer_secret_key_tags_key}
          value: ${var.customer_secret_key_tags_value}
      urnietfparamsscimschemasoracleidcsextensionselfChangeUser:
        allowSelfChange: ${var.customer_secret_key_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change}
      user:
        ocid: ${oci_identity_domains_user.test_user.ocid}
        value: ${oci_identity_domains_user.test_user.id}

Create DomainsCustomerSecretKey Resource

new DomainsCustomerSecretKey(name: string, args: DomainsCustomerSecretKeyArgs, opts?: CustomResourceOptions);
@overload
def DomainsCustomerSecretKey(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             attribute_sets: Optional[Sequence[str]] = None,
                             attributes: Optional[str] = None,
                             authorization: Optional[str] = None,
                             description: Optional[str] = None,
                             display_name: Optional[str] = None,
                             expires_on: Optional[str] = None,
                             idcs_endpoint: Optional[str] = None,
                             ocid: Optional[str] = None,
                             resource_type_schema_version: Optional[str] = None,
                             schemas: Optional[Sequence[str]] = None,
                             status: Optional[str] = None,
                             tags: Optional[Sequence[_identity.DomainsCustomerSecretKeyTagArgs]] = None,
                             urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[_identity.DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs] = None,
                             user: Optional[_identity.DomainsCustomerSecretKeyUserArgs] = None)
@overload
def DomainsCustomerSecretKey(resource_name: str,
                             args: DomainsCustomerSecretKeyArgs,
                             opts: Optional[ResourceOptions] = None)
func NewDomainsCustomerSecretKey(ctx *Context, name string, args DomainsCustomerSecretKeyArgs, opts ...ResourceOption) (*DomainsCustomerSecretKey, error)
public DomainsCustomerSecretKey(string name, DomainsCustomerSecretKeyArgs args, CustomResourceOptions? opts = null)
public DomainsCustomerSecretKey(String name, DomainsCustomerSecretKeyArgs args)
public DomainsCustomerSecretKey(String name, DomainsCustomerSecretKeyArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsCustomerSecretKey
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

DomainsCustomerSecretKey Resource Properties

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

Inputs

The DomainsCustomerSecretKey resource accepts the following input properties:

IdcsEndpoint string

The basic endpoint for the identity domain

Schemas List<string>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

AttributeSets List<string>

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

Description string

Description

DisplayName string

Display Name

ExpiresOn string

User credential expires on

Ocid string

User's ocid

ResourceTypeSchemaVersion string

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Status string

User credential status

Tags List<DomainsCustomerSecretKeyTagArgs>

A list of tags on this resource.

UrnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

User DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

IdcsEndpoint string

The basic endpoint for the identity domain

Schemas []string

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

AttributeSets []string

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

Description string

Description

DisplayName string

Display Name

ExpiresOn string

User credential expires on

Ocid string

User's ocid

ResourceTypeSchemaVersion string

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Status string

User credential status

Tags []DomainsCustomerSecretKeyTagArgs

A list of tags on this resource.

UrnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

User DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

idcsEndpoint String

The basic endpoint for the identity domain

schemas List<String>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

attributeSets List<String>

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

description String

Description

displayName String

Display Name

expiresOn String

User credential expires on

ocid String

User's ocid

resourceTypeSchemaVersion String

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

status String

User credential status

tags List<DomainsCustomerSecretKeyTagArgs>

A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

user DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

idcsEndpoint string

The basic endpoint for the identity domain

schemas string[]

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

attributeSets string[]

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes string

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization string

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

description string

Description

displayName string

Display Name

expiresOn string

User credential expires on

ocid string

User's ocid

resourceTypeSchemaVersion string

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

status string

User credential status

tags DomainsCustomerSecretKeyTagArgs[]

A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

user DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

idcs_endpoint str

The basic endpoint for the identity domain

schemas Sequence[str]

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

attribute_sets Sequence[str]

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes str

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization str

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

description str

Description

display_name str

Display Name

expires_on str

User credential expires on

ocid str

User's ocid

resource_type_schema_version str

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

status str

User credential status

tags DomainsCustomerSecretKeyTagArgs]

A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionself_change_user DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

user DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

idcsEndpoint String

The basic endpoint for the identity domain

schemas List<String>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

attributeSets List<String>

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

description String

Description

displayName String

Display Name

expiresOn String

User credential expires on

ocid String

User's ocid

resourceTypeSchemaVersion String

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

status String

User credential status

tags List<Property Map>

A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionselfChangeUser Property Map

Controls whether a user can update themselves or not via User related APIs

user Property Map

User linked to customer secret key

Outputs

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

AccessKey string

(Updatable) Access key

CompartmentOcid string

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

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

DomainOcid string

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

Id string

The provider-assigned unique ID for this managed resource.

IdcsCreatedBies List<DomainsCustomerSecretKeyIdcsCreatedBy>

(Updatable) The User or App who created the Resource

IdcsLastModifiedBies List<DomainsCustomerSecretKeyIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations List<string>

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

Metas List<DomainsCustomerSecretKeyMeta>

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

TenancyOcid string

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

AccessKey string

(Updatable) Access key

CompartmentOcid string

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

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

DomainOcid string

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

Id string

The provider-assigned unique ID for this managed resource.

IdcsCreatedBies []DomainsCustomerSecretKeyIdcsCreatedBy

(Updatable) The User or App who created the Resource

IdcsLastModifiedBies []DomainsCustomerSecretKeyIdcsLastModifiedBy

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations []string

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

Metas []DomainsCustomerSecretKeyMeta

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

TenancyOcid string

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

accessKey String

(Updatable) Access key

compartmentOcid String

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

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domainOcid String

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

id String

The provider-assigned unique ID for this managed resource.

idcsCreatedBies List<DomainsCustomerSecretKeyIdcsCreatedBy>

(Updatable) The User or App who created the Resource

idcsLastModifiedBies List<DomainsCustomerSecretKeyIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

metas List<DomainsCustomerSecretKeyMeta>

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

tenancyOcid String

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

accessKey string

(Updatable) Access key

compartmentOcid string

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

deleteInProgress boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domainOcid string

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

id string

The provider-assigned unique ID for this managed resource.

idcsCreatedBies DomainsCustomerSecretKeyIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

idcsLastModifiedBies DomainsCustomerSecretKeyIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease string

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

idcsPreventedOperations string[]

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

metas DomainsCustomerSecretKeyMeta[]

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

tenancyOcid string

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

access_key str

(Updatable) Access key

compartment_ocid str

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

delete_in_progress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domain_ocid str

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

id str

The provider-assigned unique ID for this managed resource.

idcs_created_bies DomainsCustomerSecretKeyIdcsCreatedBy]

(Updatable) The User or App who created the Resource

idcs_last_modified_bies DomainsCustomerSecretKeyIdcsLastModifiedBy]

(Updatable) The User or App who modified the Resource

idcs_last_upgraded_in_release str

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

idcs_prevented_operations Sequence[str]

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

metas DomainsCustomerSecretKeyMeta]

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

tenancy_ocid str

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

accessKey String

(Updatable) Access key

compartmentOcid String

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

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domainOcid String

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

id String

The provider-assigned unique ID for this managed resource.

idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

metas List<Property Map>

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

tenancyOcid String

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

Look up Existing DomainsCustomerSecretKey Resource

Get an existing DomainsCustomerSecretKey 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?: DomainsCustomerSecretKeyState, opts?: CustomResourceOptions): DomainsCustomerSecretKey
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_key: Optional[str] = None,
        attribute_sets: Optional[Sequence[str]] = None,
        attributes: Optional[str] = None,
        authorization: Optional[str] = None,
        compartment_ocid: Optional[str] = None,
        delete_in_progress: Optional[bool] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        domain_ocid: Optional[str] = None,
        expires_on: Optional[str] = None,
        idcs_created_bies: Optional[Sequence[_identity.DomainsCustomerSecretKeyIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[_identity.DomainsCustomerSecretKeyIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        metas: Optional[Sequence[_identity.DomainsCustomerSecretKeyMetaArgs]] = None,
        ocid: Optional[str] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        status: Optional[str] = None,
        tags: Optional[Sequence[_identity.DomainsCustomerSecretKeyTagArgs]] = None,
        tenancy_ocid: Optional[str] = None,
        urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[_identity.DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs] = None,
        user: Optional[_identity.DomainsCustomerSecretKeyUserArgs] = None) -> DomainsCustomerSecretKey
func GetDomainsCustomerSecretKey(ctx *Context, name string, id IDInput, state *DomainsCustomerSecretKeyState, opts ...ResourceOption) (*DomainsCustomerSecretKey, error)
public static DomainsCustomerSecretKey Get(string name, Input<string> id, DomainsCustomerSecretKeyState? state, CustomResourceOptions? opts = null)
public static DomainsCustomerSecretKey get(String name, Output<String> id, DomainsCustomerSecretKeyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccessKey string

(Updatable) Access key

AttributeSets List<string>

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

CompartmentOcid string

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

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

Description string

Description

DisplayName string

Display Name

DomainOcid string

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

ExpiresOn string

User credential expires on

IdcsCreatedBies List<DomainsCustomerSecretKeyIdcsCreatedByArgs>

(Updatable) The User or App who created the Resource

IdcsEndpoint string

The basic endpoint for the identity domain

IdcsLastModifiedBies List<DomainsCustomerSecretKeyIdcsLastModifiedByArgs>

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations List<string>

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

Metas List<DomainsCustomerSecretKeyMetaArgs>

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

Ocid string

User's ocid

ResourceTypeSchemaVersion string

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Schemas List<string>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

Status string

User credential status

Tags List<DomainsCustomerSecretKeyTagArgs>

A list of tags on this resource.

TenancyOcid string

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

UrnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

User DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

AccessKey string

(Updatable) Access key

AttributeSets []string

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

CompartmentOcid string

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

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

Description string

Description

DisplayName string

Display Name

DomainOcid string

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

ExpiresOn string

User credential expires on

IdcsCreatedBies []DomainsCustomerSecretKeyIdcsCreatedByArgs

(Updatable) The User or App who created the Resource

IdcsEndpoint string

The basic endpoint for the identity domain

IdcsLastModifiedBies []DomainsCustomerSecretKeyIdcsLastModifiedByArgs

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations []string

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

Metas []DomainsCustomerSecretKeyMetaArgs

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

Ocid string

User's ocid

ResourceTypeSchemaVersion string

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Schemas []string

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

Status string

User credential status

Tags []DomainsCustomerSecretKeyTagArgs

A list of tags on this resource.

TenancyOcid string

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

UrnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

User DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

accessKey String

(Updatable) Access key

attributeSets List<String>

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartmentOcid String

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

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

description String

Description

displayName String

Display Name

domainOcid String

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

expiresOn String

User credential expires on

idcsCreatedBies List<DomainsCustomerSecretKeyIdcsCreatedByArgs>

(Updatable) The User or App who created the Resource

idcsEndpoint String

The basic endpoint for the identity domain

idcsLastModifiedBies List<DomainsCustomerSecretKeyIdcsLastModifiedByArgs>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

metas List<DomainsCustomerSecretKeyMetaArgs>

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

ocid String

User's ocid

resourceTypeSchemaVersion String

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas List<String>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

status String

User credential status

tags List<DomainsCustomerSecretKeyTagArgs>

A list of tags on this resource.

tenancyOcid String

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

urnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

user DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

accessKey string

(Updatable) Access key

attributeSets string[]

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes string

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization string

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartmentOcid string

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

deleteInProgress boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

description string

Description

displayName string

Display Name

domainOcid string

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

expiresOn string

User credential expires on

idcsCreatedBies DomainsCustomerSecretKeyIdcsCreatedByArgs[]

(Updatable) The User or App who created the Resource

idcsEndpoint string

The basic endpoint for the identity domain

idcsLastModifiedBies DomainsCustomerSecretKeyIdcsLastModifiedByArgs[]

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease string

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

idcsPreventedOperations string[]

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

metas DomainsCustomerSecretKeyMetaArgs[]

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

ocid string

User's ocid

resourceTypeSchemaVersion string

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas string[]

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

status string

User credential status

tags DomainsCustomerSecretKeyTagArgs[]

A list of tags on this resource.

tenancyOcid string

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

urnietfparamsscimschemasoracleidcsextensionselfChangeUser DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

user DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

access_key str

(Updatable) Access key

attribute_sets Sequence[str]

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes str

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization str

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartment_ocid str

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

delete_in_progress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

description str

Description

display_name str

Display Name

domain_ocid str

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

expires_on str

User credential expires on

idcs_created_bies DomainsCustomerSecretKeyIdcsCreatedByArgs]

(Updatable) The User or App who created the Resource

idcs_endpoint str

The basic endpoint for the identity domain

idcs_last_modified_bies DomainsCustomerSecretKeyIdcsLastModifiedByArgs]

(Updatable) The User or App who modified the Resource

idcs_last_upgraded_in_release str

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

idcs_prevented_operations Sequence[str]

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

metas DomainsCustomerSecretKeyMetaArgs]

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

ocid str

User's ocid

resource_type_schema_version str

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas Sequence[str]

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

status str

User credential status

tags DomainsCustomerSecretKeyTagArgs]

A list of tags on this resource.

tenancy_ocid str

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

urnietfparamsscimschemasoracleidcsextensionself_change_user DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs

Controls whether a user can update themselves or not via User related APIs

user DomainsCustomerSecretKeyUserArgs

User linked to customer secret key

accessKey String

(Updatable) Access key

attributeSets List<String>

A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartmentOcid String

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

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

description String

Description

displayName String

Display Name

domainOcid String

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

expiresOn String

User credential expires on

idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

idcsEndpoint String

The basic endpoint for the identity domain

idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

metas List<Property Map>

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

ocid String

User's ocid

resourceTypeSchemaVersion String

An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas List<String>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

status String

User credential status

tags List<Property Map>

A list of tags on this resource.

tenancyOcid String

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

urnietfparamsscimschemasoracleidcsextensionselfChangeUser Property Map

Controls whether a user can update themselves or not via User related APIs

user Property Map

User linked to customer secret key

Supporting Types

DomainsCustomerSecretKeyIdcsCreatedBy

Value string

User's id

Display string

(Updatable) User display name

Ocid string

User's ocid

Ref string

(Updatable) The URI that corresponds to the user linked to this credential

Type string

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

Value string

User's id

Display string

(Updatable) User display name

Ocid string

User's ocid

Ref string

(Updatable) The URI that corresponds to the user linked to this credential

Type string

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

value String

User's id

display String

(Updatable) User display name

ocid String

User's ocid

ref String

(Updatable) The URI that corresponds to the user linked to this credential

type String

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

value string

User's id

display string

(Updatable) User display name

ocid string

User's ocid

ref string

(Updatable) The URI that corresponds to the user linked to this credential

type string

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

value str

User's id

display str

(Updatable) User display name

ocid str

User's ocid

ref str

(Updatable) The URI that corresponds to the user linked to this credential

type str

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

value String

User's id

display String

(Updatable) User display name

ocid String

User's ocid

ref String

(Updatable) The URI that corresponds to the user linked to this credential

type String

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

DomainsCustomerSecretKeyIdcsLastModifiedBy

Value string

User's id

Display string

(Updatable) User display name

Ocid string

User's ocid

Ref string

(Updatable) The URI that corresponds to the user linked to this credential

Type string

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

Value string

User's id

Display string

(Updatable) User display name

Ocid string

User's ocid

Ref string

(Updatable) The URI that corresponds to the user linked to this credential

Type string

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

value String

User's id

display String

(Updatable) User display name

ocid String

User's ocid

ref String

(Updatable) The URI that corresponds to the user linked to this credential

type String

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

value string

User's id

display string

(Updatable) User display name

ocid string

User's ocid

ref string

(Updatable) The URI that corresponds to the user linked to this credential

type string

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

value str

User's id

display str

(Updatable) User display name

ocid str

User's ocid

ref str

(Updatable) The URI that corresponds to the user linked to this credential

type str

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

value String

User's id

display String

(Updatable) User display name

ocid String

User's ocid

ref String

(Updatable) The URI that corresponds to the user linked to this credential

type String

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

DomainsCustomerSecretKeyMeta

Created string

The DateTime the Resource was added to the Service Provider

LastModified string

The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

Location string

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

ResourceType string

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

Version string

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

Created string

The DateTime the Resource was added to the Service Provider

LastModified string

The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

Location string

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

ResourceType string

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

Version string

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

created String

The DateTime the Resource was added to the Service Provider

lastModified String

The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location String

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

resourceType String

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

version String

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

created string

The DateTime the Resource was added to the Service Provider

lastModified string

The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location string

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

resourceType string

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

version string

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

created str

The DateTime the Resource was added to the Service Provider

last_modified str

The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location str

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

resource_type str

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

version str

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

created String

The DateTime the Resource was added to the Service Provider

lastModified String

The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location String

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

resourceType String

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

version String

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

DomainsCustomerSecretKeyTag

Key string

Key or name of the tag.

Value string

User's id

Key string

Key or name of the tag.

Value string

User's id

key String

Key or name of the tag.

value String

User's id

key string

Key or name of the tag.

value string

User's id

key str

Key or name of the tag.

value str

User's id

key String

Key or name of the tag.

value String

User's id

DomainsCustomerSecretKeyUrnietfparamsscimschemasoracleidcsextensionselfChangeUser

AllowSelfChange bool

If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

AllowSelfChange bool

If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

allowSelfChange Boolean

If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

allowSelfChange boolean

If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

allow_self_change bool

If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

allowSelfChange Boolean

If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).

DomainsCustomerSecretKeyUser

Display string

(Updatable) User display name

Name string

(Updatable) User name

Ocid string

User's ocid

Ref string

(Updatable) The URI that corresponds to the user linked to this credential

Value string

User's id

Display string

(Updatable) User display name

Name string

(Updatable) User name

Ocid string

User's ocid

Ref string

(Updatable) The URI that corresponds to the user linked to this credential

Value string

User's id

display String

(Updatable) User display name

name String

(Updatable) User name

ocid String

User's ocid

ref String

(Updatable) The URI that corresponds to the user linked to this credential

value String

User's id

display string

(Updatable) User display name

name string

(Updatable) User name

ocid string

User's ocid

ref string

(Updatable) The URI that corresponds to the user linked to this credential

value string

User's id

display str

(Updatable) User display name

name str

(Updatable) User name

ocid str

User's ocid

ref str

(Updatable) The URI that corresponds to the user linked to this credential

value str

User's id

display String

(Updatable) User display name

name String

(Updatable) User name

ocid String

User's ocid

ref String

(Updatable) The URI that corresponds to the user linked to this credential

value String

User's id

Import

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

 $ pulumi import oci:Identity/domainsCustomerSecretKey:DomainsCustomerSecretKey test_customer_secret_key "idcsEndpoint/{idcsEndpoint}/customerSecretKeys/{customerSecretKeyId}"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.