oci.Identity.DomainsOauth2clientCredential
This resource provides the O Auth2 Client Credential resource in Oracle Cloud Infrastructure Identity Domains service.
Add a user’s oauth2 client credential
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.DomainsOauth2clientCredential;
import com.pulumi.oci.Identity.DomainsOauth2clientCredentialArgs;
import com.pulumi.oci.Identity.inputs.DomainsOauth2clientCredentialScopeArgs;
import com.pulumi.oci.Identity.inputs.DomainsOauth2clientCredentialTagArgs;
import com.pulumi.oci.Identity.inputs.DomainsOauth2clientCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs;
import com.pulumi.oci.Identity.inputs.DomainsOauth2clientCredentialUserArgs;
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 testOauth2clientCredential = new DomainsOauth2clientCredential("testOauth2clientCredential", DomainsOauth2clientCredentialArgs.builder()
.idcsEndpoint(data.oci_identity_domain().test_domain().url())
.schemas("urn:ietf:params:scim:schemas:oracle:idcs:oauth2ClientCredential")
.scopes(DomainsOauth2clientCredentialScopeArgs.builder()
.audience(var_.oauth2client_credential_scopes_audience())
.scope(var_.oauth2client_credential_scopes_scope())
.build())
.attributeSets()
.attributes("")
.authorization(var_.oauth2client_credential_authorization())
.description(var_.oauth2client_credential_description())
.expiresOn(var_.oauth2client_credential_expires_on())
.id(var_.oauth2client_credential_id())
.isResetSecret(var_.oauth2client_credential_is_reset_secret())
.ocid(var_.oauth2client_credential_ocid())
.resourceTypeSchemaVersion(var_.oauth2client_credential_resource_type_schema_version())
.status(var_.oauth2client_credential_status())
.tags(DomainsOauth2clientCredentialTagArgs.builder()
.key(var_.oauth2client_credential_tags_key())
.value(var_.oauth2client_credential_tags_value())
.build())
.urnietfparamsscimschemasoracleidcsextensionselfChangeUser(DomainsOauth2clientCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs.builder()
.allowSelfChange(var_.oauth2client_credential_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change())
.build())
.user(DomainsOauth2clientCredentialUserArgs.builder()
.ocid(oci_identity_domains_user.test_user().ocid())
.value(oci_identity_domains_user.test_user().id())
.build())
.build());
}
}
Coming soon!
Coming soon!
resources:
testOauth2clientCredential:
type: oci:Identity:DomainsOauth2clientCredential
properties:
#Required
idcsEndpoint: ${data.oci_identity_domain.test_domain.url}
schemas:
- urn:ietf:params:scim:schemas:oracle:idcs:oauth2ClientCredential
scopes:
- audience: ${var.oauth2client_credential_scopes_audience}
scope: ${var.oauth2client_credential_scopes_scope}
#Optional
attributeSets: []
attributes:
authorization: ${var.oauth2client_credential_authorization}
description: ${var.oauth2client_credential_description}
expiresOn: ${var.oauth2client_credential_expires_on}
id: ${var.oauth2client_credential_id}
isResetSecret: ${var.oauth2client_credential_is_reset_secret}
ocid: ${var.oauth2client_credential_ocid}
resourceTypeSchemaVersion: ${var.oauth2client_credential_resource_type_schema_version}
status: ${var.oauth2client_credential_status}
tags:
- key: ${var.oauth2client_credential_tags_key}
value: ${var.oauth2client_credential_tags_value}
urnietfparamsscimschemasoracleidcsextensionselfChangeUser:
allowSelfChange: ${var.oauth2client_credential_urnietfparamsscimschemasoracleidcsextensionself_change_user_allow_self_change}
user:
ocid: ${oci_identity_domains_user.test_user.ocid}
value: ${oci_identity_domains_user.test_user.id}
Create DomainsOauth2clientCredential Resource
new DomainsOauth2clientCredential(name: string, args: DomainsOauth2clientCredentialArgs, opts?: CustomResourceOptions);
@overload
def DomainsOauth2clientCredential(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,
expires_on: Optional[str] = None,
idcs_endpoint: Optional[str] = None,
is_reset_secret: Optional[bool] = None,
name: Optional[str] = None,
ocid: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
scopes: Optional[Sequence[_identity.DomainsOauth2clientCredentialScopeArgs]] = None,
status: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsOauth2clientCredentialTagArgs]] = None,
urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[_identity.DomainsOauth2clientCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs] = None,
user: Optional[_identity.DomainsOauth2clientCredentialUserArgs] = None)
@overload
def DomainsOauth2clientCredential(resource_name: str,
args: DomainsOauth2clientCredentialArgs,
opts: Optional[ResourceOptions] = None)
func NewDomainsOauth2clientCredential(ctx *Context, name string, args DomainsOauth2clientCredentialArgs, opts ...ResourceOption) (*DomainsOauth2clientCredential, error)
public DomainsOauth2clientCredential(string name, DomainsOauth2clientCredentialArgs args, CustomResourceOptions? opts = null)
public DomainsOauth2clientCredential(String name, DomainsOauth2clientCredentialArgs args)
public DomainsOauth2clientCredential(String name, DomainsOauth2clientCredentialArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsOauth2clientCredential
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainsOauth2clientCredentialArgs
- 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 DomainsOauth2clientCredentialArgs
- 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 DomainsOauth2clientCredentialArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainsOauth2clientCredentialArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainsOauth2clientCredentialArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DomainsOauth2clientCredential 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 DomainsOauth2clientCredential resource accepts the following input properties:
- Idcs
Endpoint 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.
- Scopes
List<Domains
Oauth2client Credential Scope Args> Scopes
- Attribute
Sets List<string> A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Description string
Description
- Expires
On string User credential expires on
- Is
Reset boolSecret Specifies if secret need to be reset
- Name string
(Updatable) User name
- Ocid string
User's ocid
- Resource
Type stringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Status string
User credential status
- List<Domains
Oauth2client Credential Tag Args> A list of tags on this resource.
- Urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- User
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- Idcs
Endpoint 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.
- Scopes
[]Domains
Oauth2client Credential Scope Args Scopes
- Attribute
Sets []string A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Description string
Description
- Expires
On string User credential expires on
- Is
Reset boolSecret Specifies if secret need to be reset
- Name string
(Updatable) User name
- Ocid string
User's ocid
- Resource
Type stringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Status string
User credential status
- []Domains
Oauth2client Credential Tag Args A list of tags on this resource.
- Urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- User
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- idcs
Endpoint 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.
- scopes
List<Domains
Oauth2client Credential Scope Args> Scopes
- attribute
Sets List<String> A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description String
Description
- expires
On String User credential expires on
- is
Reset BooleanSecret Specifies if secret need to be reset
- name String
(Updatable) User name
- ocid String
User's ocid
- resource
Type StringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- status String
User credential status
- List<Domains
Oauth2client Credential Tag Args> A list of tags on this resource.
- urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- user
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- idcs
Endpoint 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.
- scopes
Domains
Oauth2client Credential Scope Args[] Scopes
- attribute
Sets string[] A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description string
Description
- expires
On string User credential expires on
- is
Reset booleanSecret Specifies if secret need to be reset
- name string
(Updatable) User name
- ocid string
User's ocid
- resource
Type stringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- status string
User credential status
- Domains
Oauth2client Credential Tag Args[] A list of tags on this resource.
- urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- user
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- 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.
- scopes
Domains
Oauth2client Credential Scope Args] Scopes
- attribute_
sets Sequence[str] A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- str
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description str
Description
- expires_
on str User credential expires on
- is_
reset_ boolsecret Specifies if secret need to be reset
- name str
(Updatable) User name
- ocid str
User's ocid
- resource_
type_ strschema_ version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- status str
User credential status
- Domains
Oauth2client Credential Tag Args] A list of tags on this resource.
- urnietfparamsscimschemasoracleidcsextensionself_
change_ Domainsuser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- user
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- idcs
Endpoint 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.
- scopes List<Property Map>
Scopes
- attribute
Sets List<String> A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- description String
Description
- expires
On String User credential expires on
- is
Reset BooleanSecret Specifies if secret need to be reset
- name String
(Updatable) User name
- ocid String
User's ocid
- resource
Type StringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- status String
User credential status
- List<Property Map>
A list of tags on this resource.
- urnietfparamsscimschemasoracleidcsextensionself
Change Property MapUser Controls whether a user can update themselves or not via User related APIs
- user Property Map
User linked to oauth2 client credential
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainsOauth2clientCredential resource produces the following output properties:
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Id string
The provider-assigned unique ID for this managed resource.
- Idcs
Created List<DomainsBies Oauth2client Credential Idcs Created By> (Updatable) The User or App who created the Resource
- Idcs
Last List<DomainsModified Bies Oauth2client Credential Idcs Last Modified By> (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- 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.
- Metas
List<Domains
Oauth2client Credential Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Id string
The provider-assigned unique ID for this managed resource.
- Idcs
Created []DomainsBies Oauth2client Credential Idcs Created By (Updatable) The User or App who created the Resource
- Idcs
Last []DomainsModified Bies Oauth2client Credential Idcs Last Modified By (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Metas
[]Domains
Oauth2client Credential Meta (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- id String
The provider-assigned unique ID for this managed resource.
- idcs
Created List<DomainsBies Oauth2client Credential Idcs Created By> (Updatable) The User or App who created the Resource
- idcs
Last List<DomainsModified Bies Oauth2client Credential Idcs Last Modified By> (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- 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.
- metas
List<Domains
Oauth2client Credential Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- id string
The provider-assigned unique ID for this managed resource.
- idcs
Created DomainsBies Oauth2client Credential Idcs Created By[] (Updatable) The User or App who created the Resource
- idcs
Last DomainsModified Bies Oauth2client Credential Idcs Last Modified By[] (Updatable) The User or App who modified the Resource
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- metas
Domains
Oauth2client Credential Meta[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- 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_ Domainsbies Oauth2client Credential Idcs Created By] (Updatable) The User or App who created the Resource
- idcs_
last_ Domainsmodified_ bies Oauth2client Credential Idcs Last Modified By] (Updatable) The User or App who modified the Resource
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
- 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.
- metas
Domains
Oauth2client Credential Meta] (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.
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- 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
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- 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.
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
Look up Existing DomainsOauth2clientCredential Resource
Get an existing DomainsOauth2clientCredential 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?: DomainsOauth2clientCredentialState, opts?: CustomResourceOptions): DomainsOauth2clientCredential
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attribute_sets: Optional[Sequence[str]] = None,
attributes: Optional[str] = None,
authorization: Optional[str] = None,
compartment_ocid: Optional[str] = None,
delete_in_progress: Optional[bool] = None,
description: Optional[str] = None,
domain_ocid: Optional[str] = None,
expires_on: Optional[str] = None,
idcs_created_bies: Optional[Sequence[_identity.DomainsOauth2clientCredentialIdcsCreatedByArgs]] = None,
idcs_endpoint: Optional[str] = None,
idcs_last_modified_bies: Optional[Sequence[_identity.DomainsOauth2clientCredentialIdcsLastModifiedByArgs]] = None,
idcs_last_upgraded_in_release: Optional[str] = None,
idcs_prevented_operations: Optional[Sequence[str]] = None,
is_reset_secret: Optional[bool] = None,
metas: Optional[Sequence[_identity.DomainsOauth2clientCredentialMetaArgs]] = None,
name: Optional[str] = None,
ocid: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
scopes: Optional[Sequence[_identity.DomainsOauth2clientCredentialScopeArgs]] = None,
status: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsOauth2clientCredentialTagArgs]] = None,
tenancy_ocid: Optional[str] = None,
urnietfparamsscimschemasoracleidcsextensionself_change_user: Optional[_identity.DomainsOauth2clientCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUserArgs] = None,
user: Optional[_identity.DomainsOauth2clientCredentialUserArgs] = None) -> DomainsOauth2clientCredential
func GetDomainsOauth2clientCredential(ctx *Context, name string, id IDInput, state *DomainsOauth2clientCredentialState, opts ...ResourceOption) (*DomainsOauth2clientCredential, error)
public static DomainsOauth2clientCredential Get(string name, Input<string> id, DomainsOauth2clientCredentialState? state, CustomResourceOptions? opts = null)
public static DomainsOauth2clientCredential get(String name, Output<String> id, DomainsOauth2clientCredentialState 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.
- Attribute
Sets List<string> A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- Description string
Description
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Expires
On string User credential expires on
- Idcs
Created List<DomainsBies Oauth2client Credential Idcs Created By Args> (Updatable) The User or App who created the Resource
- Idcs
Endpoint string The basic endpoint for the identity domain
- Idcs
Last List<DomainsModified Bies Oauth2client Credential Idcs Last Modified By Args> (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- 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.
- Is
Reset boolSecret Specifies if secret need to be reset
- Metas
List<Domains
Oauth2client Credential Meta Args> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Name string
(Updatable) User name
- Ocid string
User's ocid
- Resource
Type stringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- Scopes
List<Domains
Oauth2client Credential Scope Args> Scopes
- Status string
User credential status
- List<Domains
Oauth2client Credential Tag Args> A list of tags on this resource.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- User
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- Attribute
Sets []string A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- Description string
Description
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Expires
On string User credential expires on
- Idcs
Created []DomainsBies Oauth2client Credential Idcs Created By Args (Updatable) The User or App who created the Resource
- Idcs
Endpoint string The basic endpoint for the identity domain
- Idcs
Last []DomainsModified Bies Oauth2client Credential Idcs Last Modified By Args (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Is
Reset boolSecret Specifies if secret need to be reset
- Metas
[]Domains
Oauth2client Credential Meta Args (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Name string
(Updatable) User name
- Ocid string
User's ocid
- Resource
Type stringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- Scopes
[]Domains
Oauth2client Credential Scope Args Scopes
- Status string
User credential status
- []Domains
Oauth2client Credential Tag Args A list of tags on this resource.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- User
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- attribute
Sets List<String> A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- description String
Description
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- expires
On String User credential expires on
- idcs
Created List<DomainsBies Oauth2client Credential Idcs Created By Args> (Updatable) The User or App who created the Resource
- idcs
Endpoint String The basic endpoint for the identity domain
- idcs
Last List<DomainsModified Bies Oauth2client Credential Idcs Last Modified By Args> (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- 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.
- is
Reset BooleanSecret Specifies if secret need to be reset
- metas
List<Domains
Oauth2client Credential Meta Args> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name String
(Updatable) User name
- ocid String
User's ocid
- resource
Type StringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- scopes
List<Domains
Oauth2client Credential Scope Args> Scopes
- status String
User credential status
- List<Domains
Oauth2client Credential Tag Args> A list of tags on this resource.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- user
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- attribute
Sets string[] A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- description string
Description
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- expires
On string User credential expires on
- idcs
Created DomainsBies Oauth2client Credential Idcs Created By Args[] (Updatable) The User or App who created the Resource
- idcs
Endpoint string The basic endpoint for the identity domain
- idcs
Last DomainsModified Bies Oauth2client Credential Idcs Last Modified By Args[] (Updatable) The User or App who modified the Resource
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- is
Reset booleanSecret Specifies if secret need to be reset
- metas
Domains
Oauth2client Credential Meta Args[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name string
(Updatable) User name
- ocid string
User's ocid
- resource
Type stringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- scopes
Domains
Oauth2client Credential Scope Args[] Scopes
- status string
User credential status
- Domains
Oauth2client Credential Tag Args[] A list of tags on this resource.
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensionself
Change DomainsUser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- user
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- attribute_
sets Sequence[str] A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- str
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- description str
Description
- domain_
ocid str (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- expires_
on str User credential expires on
- idcs_
created_ Domainsbies Oauth2client Credential Idcs Created By Args] (Updatable) The User or App who created the Resource
- idcs_
endpoint str The basic endpoint for the identity domain
- idcs_
last_ Domainsmodified_ bies Oauth2client Credential Idcs Last Modified By Args] (Updatable) The User or App who modified the Resource
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
- 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.
- is_
reset_ boolsecret Specifies if secret need to be reset
- metas
Domains
Oauth2client Credential Meta Args] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name str
(Updatable) User name
- ocid str
User's ocid
- resource_
type_ strschema_ version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- scopes
Domains
Oauth2client Credential Scope Args] Scopes
- status str
User credential status
- Domains
Oauth2client Credential Tag Args] A list of tags on this resource.
- tenancy_
ocid str (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensionself_
change_ Domainsuser Oauth2client Credential Urnietfparamsscimschemasoracleidcsextensionself Change User Args Controls whether a user can update themselves or not via User related APIs
- user
Domains
Oauth2client Credential User Args User linked to oauth2 client credential
- attribute
Sets List<String> A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- 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.
- description String
Description
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- expires
On String User credential expires on
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
- idcs
Endpoint String The basic endpoint for the identity domain
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- 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.
- is
Reset BooleanSecret Specifies if secret need to be reset
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name String
(Updatable) User name
- ocid String
User's ocid
- resource
Type StringSchema Version An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- 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.
- scopes List<Property Map>
Scopes
- status String
User credential status
- List<Property Map>
A list of tags on this resource.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensionself
Change Property MapUser Controls whether a user can update themselves or not via User related APIs
- user Property Map
User linked to oauth2 client credential
Supporting Types
DomainsOauth2clientCredentialIdcsCreatedBy
DomainsOauth2clientCredentialIdcsLastModifiedBy
DomainsOauth2clientCredentialMeta
- Created string
The DateTime the Resource was added to the Service Provider
- Last
Modified string The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type string Name of the resource type of the resource--for example, Users or Groups
- Version string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- Created string
The DateTime the Resource was added to the Service Provider
- Last
Modified string The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type string Name of the resource type of the resource--for example, Users or Groups
- Version string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
The DateTime the Resource was added to the Service Provider
- last
Modified String The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type String Name of the resource type of the resource--for example, Users or Groups
- version String
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created string
The DateTime the Resource was added to the Service Provider
- last
Modified string The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type string Name of the resource type of the resource--for example, Users or Groups
- version string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created str
The DateTime the Resource was added to the Service Provider
- last_
modified str The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location str
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource_
type str Name of the resource type of the resource--for example, Users or Groups
- version str
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
- created String
The DateTime the Resource was added to the Service Provider
- last
Modified String The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type String Name of the resource type of the resource--for example, Users or Groups
- version String
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
DomainsOauth2clientCredentialScope
DomainsOauth2clientCredentialTag
DomainsOauth2clientCredentialUrnietfparamsscimschemasoracleidcsextensionselfChangeUser
- Allow
Self boolChange If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- Allow
Self boolChange If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allow
Self BooleanChange If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allow
Self booleanChange If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allow_
self_ boolchange If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
- allow
Self BooleanChange If true, allows requesting user to update themselves. If false, requesting user can't update themself (default).
DomainsOauth2clientCredentialUser
Import
OAuth2ClientCredentials can be imported using the id
, e.g.
$ pulumi import oci:Identity/domainsOauth2clientCredential:DomainsOauth2clientCredential test_oauth2client_credential "idcsEndpoint/{idcsEndpoint}/oAuth2ClientCredentials/{oAuth2ClientCredentialId}"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.