oci.Identity.DomainsOauthPartnerCertificate
Explore with Pulumi AI
This resource provides the O Auth Partner Certificate resource in Oracle Cloud Infrastructure Identity Domains service.
Create an OAuth Partner Certificate
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOauthPartnerCertificate = new oci.identity.DomainsOauthPartnerCertificate("test_oauth_partner_certificate", {
certificateAlias: oauthPartnerCertificateCertificateAlias,
idcsEndpoint: testDomain.url,
schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:OAuthPartnerCertificate"],
authorization: oauthPartnerCertificateAuthorization,
externalId: "externalId",
keyStoreId: testKeyStore.id,
keyStoreName: testKeyStore.name,
keyStorePassword: oauthPartnerCertificateKeyStorePassword,
map: oauthPartnerCertificateMap,
ocid: oauthPartnerCertificateOcid,
resourceTypeSchemaVersion: oauthPartnerCertificateResourceTypeSchemaVersion,
tags: [{
key: oauthPartnerCertificateTagsKey,
value: oauthPartnerCertificateTagsValue,
}],
x509base64certificate: oauthPartnerCertificateX509base64certificate,
});
import pulumi
import pulumi_oci as oci
test_oauth_partner_certificate = oci.identity.DomainsOauthPartnerCertificate("test_oauth_partner_certificate",
certificate_alias=oauth_partner_certificate_certificate_alias,
idcs_endpoint=test_domain["url"],
schemas=["urn:ietf:params:scim:schemas:oracle:idcs:OAuthPartnerCertificate"],
authorization=oauth_partner_certificate_authorization,
external_id="externalId",
key_store_id=test_key_store["id"],
key_store_name=test_key_store["name"],
key_store_password=oauth_partner_certificate_key_store_password,
map=oauth_partner_certificate_map,
ocid=oauth_partner_certificate_ocid,
resource_type_schema_version=oauth_partner_certificate_resource_type_schema_version,
tags=[{
"key": oauth_partner_certificate_tags_key,
"value": oauth_partner_certificate_tags_value,
}],
x509base64certificate=oauth_partner_certificate_x509base64certificate)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Identity.NewDomainsOauthPartnerCertificate(ctx, "test_oauth_partner_certificate", &Identity.DomainsOauthPartnerCertificateArgs{
CertificateAlias: pulumi.Any(oauthPartnerCertificateCertificateAlias),
IdcsEndpoint: pulumi.Any(testDomain.Url),
Schemas: pulumi.StringArray{
pulumi.String("urn:ietf:params:scim:schemas:oracle:idcs:OAuthPartnerCertificate"),
},
Authorization: pulumi.Any(oauthPartnerCertificateAuthorization),
ExternalId: pulumi.String("externalId"),
KeyStoreId: pulumi.Any(testKeyStore.Id),
KeyStoreName: pulumi.Any(testKeyStore.Name),
KeyStorePassword: pulumi.Any(oauthPartnerCertificateKeyStorePassword),
Map: pulumi.Any(oauthPartnerCertificateMap),
Ocid: pulumi.Any(oauthPartnerCertificateOcid),
ResourceTypeSchemaVersion: pulumi.Any(oauthPartnerCertificateResourceTypeSchemaVersion),
Tags: identity.DomainsOauthPartnerCertificateTagArray{
&identity.DomainsOauthPartnerCertificateTagArgs{
Key: pulumi.Any(oauthPartnerCertificateTagsKey),
Value: pulumi.Any(oauthPartnerCertificateTagsValue),
},
},
X509base64certificate: pulumi.Any(oauthPartnerCertificateX509base64certificate),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOauthPartnerCertificate = new Oci.Identity.DomainsOauthPartnerCertificate("test_oauth_partner_certificate", new()
{
CertificateAlias = oauthPartnerCertificateCertificateAlias,
IdcsEndpoint = testDomain.Url,
Schemas = new[]
{
"urn:ietf:params:scim:schemas:oracle:idcs:OAuthPartnerCertificate",
},
Authorization = oauthPartnerCertificateAuthorization,
ExternalId = "externalId",
KeyStoreId = testKeyStore.Id,
KeyStoreName = testKeyStore.Name,
KeyStorePassword = oauthPartnerCertificateKeyStorePassword,
Map = oauthPartnerCertificateMap,
Ocid = oauthPartnerCertificateOcid,
ResourceTypeSchemaVersion = oauthPartnerCertificateResourceTypeSchemaVersion,
Tags = new[]
{
new Oci.Identity.Inputs.DomainsOauthPartnerCertificateTagArgs
{
Key = oauthPartnerCertificateTagsKey,
Value = oauthPartnerCertificateTagsValue,
},
},
X509base64certificate = oauthPartnerCertificateX509base64certificate,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.DomainsOauthPartnerCertificate;
import com.pulumi.oci.Identity.DomainsOauthPartnerCertificateArgs;
import com.pulumi.oci.Identity.inputs.DomainsOauthPartnerCertificateTagArgs;
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 testOauthPartnerCertificate = new DomainsOauthPartnerCertificate("testOauthPartnerCertificate", DomainsOauthPartnerCertificateArgs.builder()
.certificateAlias(oauthPartnerCertificateCertificateAlias)
.idcsEndpoint(testDomain.url())
.schemas("urn:ietf:params:scim:schemas:oracle:idcs:OAuthPartnerCertificate")
.authorization(oauthPartnerCertificateAuthorization)
.externalId("externalId")
.keyStoreId(testKeyStore.id())
.keyStoreName(testKeyStore.name())
.keyStorePassword(oauthPartnerCertificateKeyStorePassword)
.map(oauthPartnerCertificateMap)
.ocid(oauthPartnerCertificateOcid)
.resourceTypeSchemaVersion(oauthPartnerCertificateResourceTypeSchemaVersion)
.tags(DomainsOauthPartnerCertificateTagArgs.builder()
.key(oauthPartnerCertificateTagsKey)
.value(oauthPartnerCertificateTagsValue)
.build())
.x509base64certificate(oauthPartnerCertificateX509base64certificate)
.build());
}
}
resources:
testOauthPartnerCertificate:
type: oci:Identity:DomainsOauthPartnerCertificate
name: test_oauth_partner_certificate
properties:
certificateAlias: ${oauthPartnerCertificateCertificateAlias}
idcsEndpoint: ${testDomain.url}
schemas:
- urn:ietf:params:scim:schemas:oracle:idcs:OAuthPartnerCertificate
authorization: ${oauthPartnerCertificateAuthorization}
externalId: externalId
keyStoreId: ${testKeyStore.id}
keyStoreName: ${testKeyStore.name}
keyStorePassword: ${oauthPartnerCertificateKeyStorePassword}
map: ${oauthPartnerCertificateMap}
ocid: ${oauthPartnerCertificateOcid}
resourceTypeSchemaVersion: ${oauthPartnerCertificateResourceTypeSchemaVersion}
tags:
- key: ${oauthPartnerCertificateTagsKey}
value: ${oauthPartnerCertificateTagsValue}
x509base64certificate: ${oauthPartnerCertificateX509base64certificate}
Create DomainsOauthPartnerCertificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainsOauthPartnerCertificate(name: string, args: DomainsOauthPartnerCertificateArgs, opts?: CustomResourceOptions);
@overload
def DomainsOauthPartnerCertificate(resource_name: str,
args: DomainsOauthPartnerCertificateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DomainsOauthPartnerCertificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
idcs_endpoint: Optional[str] = None,
certificate_alias: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
key_store_password: Optional[str] = None,
key_store_id: Optional[str] = None,
key_store_name: Optional[str] = None,
authorization: Optional[str] = None,
map: Optional[str] = None,
ocid: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
external_id: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsOauthPartnerCertificateTagArgs]] = None,
x509base64certificate: Optional[str] = None)
func NewDomainsOauthPartnerCertificate(ctx *Context, name string, args DomainsOauthPartnerCertificateArgs, opts ...ResourceOption) (*DomainsOauthPartnerCertificate, error)
public DomainsOauthPartnerCertificate(string name, DomainsOauthPartnerCertificateArgs args, CustomResourceOptions? opts = null)
public DomainsOauthPartnerCertificate(String name, DomainsOauthPartnerCertificateArgs args)
public DomainsOauthPartnerCertificate(String name, DomainsOauthPartnerCertificateArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsOauthPartnerCertificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DomainsOauthPartnerCertificateArgs
- 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 DomainsOauthPartnerCertificateArgs
- 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 DomainsOauthPartnerCertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainsOauthPartnerCertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainsOauthPartnerCertificateArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var domainsOauthPartnerCertificateResource = new Oci.Identity.DomainsOauthPartnerCertificate("domainsOauthPartnerCertificateResource", new()
{
IdcsEndpoint = "string",
CertificateAlias = "string",
Schemas = new[]
{
"string",
},
KeyStorePassword = "string",
KeyStoreId = "string",
KeyStoreName = "string",
Authorization = "string",
Map = "string",
Ocid = "string",
ResourceTypeSchemaVersion = "string",
ExternalId = "string",
Tags = new[]
{
new Oci.Identity.Inputs.DomainsOauthPartnerCertificateTagArgs
{
Key = "string",
Value = "string",
},
},
X509base64certificate = "string",
});
example, err := Identity.NewDomainsOauthPartnerCertificate(ctx, "domainsOauthPartnerCertificateResource", &Identity.DomainsOauthPartnerCertificateArgs{
IdcsEndpoint: pulumi.String("string"),
CertificateAlias: pulumi.String("string"),
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
KeyStorePassword: pulumi.String("string"),
KeyStoreId: pulumi.String("string"),
KeyStoreName: pulumi.String("string"),
Authorization: pulumi.String("string"),
Map: pulumi.String("string"),
Ocid: pulumi.String("string"),
ResourceTypeSchemaVersion: pulumi.String("string"),
ExternalId: pulumi.String("string"),
Tags: identity.DomainsOauthPartnerCertificateTagArray{
&identity.DomainsOauthPartnerCertificateTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
X509base64certificate: pulumi.String("string"),
})
var domainsOauthPartnerCertificateResource = new DomainsOauthPartnerCertificate("domainsOauthPartnerCertificateResource", DomainsOauthPartnerCertificateArgs.builder()
.idcsEndpoint("string")
.certificateAlias("string")
.schemas("string")
.keyStorePassword("string")
.keyStoreId("string")
.keyStoreName("string")
.authorization("string")
.map("string")
.ocid("string")
.resourceTypeSchemaVersion("string")
.externalId("string")
.tags(DomainsOauthPartnerCertificateTagArgs.builder()
.key("string")
.value("string")
.build())
.x509base64certificate("string")
.build());
domains_oauth_partner_certificate_resource = oci.identity.DomainsOauthPartnerCertificate("domainsOauthPartnerCertificateResource",
idcs_endpoint="string",
certificate_alias="string",
schemas=["string"],
key_store_password="string",
key_store_id="string",
key_store_name="string",
authorization="string",
map="string",
ocid="string",
resource_type_schema_version="string",
external_id="string",
tags=[oci.identity.DomainsOauthPartnerCertificateTagArgs(
key="string",
value="string",
)],
x509base64certificate="string")
const domainsOauthPartnerCertificateResource = new oci.identity.DomainsOauthPartnerCertificate("domainsOauthPartnerCertificateResource", {
idcsEndpoint: "string",
certificateAlias: "string",
schemas: ["string"],
keyStorePassword: "string",
keyStoreId: "string",
keyStoreName: "string",
authorization: "string",
map: "string",
ocid: "string",
resourceTypeSchemaVersion: "string",
externalId: "string",
tags: [{
key: "string",
value: "string",
}],
x509base64certificate: "string",
});
type: oci:Identity:DomainsOauthPartnerCertificate
properties:
authorization: string
certificateAlias: string
externalId: string
idcsEndpoint: string
keyStoreId: string
keyStoreName: string
keyStorePassword: string
map: string
ocid: string
resourceTypeSchemaVersion: string
schemas:
- string
tags:
- key: string
value: string
x509base64certificate: string
DomainsOauthPartnerCertificate 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 DomainsOauthPartnerCertificate resource accepts the following input properties:
- Certificate
Alias string Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- External
Id string An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- Key
Store stringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- Key
Store stringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Key
Store stringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- Map string
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Ocid string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Resource
Type 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.
- List<Domains
Oauth Partner Certificate Tag> A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- X509base64certificate string
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Certificate
Alias string Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- External
Id string An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- Key
Store stringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- Key
Store stringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Key
Store stringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- Map string
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Ocid string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Resource
Type 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.
- []Domains
Oauth Partner Certificate Tag Args A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- X509base64certificate string
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- certificate
Alias String Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external
Id String An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- key
Store StringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key
Store StringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key
Store StringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map String
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- ocid String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource
Type 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.
- List<Domains
Oauth Partner Certificate Tag> A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- x509base64certificate String
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- certificate
Alias string Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external
Id string An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- key
Store stringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key
Store stringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key
Store stringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map string
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- ocid string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource
Type 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.
- Domains
Oauth Partner Certificate Tag[] A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- x509base64certificate string
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- certificate_
alias str Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- str
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external_
id str An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- key_
store_ strid Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key_
store_ strname Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key_
store_ strpassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map str
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- ocid str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource_
type_ 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.
- Sequence[identity.
Domains Oauth Partner Certificate Tag Args] A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- x509base64certificate str
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- certificate
Alias String Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external
Id String An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- key
Store StringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key
Store StringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key
Store StringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map String
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- ocid String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource
Type 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.
- List<Property Map>
A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- x509base64certificate String
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainsOauthPartnerCertificate resource produces the following output properties:
- Cert
End stringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Cert
Start stringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Id string
- The provider-assigned unique ID for this managed resource.
- Idcs
Created List<DomainsBies Oauth Partner Certificate Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Last List<DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented List<string>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Metas
List<Domains
Oauth Partner Certificate Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Sha1thumbprint string
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Sha256thumbprint string
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Cert
End stringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Cert
Start stringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Id string
- The provider-assigned unique ID for this managed resource.
- Idcs
Created []DomainsBies Oauth Partner Certificate Idcs Created By (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Last []DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Metas
[]Domains
Oauth Partner Certificate Meta (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Sha1thumbprint string
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Sha256thumbprint string
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- cert
End StringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert
Start StringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id String
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<DomainsBies Oauth Partner Certificate Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Last List<DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas
List<Domains
Oauth Partner Certificate Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- sha1thumbprint String
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint String
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- cert
End stringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert
Start stringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In booleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id string
- The provider-assigned unique ID for this managed resource.
- idcs
Created DomainsBies Oauth Partner Certificate Idcs Created By[] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Last DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By[] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas
Domains
Oauth Partner Certificate Meta[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- sha1thumbprint string
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint string
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- cert_
end_ strdate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert_
start_ strdate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete_
in_ boolprogress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain_
ocid str (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id str
- The provider-assigned unique ID for this managed resource.
- idcs_
created_ Sequence[identity.bies Domains Oauth Partner Certificate Idcs Created By] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs_
last_ Sequence[identity.modified_ bies Domains Oauth Partner Certificate Idcs Last Modified By] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs_
prevented_ Sequence[str]operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas
Sequence[identity.
Domains Oauth Partner Certificate Meta] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- sha1thumbprint str
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint str
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- tenancy_
ocid str (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- cert
End StringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert
Start StringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id String
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- sha1thumbprint String
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint String
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
Look up Existing DomainsOauthPartnerCertificate Resource
Get an existing DomainsOauthPartnerCertificate 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?: DomainsOauthPartnerCertificateState, opts?: CustomResourceOptions): DomainsOauthPartnerCertificate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authorization: Optional[str] = None,
cert_end_date: Optional[str] = None,
cert_start_date: Optional[str] = None,
certificate_alias: Optional[str] = None,
compartment_ocid: Optional[str] = None,
delete_in_progress: Optional[bool] = None,
domain_ocid: Optional[str] = None,
external_id: Optional[str] = None,
idcs_created_bies: Optional[Sequence[_identity.DomainsOauthPartnerCertificateIdcsCreatedByArgs]] = None,
idcs_endpoint: Optional[str] = None,
idcs_last_modified_bies: Optional[Sequence[_identity.DomainsOauthPartnerCertificateIdcsLastModifiedByArgs]] = None,
idcs_last_upgraded_in_release: Optional[str] = None,
idcs_prevented_operations: Optional[Sequence[str]] = None,
key_store_id: Optional[str] = None,
key_store_name: Optional[str] = None,
key_store_password: Optional[str] = None,
map: Optional[str] = None,
metas: Optional[Sequence[_identity.DomainsOauthPartnerCertificateMetaArgs]] = None,
ocid: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
sha1thumbprint: Optional[str] = None,
sha256thumbprint: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsOauthPartnerCertificateTagArgs]] = None,
tenancy_ocid: Optional[str] = None,
x509base64certificate: Optional[str] = None) -> DomainsOauthPartnerCertificate
func GetDomainsOauthPartnerCertificate(ctx *Context, name string, id IDInput, state *DomainsOauthPartnerCertificateState, opts ...ResourceOption) (*DomainsOauthPartnerCertificate, error)
public static DomainsOauthPartnerCertificate Get(string name, Input<string> id, DomainsOauthPartnerCertificateState? state, CustomResourceOptions? opts = null)
public static DomainsOauthPartnerCertificate get(String name, Output<String> id, DomainsOauthPartnerCertificateState 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.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Cert
End stringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Cert
Start stringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Certificate
Alias string Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- External
Id string An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- Idcs
Created List<DomainsBies Oauth Partner Certificate Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Idcs
Last List<DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented List<string>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Key
Store stringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- Key
Store stringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Key
Store stringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- Map string
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Metas
List<Domains
Oauth Partner Certificate Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Ocid string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Resource
Type 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Sha1thumbprint string
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Sha256thumbprint string
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- List<Domains
Oauth Partner Certificate Tag> A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- X509base64certificate string
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Cert
End stringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Cert
Start stringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- Certificate
Alias string Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- External
Id string An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- Idcs
Created []DomainsBies Oauth Partner Certificate Idcs Created By Args (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Idcs
Last []DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By Args (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Key
Store stringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- Key
Store stringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Key
Store stringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- Map string
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- Metas
[]Domains
Oauth Partner Certificate Meta Args (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Ocid string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Resource
Type 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Sha1thumbprint string
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Sha256thumbprint string
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- []Domains
Oauth Partner Certificate Tag Args A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- X509base64certificate string
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- cert
End StringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert
Start StringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- certificate
Alias String Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- external
Id String An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- idcs
Created List<DomainsBies Oauth Partner Certificate Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Endpoint String - The basic endpoint for the identity domain
- idcs
Last List<DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- key
Store StringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key
Store StringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key
Store StringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map String
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- metas
List<Domains
Oauth Partner Certificate Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- ocid String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource
Type 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- sha1thumbprint String
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint String
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- List<Domains
Oauth Partner Certificate Tag> A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- x509base64certificate String
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- cert
End stringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert
Start stringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- certificate
Alias string Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In booleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- external
Id string An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- idcs
Created DomainsBies Oauth Partner Certificate Idcs Created By[] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Endpoint string - The basic endpoint for the identity domain
- idcs
Last DomainsModified Bies Oauth Partner Certificate Idcs Last Modified By[] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- key
Store stringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key
Store stringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key
Store stringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map string
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- metas
Domains
Oauth Partner Certificate Meta[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- ocid string
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource
Type 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- sha1thumbprint string
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint string
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Domains
Oauth Partner Certificate Tag[] A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- x509base64certificate string
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- str
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- cert_
end_ strdate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert_
start_ strdate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- certificate_
alias str Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete_
in_ boolprogress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain_
ocid str (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- external_
id str An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- idcs_
created_ Sequence[identity.bies Domains Oauth Partner Certificate Idcs Created By Args] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs_
endpoint str - The basic endpoint for the identity domain
- idcs_
last_ Sequence[identity.modified_ bies Domains Oauth Partner Certificate Idcs Last Modified By Args] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs_
prevented_ Sequence[str]operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- key_
store_ strid Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key_
store_ strname Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key_
store_ strpassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map str
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- metas
Sequence[identity.
Domains Oauth Partner Certificate Meta Args] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- ocid str
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource_
type_ 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- sha1thumbprint str
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint str
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- Sequence[identity.
Domains Oauth Partner Certificate Tag Args] A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy_
ocid str (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- x509base64certificate str
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- cert
End StringDate (Updatable) Certificate end date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- cert
Start StringDate (Updatable) Certificate start date
SCIM++ Properties:
- type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
- certificate
Alias String Certificate alias
SCIM++ Properties:
- type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- external
Id String An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- mutability: readWrite
- returned: default
- uniqueness: none
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Endpoint String - The basic endpoint for the identity domain
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- key
Store StringId Key store ID
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
- key
Store StringName Key store name
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- key
Store StringPassword Key store password
SCIM++ Properties:
- type: string
- multiValued: false
- idcsSensitive: none
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- map String
Map
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- ocid String
Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- resource
Type 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- sha1thumbprint String
(Updatable) SHA-1 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- sha256thumbprint String
(Updatable) SHA-256 Thumbprint
SCIM++ Properties:
- type: string
- multiValued: false
- required: false
- caseExact: true
- returned: default
- idcsSearchable: true
- uniqueness: none
- List<Property Map>
A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- x509base64certificate String
Base 64Key data attribute
SCIM++ Properties:
- caseExact: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
DomainsOauthPartnerCertificateIdcsCreatedBy, DomainsOauthPartnerCertificateIdcsCreatedByArgs
- Value string
The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- Type string
The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Value string
The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- Type string
The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type String
The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value string
The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display string
The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid string
The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref string
(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type string
The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value str
The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display str
The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid str
The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref str
(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type str
The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
(Updatable) The URI of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type String
The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsOauthPartnerCertificateIdcsLastModifiedBy, DomainsOauthPartnerCertificateIdcsLastModifiedByArgs
- Value string
The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- Type string
The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Value string
The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- Type string
The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type String
The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value string
The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display string
The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid string
The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref string
(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type string
The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value str
The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display str
The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid str
The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref str
(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type str
The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
- type String
The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsOauthPartnerCertificateMeta, DomainsOauthPartnerCertificateMetaArgs
- Created string
The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Last
Modified 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Location string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Resource
Type string Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Version string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Created string
The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Last
Modified 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Location string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Resource
Type string Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Version string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created String
The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last
Modified 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location String
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource
Type String Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version String
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created string
The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last
Modified 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location string
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource
Type string Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version string
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created str
The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last_
modified str The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location str
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource_
type str Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version str
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created String
The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last
Modified 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location String
The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource
Type String Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version String
The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsOauthPartnerCertificateTag, DomainsOauthPartnerCertificateTagArgs
- Key string
Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Value string
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Key string
Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Value string
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key String
Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value String
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key string
Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value string
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key str
Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value str
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key String
Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value String
Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Import
OAuthPartnerCertificates can be imported using the id
, e.g.
$ pulumi import oci:Identity/domainsOauthPartnerCertificate:DomainsOauthPartnerCertificate test_oauth_partner_certificate "idcsEndpoint/{idcsEndpoint}/oAuthPartnerCertificates/{oAuthPartnerCertificateId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.