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[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=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DomainsOauthPartnerCertificate resource accepts the following input properties:
- CertificateAlias string
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- Schemas List<string>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - 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.
- ExternalId 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
 
- KeyStore stringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- KeyStore stringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- KeyStore 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
 
- ResourceType 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<DomainsOauth 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 
- CertificateAlias string
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- Schemas []string
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - 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.
- ExternalId 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
 
- KeyStore stringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- KeyStore stringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- KeyStore 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
 
- ResourceType 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.
- 
[]DomainsOauth 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 
- certificateAlias String
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- schemas List<String>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - 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.
- externalId 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
 
- keyStore StringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- keyStore StringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- keyStore 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
 
- resourceType 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<DomainsOauth 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 
- certificateAlias string
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- idcsEndpoint string
- The basic endpoint for the identity domain
- schemas string[]
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - 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.
- externalId 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
 
- keyStore stringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- keyStore stringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- keyStore 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
 
- resourceType 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.
- 
DomainsOauth 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[DomainsOauth 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 
- certificateAlias String
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- schemas List<String>
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. - 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.
- externalId 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
 
- keyStore StringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- keyStore StringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- keyStore 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
 
- resourceType 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:
- CertEnd stringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CertStart stringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- DeleteIn 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
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Id string
- The provider-assigned unique ID for this managed resource.
- IdcsCreated 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
 
- IdcsLast 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
 
- IdcsLast 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
 
- IdcsPrevented 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<DomainsOauth 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
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- CertEnd stringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CertStart stringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- DeleteIn 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
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Id string
- The provider-assigned unique ID for this managed resource.
- IdcsCreated []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
 
- IdcsLast []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
 
- IdcsLast 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
 
- IdcsPrevented []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
[]DomainsOauth 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
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- certEnd StringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certStart StringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- deleteIn 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
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- id String
- The provider-assigned unique ID for this managed resource.
- idcsCreated 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
 
- idcsLast 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
 
- idcsLast 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
 
- idcsPrevented 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<DomainsOauth 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
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- certEnd stringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certStart stringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- compartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- deleteIn 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
 
- domainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- id string
- The provider-assigned unique ID for this managed resource.
- idcsCreated 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
 
- idcsLast 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
 
- idcsLast 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
 
- idcsPrevented 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
DomainsOauth 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
 
- tenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 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[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_ Sequence[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_ 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[DomainsOauth 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
 
- certEnd StringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certStart StringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- deleteIn 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
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- id String
- The provider-assigned unique ID for this managed resource.
- idcsCreated 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
 
- idcsLast 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
 
- idcsLast 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
 
- idcsPrevented 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
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
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[DomainsOauthPartnerCertificateIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[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[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[DomainsOauthPartnerCertificateTagArgs]] = None,
        tenancy_ocid: Optional[str] = None,
        x509base64certificate: Optional[str] = None) -> DomainsOauthPartnerCertificatefunc 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)resources:  _:    type: oci:Identity:DomainsOauthPartnerCertificate    get:      id: ${id}- 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.
- CertEnd stringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CertStart stringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CertificateAlias string
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- DeleteIn 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
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ExternalId string
- 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
 
- IdcsCreated 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
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast 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
 
- IdcsLast 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
 
- IdcsPrevented 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
 
- KeyStore stringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- KeyStore stringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- KeyStore 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<DomainsOauth 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
 
- ResourceType 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<DomainsOauth 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
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 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.
- CertEnd stringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CertStart stringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- CertificateAlias string
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- CompartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- DeleteIn 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
 
- DomainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ExternalId string
- 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
 
- IdcsCreated []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
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast []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
 
- IdcsLast 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
 
- IdcsPrevented []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
 
- KeyStore stringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- KeyStore stringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- KeyStore 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
[]DomainsOauth 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
 
- ResourceType 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
 
- 
[]DomainsOauth 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
 
- TenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 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.
- certEnd StringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certStart StringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certificateAlias String
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- deleteIn 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
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- externalId String
- 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
 
- idcsCreated 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
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast 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
 
- idcsLast 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
 
- idcsPrevented 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
 
- keyStore StringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- keyStore StringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- keyStore 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<DomainsOauth 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
 
- resourceType 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<DomainsOauth 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
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 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.
- certEnd stringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certStart stringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certificateAlias string
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- compartmentOcid string
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- deleteIn 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
 
- domainOcid string
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- externalId string
- 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
 
- idcsCreated 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
 
- idcsEndpoint string
- The basic endpoint for the identity domain
- idcsLast 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
 
- idcsLast 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
 
- idcsPrevented 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
 
- keyStore stringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- keyStore stringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- keyStore 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
DomainsOauth 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
 
- resourceType 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
 
- 
DomainsOauth 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
 
- tenancyOcid string
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 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[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 str
- The basic endpoint for the identity domain
- idcs_last_ Sequence[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_ 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[DomainsOauth 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[DomainsOauth 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.
- certEnd StringDate 
- (Updatable) Certificate end date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certStart StringDate 
- (Updatable) Certificate start date - SCIM++ Properties: - type: dateTime
- multiValued: false
- required: false
- caseExact: true
- mutability: readWrite
- returned: default
- uniqueness: none
 
- certificateAlias String
- Certificate alias - SCIM++ Properties: - type: string
- multiValued: false
- required: true
- caseExact: false
- mutability: readWrite
- returned: always
- uniqueness: none
- idcsSearchable: true
 
- compartmentOcid String
- (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- deleteIn 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
 
- domainOcid String
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- externalId String
- 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
 
- idcsCreated 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
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast 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
 
- idcsLast 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
 
- idcsPrevented 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
 
- keyStore StringId 
- Key store ID - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: true
- returned: never
- uniqueness: none
- idcsSearchable: true
 
- keyStore StringName 
- Key store name - SCIM++ Properties: - type: string
- multiValued: false
- required: false
- caseExact: false
- returned: always
- uniqueness: none
 
- keyStore 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
 
- resourceType 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
 
- tenancyOcid String
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 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
 
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - 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
 
- ResourceType 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
 
- LastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - 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
 
- ResourceType 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
 
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - 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
 
- resourceType 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
 
- lastModified string
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - 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
 
- resourceType 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
 
- lastModified String
- The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime. - 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
 
- resourceType 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 ociTerraform Provider.