oci logo
Oracle Cloud Infrastructure v0.12.0, Mar 17 23

oci.CertificatesManagement.Certificate

This resource provides the Certificate resource in Oracle Cloud Infrastructure Certificates Management service.

Creates a new certificate according to the details of the request.

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CertificatesManagement.Certificate;
import com.pulumi.oci.CertificatesManagement.CertificateArgs;
import com.pulumi.oci.CertificatesManagement.inputs.CertificateCertificateConfigArgs;
import com.pulumi.oci.CertificatesManagement.inputs.CertificateCertificateConfigSubjectArgs;
import com.pulumi.oci.CertificatesManagement.inputs.CertificateCertificateConfigValidityArgs;
import com.pulumi.oci.CertificatesManagement.inputs.CertificateCertificateRuleArgs;
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 testCertificate = new Certificate("testCertificate", CertificateArgs.builder()        
            .certificateConfig(CertificateCertificateConfigArgs.builder()
                .configType(var_.certificate_certificate_config_config_type())
                .certChainPem(var_.certificate_certificate_config_cert_chain_pem())
                .certificatePem(var_.certificate_certificate_config_certificate_pem())
                .certificateProfileType(var_.certificate_certificate_config_certificate_profile_type())
                .csrPem(var_.certificate_certificate_config_csr_pem())
                .issuerCertificateAuthorityId(oci_certificates_management_certificate_authority.test_certificate_authority().id())
                .keyAlgorithm(var_.certificate_certificate_config_key_algorithm())
                .privateKeyPem(var_.certificate_certificate_config_private_key_pem())
                .privateKeyPemPassphrase(var_.certificate_certificate_config_private_key_pem_passphrase())
                .signatureAlgorithm(var_.certificate_certificate_config_signature_algorithm())
                .subject(CertificateCertificateConfigSubjectArgs.builder()
                    .commonName(var_.certificate_certificate_config_subject_common_name())
                    .country(var_.certificate_certificate_config_subject_country())
                    .distinguishedNameQualifier(var_.certificate_certificate_config_subject_distinguished_name_qualifier())
                    .domainComponent(var_.certificate_certificate_config_subject_domain_component())
                    .generationQualifier(var_.certificate_certificate_config_subject_generation_qualifier())
                    .givenName(var_.certificate_certificate_config_subject_given_name())
                    .initials(var_.certificate_certificate_config_subject_initials())
                    .localityName(var_.certificate_certificate_config_subject_locality_name())
                    .organization(var_.certificate_certificate_config_subject_organization())
                    .organizationalUnit(var_.certificate_certificate_config_subject_organizational_unit())
                    .pseudonym(var_.certificate_certificate_config_subject_pseudonym())
                    .serialNumber(var_.certificate_certificate_config_subject_serial_number())
                    .stateOrProvinceName(var_.certificate_certificate_config_subject_state_or_province_name())
                    .street(var_.certificate_certificate_config_subject_street())
                    .surname(var_.certificate_certificate_config_subject_surname())
                    .title(var_.certificate_certificate_config_subject_title())
                    .userId(oci_identity_user.test_user().id())
                    .build())
                .subjectAlternativeNames(CertificateCertificateConfigSubjectAlternativeNameArgs.builder()
                    .type(var_.certificate_certificate_config_subject_alternative_names_type())
                    .value(var_.certificate_certificate_config_subject_alternative_names_value())
                    .build())
                .validity(CertificateCertificateConfigValidityArgs.builder()
                    .timeOfValidityNotAfter(var_.certificate_certificate_config_validity_time_of_validity_not_after())
                    .timeOfValidityNotBefore(var_.certificate_certificate_config_validity_time_of_validity_not_before())
                    .build())
                .versionName(var_.certificate_certificate_config_version_name())
                .build())
            .compartmentId(var_.compartment_id())
            .certificateRules(CertificateCertificateRuleArgs.builder()
                .advanceRenewalPeriod(var_.certificate_certificate_rules_advance_renewal_period())
                .renewalInterval(var_.certificate_certificate_rules_renewal_interval())
                .ruleType(var_.certificate_certificate_rules_rule_type())
                .build())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(var_.certificate_description())
            .freeformTags(Map.of("Department", "Finance"))
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  testCertificate:
    type: oci:CertificatesManagement:Certificate
    properties:
      certificateConfig:
        configType: ${var.certificate_certificate_config_config_type}
        certChainPem: ${var.certificate_certificate_config_cert_chain_pem}
        certificatePem: ${var.certificate_certificate_config_certificate_pem}
        certificateProfileType: ${var.certificate_certificate_config_certificate_profile_type}
        csrPem: ${var.certificate_certificate_config_csr_pem}
        issuerCertificateAuthorityId: ${oci_certificates_management_certificate_authority.test_certificate_authority.id}
        keyAlgorithm: ${var.certificate_certificate_config_key_algorithm}
        privateKeyPem: ${var.certificate_certificate_config_private_key_pem}
        privateKeyPemPassphrase: ${var.certificate_certificate_config_private_key_pem_passphrase}
        signatureAlgorithm: ${var.certificate_certificate_config_signature_algorithm}
        subject:
          commonName: ${var.certificate_certificate_config_subject_common_name}
          country: ${var.certificate_certificate_config_subject_country}
          distinguishedNameQualifier: ${var.certificate_certificate_config_subject_distinguished_name_qualifier}
          domainComponent: ${var.certificate_certificate_config_subject_domain_component}
          generationQualifier: ${var.certificate_certificate_config_subject_generation_qualifier}
          givenName: ${var.certificate_certificate_config_subject_given_name}
          initials: ${var.certificate_certificate_config_subject_initials}
          localityName: ${var.certificate_certificate_config_subject_locality_name}
          organization: ${var.certificate_certificate_config_subject_organization}
          organizationalUnit: ${var.certificate_certificate_config_subject_organizational_unit}
          pseudonym: ${var.certificate_certificate_config_subject_pseudonym}
          serialNumber: ${var.certificate_certificate_config_subject_serial_number}
          stateOrProvinceName: ${var.certificate_certificate_config_subject_state_or_province_name}
          street: ${var.certificate_certificate_config_subject_street}
          surname: ${var.certificate_certificate_config_subject_surname}
          title: ${var.certificate_certificate_config_subject_title}
          userId: ${oci_identity_user.test_user.id}
        subjectAlternativeNames:
          - type: ${var.certificate_certificate_config_subject_alternative_names_type}
            value: ${var.certificate_certificate_config_subject_alternative_names_value}
        validity:
          timeOfValidityNotAfter: ${var.certificate_certificate_config_validity_time_of_validity_not_after}
          timeOfValidityNotBefore: ${var.certificate_certificate_config_validity_time_of_validity_not_before}
        versionName: ${var.certificate_certificate_config_version_name}
      compartmentId: ${var.compartment_id}
      #Optional
      certificateRules:
        - advanceRenewalPeriod: ${var.certificate_certificate_rules_advance_renewal_period}
          renewalInterval: ${var.certificate_certificate_rules_renewal_interval}
          ruleType: ${var.certificate_certificate_rules_rule_type}
      definedTags:
        Operations.CostCenter: '42'
      description: ${var.certificate_description}
      freeformTags:
        Department: Finance

Create Certificate Resource

new Certificate(name: string, args: CertificateArgs, opts?: CustomResourceOptions);
@overload
def Certificate(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                certificate_config: Optional[_certificatesmanagement.CertificateCertificateConfigArgs] = None,
                certificate_rules: Optional[Sequence[_certificatesmanagement.CertificateCertificateRuleArgs]] = None,
                compartment_id: Optional[str] = None,
                defined_tags: Optional[Mapping[str, Any]] = None,
                description: Optional[str] = None,
                freeform_tags: Optional[Mapping[str, Any]] = None,
                name: Optional[str] = None)
@overload
def Certificate(resource_name: str,
                args: CertificateArgs,
                opts: Optional[ResourceOptions] = None)
func NewCertificate(ctx *Context, name string, args CertificateArgs, opts ...ResourceOption) (*Certificate, error)
public Certificate(string name, CertificateArgs args, CustomResourceOptions? opts = null)
public Certificate(String name, CertificateArgs args)
public Certificate(String name, CertificateArgs args, CustomResourceOptions options)
type: oci:CertificatesManagement:Certificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args CertificateArgs
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 CertificateArgs
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 CertificateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args CertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args CertificateArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Certificate Resource Properties

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

Inputs

The Certificate resource accepts the following input properties:

CertificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

CompartmentId string

(Updatable) The OCID of the compartment where you want to create the certificate.

CertificateRules List<CertificateCertificateRuleArgs>

(Updatable) An optional list of rules that control how the certificate is used and managed.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

Description string

(Updatable) A brief description of the certificate. Avoid entering confidential information.

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Name string

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

CertificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

CompartmentId string

(Updatable) The OCID of the compartment where you want to create the certificate.

CertificateRules []CertificateCertificateRuleArgs

(Updatable) An optional list of rules that control how the certificate is used and managed.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

Description string

(Updatable) A brief description of the certificate. Avoid entering confidential information.

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Name string

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

certificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

compartmentId String

(Updatable) The OCID of the compartment where you want to create the certificate.

certificateRules List<CertificateCertificateRuleArgs>

(Updatable) An optional list of rules that control how the certificate is used and managed.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description String

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

name String

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

certificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

compartmentId string

(Updatable) The OCID of the compartment where you want to create the certificate.

certificateRules CertificateCertificateRuleArgs[]

(Updatable) An optional list of rules that control how the certificate is used and managed.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description string

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

name string

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

certificate_config CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

compartment_id str

(Updatable) The OCID of the compartment where you want to create the certificate.

certificate_rules CertificateCertificateRuleArgs]

(Updatable) An optional list of rules that control how the certificate is used and managed.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description str

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

name str

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

certificateConfig Property Map

(Updatable) The details of the contents of the certificate and certificate metadata.

compartmentId String

(Updatable) The OCID of the compartment where you want to create the certificate.

certificateRules List<Property Map>

(Updatable) An optional list of rules that control how the certificate is used and managed.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description String

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

name String

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

Outputs

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

CertificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

CertificateRevocationListDetails List<CertificateCertificateRevocationListDetail>

The details of the certificate revocation list (CRL).

ConfigType string

(Updatable) The origin of the certificate.

CurrentVersions List<CertificateCurrentVersion>

The details of the certificate version. This object does not contain the certificate contents.

Id string

The provider-assigned unique ID for this managed resource.

IssuerCertificateAuthorityId string

The OCID of the private CA.

KeyAlgorithm string

The algorithm to use to create key pairs.

LifecycleDetails string

Additional information about the current lifecycle state of the certificate.

SignatureAlgorithm string

The algorithm to use to sign the public key certificate.

State string

The current lifecycle state of the certificate.

Subjects List<CertificateSubject>

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

TimeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

CertificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

CertificateRevocationListDetails []CertificateCertificateRevocationListDetail

The details of the certificate revocation list (CRL).

ConfigType string

(Updatable) The origin of the certificate.

CurrentVersions []CertificateCurrentVersion

The details of the certificate version. This object does not contain the certificate contents.

Id string

The provider-assigned unique ID for this managed resource.

IssuerCertificateAuthorityId string

The OCID of the private CA.

KeyAlgorithm string

The algorithm to use to create key pairs.

LifecycleDetails string

Additional information about the current lifecycle state of the certificate.

SignatureAlgorithm string

The algorithm to use to sign the public key certificate.

State string

The current lifecycle state of the certificate.

Subjects []CertificateSubject

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

TimeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificateProfileType String

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificateRevocationListDetails List<CertificateCertificateRevocationListDetail>

The details of the certificate revocation list (CRL).

configType String

(Updatable) The origin of the certificate.

currentVersions List<CertificateCurrentVersion>

The details of the certificate version. This object does not contain the certificate contents.

id String

The provider-assigned unique ID for this managed resource.

issuerCertificateAuthorityId String

The OCID of the private CA.

keyAlgorithm String

The algorithm to use to create key pairs.

lifecycleDetails String

Additional information about the current lifecycle state of the certificate.

signatureAlgorithm String

The algorithm to use to sign the public key certificate.

state String

The current lifecycle state of the certificate.

subjects List<CertificateSubject>

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

timeCreated String

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion String

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificateRevocationListDetails CertificateCertificateRevocationListDetail[]

The details of the certificate revocation list (CRL).

configType string

(Updatable) The origin of the certificate.

currentVersions CertificateCurrentVersion[]

The details of the certificate version. This object does not contain the certificate contents.

id string

The provider-assigned unique ID for this managed resource.

issuerCertificateAuthorityId string

The OCID of the private CA.

keyAlgorithm string

The algorithm to use to create key pairs.

lifecycleDetails string

Additional information about the current lifecycle state of the certificate.

signatureAlgorithm string

The algorithm to use to sign the public key certificate.

state string

The current lifecycle state of the certificate.

subjects CertificateSubject[]

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

timeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificate_profile_type str

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificate_revocation_list_details CertificateCertificateRevocationListDetail]

The details of the certificate revocation list (CRL).

config_type str

(Updatable) The origin of the certificate.

current_versions CertificateCurrentVersion]

The details of the certificate version. This object does not contain the certificate contents.

id str

The provider-assigned unique ID for this managed resource.

issuer_certificate_authority_id str

The OCID of the private CA.

key_algorithm str

The algorithm to use to create key pairs.

lifecycle_details str

Additional information about the current lifecycle state of the certificate.

signature_algorithm str

The algorithm to use to sign the public key certificate.

state str

The current lifecycle state of the certificate.

subjects CertificateSubject]

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

time_created str

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_deletion str

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificateProfileType String

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificateRevocationListDetails List<Property Map>

The details of the certificate revocation list (CRL).

configType String

(Updatable) The origin of the certificate.

currentVersions List<Property Map>

The details of the certificate version. This object does not contain the certificate contents.

id String

The provider-assigned unique ID for this managed resource.

issuerCertificateAuthorityId String

The OCID of the private CA.

keyAlgorithm String

The algorithm to use to create key pairs.

lifecycleDetails String

Additional information about the current lifecycle state of the certificate.

signatureAlgorithm String

The algorithm to use to sign the public key certificate.

state String

The current lifecycle state of the certificate.

subjects List<Property Map>

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

timeCreated String

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion String

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Look up Existing Certificate Resource

Get an existing Certificate 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?: CertificateState, opts?: CustomResourceOptions): Certificate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        certificate_config: Optional[_certificatesmanagement.CertificateCertificateConfigArgs] = None,
        certificate_profile_type: Optional[str] = None,
        certificate_revocation_list_details: Optional[Sequence[_certificatesmanagement.CertificateCertificateRevocationListDetailArgs]] = None,
        certificate_rules: Optional[Sequence[_certificatesmanagement.CertificateCertificateRuleArgs]] = None,
        compartment_id: Optional[str] = None,
        config_type: Optional[str] = None,
        current_versions: Optional[Sequence[_certificatesmanagement.CertificateCurrentVersionArgs]] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        description: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        issuer_certificate_authority_id: Optional[str] = None,
        key_algorithm: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        name: Optional[str] = None,
        signature_algorithm: Optional[str] = None,
        state: Optional[str] = None,
        subjects: Optional[Sequence[_certificatesmanagement.CertificateSubjectArgs]] = None,
        time_created: Optional[str] = None,
        time_of_deletion: Optional[str] = None) -> Certificate
func GetCertificate(ctx *Context, name string, id IDInput, state *CertificateState, opts ...ResourceOption) (*Certificate, error)
public static Certificate Get(string name, Input<string> id, CertificateState? state, CustomResourceOptions? opts = null)
public static Certificate get(String name, Output<String> id, CertificateState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CertificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

CertificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

CertificateRevocationListDetails List<CertificateCertificateRevocationListDetailArgs>

The details of the certificate revocation list (CRL).

CertificateRules List<CertificateCertificateRuleArgs>

(Updatable) An optional list of rules that control how the certificate is used and managed.

CompartmentId string

(Updatable) The OCID of the compartment where you want to create the certificate.

ConfigType string

(Updatable) The origin of the certificate.

CurrentVersions List<CertificateCurrentVersionArgs>

The details of the certificate version. This object does not contain the certificate contents.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

Description string

(Updatable) A brief description of the certificate. Avoid entering confidential information.

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IssuerCertificateAuthorityId string

The OCID of the private CA.

KeyAlgorithm string

The algorithm to use to create key pairs.

LifecycleDetails string

Additional information about the current lifecycle state of the certificate.

Name string

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

SignatureAlgorithm string

The algorithm to use to sign the public key certificate.

State string

The current lifecycle state of the certificate.

Subjects List<CertificateSubjectArgs>

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

TimeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

CertificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

CertificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

CertificateRevocationListDetails []CertificateCertificateRevocationListDetailArgs

The details of the certificate revocation list (CRL).

CertificateRules []CertificateCertificateRuleArgs

(Updatable) An optional list of rules that control how the certificate is used and managed.

CompartmentId string

(Updatable) The OCID of the compartment where you want to create the certificate.

ConfigType string

(Updatable) The origin of the certificate.

CurrentVersions []CertificateCurrentVersionArgs

The details of the certificate version. This object does not contain the certificate contents.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

Description string

(Updatable) A brief description of the certificate. Avoid entering confidential information.

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IssuerCertificateAuthorityId string

The OCID of the private CA.

KeyAlgorithm string

The algorithm to use to create key pairs.

LifecycleDetails string

Additional information about the current lifecycle state of the certificate.

Name string

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

SignatureAlgorithm string

The algorithm to use to sign the public key certificate.

State string

The current lifecycle state of the certificate.

Subjects []CertificateSubjectArgs

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

TimeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

certificateProfileType String

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificateRevocationListDetails List<CertificateCertificateRevocationListDetailArgs>

The details of the certificate revocation list (CRL).

certificateRules List<CertificateCertificateRuleArgs>

(Updatable) An optional list of rules that control how the certificate is used and managed.

compartmentId String

(Updatable) The OCID of the compartment where you want to create the certificate.

configType String

(Updatable) The origin of the certificate.

currentVersions List<CertificateCurrentVersionArgs>

The details of the certificate version. This object does not contain the certificate contents.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description String

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

issuerCertificateAuthorityId String

The OCID of the private CA.

keyAlgorithm String

The algorithm to use to create key pairs.

lifecycleDetails String

Additional information about the current lifecycle state of the certificate.

name String

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

signatureAlgorithm String

The algorithm to use to sign the public key certificate.

state String

The current lifecycle state of the certificate.

subjects List<CertificateSubjectArgs>

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

timeCreated String

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion String

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificateConfig CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

certificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificateRevocationListDetails CertificateCertificateRevocationListDetailArgs[]

The details of the certificate revocation list (CRL).

certificateRules CertificateCertificateRuleArgs[]

(Updatable) An optional list of rules that control how the certificate is used and managed.

compartmentId string

(Updatable) The OCID of the compartment where you want to create the certificate.

configType string

(Updatable) The origin of the certificate.

currentVersions CertificateCurrentVersionArgs[]

The details of the certificate version. This object does not contain the certificate contents.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description string

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

issuerCertificateAuthorityId string

The OCID of the private CA.

keyAlgorithm string

The algorithm to use to create key pairs.

lifecycleDetails string

Additional information about the current lifecycle state of the certificate.

name string

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

signatureAlgorithm string

The algorithm to use to sign the public key certificate.

state string

The current lifecycle state of the certificate.

subjects CertificateSubjectArgs[]

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

timeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificate_config CertificateCertificateConfigArgs

(Updatable) The details of the contents of the certificate and certificate metadata.

certificate_profile_type str

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificate_revocation_list_details CertificateCertificateRevocationListDetailArgs]

The details of the certificate revocation list (CRL).

certificate_rules CertificateCertificateRuleArgs]

(Updatable) An optional list of rules that control how the certificate is used and managed.

compartment_id str

(Updatable) The OCID of the compartment where you want to create the certificate.

config_type str

(Updatable) The origin of the certificate.

current_versions CertificateCurrentVersionArgs]

The details of the certificate version. This object does not contain the certificate contents.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description str

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

issuer_certificate_authority_id str

The OCID of the private CA.

key_algorithm str

The algorithm to use to create key pairs.

lifecycle_details str

Additional information about the current lifecycle state of the certificate.

name str

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

signature_algorithm str

The algorithm to use to sign the public key certificate.

state str

The current lifecycle state of the certificate.

subjects CertificateSubjectArgs]

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

time_created str

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_deletion str

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

certificateConfig Property Map

(Updatable) The details of the contents of the certificate and certificate metadata.

certificateProfileType String

The name of the profile used to create the certificate, which depends on the type of certificate you need.

certificateRevocationListDetails List<Property Map>

The details of the certificate revocation list (CRL).

certificateRules List<Property Map>

(Updatable) An optional list of rules that control how the certificate is used and managed.

compartmentId String

(Updatable) The OCID of the compartment where you want to create the certificate.

configType String

(Updatable) The origin of the certificate.

currentVersions List<Property Map>

The details of the certificate version. This object does not contain the certificate contents.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

description String

(Updatable) A brief description of the certificate. Avoid entering confidential information.

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

issuerCertificateAuthorityId String

The OCID of the private CA.

keyAlgorithm String

The algorithm to use to create key pairs.

lifecycleDetails String

Additional information about the current lifecycle state of the certificate.

name String

A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

signatureAlgorithm String

The algorithm to use to sign the public key certificate.

state String

The current lifecycle state of the certificate.

subjects List<Property Map>

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

timeCreated String

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion String

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Supporting Types

CertificateCertificateConfig

ConfigType string

(Updatable) The origin of the certificate.

CertificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

CsrPem string

(Updatable) The certificate signing request (in PEM format).

IssuerCertificateAuthorityId string

The OCID of the private CA.

KeyAlgorithm string

The algorithm to use to create key pairs.

SignatureAlgorithm string

The algorithm to use to sign the public key certificate.

Subject CertificateCertificateConfigSubject

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

SubjectAlternativeNames List<CertificateCertificateConfigSubjectAlternativeName>

A list of subject alternative names.

Validity CertificateCertificateConfigValidity

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

VersionName string

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

ConfigType string

(Updatable) The origin of the certificate.

CertificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

CsrPem string

(Updatable) The certificate signing request (in PEM format).

IssuerCertificateAuthorityId string

The OCID of the private CA.

KeyAlgorithm string

The algorithm to use to create key pairs.

SignatureAlgorithm string

The algorithm to use to sign the public key certificate.

Subject CertificateCertificateConfigSubject

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

SubjectAlternativeNames []CertificateCertificateConfigSubjectAlternativeName

A list of subject alternative names.

Validity CertificateCertificateConfigValidity

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

VersionName string

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

configType String

(Updatable) The origin of the certificate.

certificateProfileType String

The name of the profile used to create the certificate, which depends on the type of certificate you need.

csrPem String

(Updatable) The certificate signing request (in PEM format).

issuerCertificateAuthorityId String

The OCID of the private CA.

keyAlgorithm String

The algorithm to use to create key pairs.

signatureAlgorithm String

The algorithm to use to sign the public key certificate.

subject CertificateCertificateConfigSubject

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

subjectAlternativeNames List<CertificateCertificateConfigSubjectAlternativeName>

A list of subject alternative names.

validity CertificateCertificateConfigValidity

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

versionName String

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

configType string

(Updatable) The origin of the certificate.

certificateProfileType string

The name of the profile used to create the certificate, which depends on the type of certificate you need.

csrPem string

(Updatable) The certificate signing request (in PEM format).

issuerCertificateAuthorityId string

The OCID of the private CA.

keyAlgorithm string

The algorithm to use to create key pairs.

signatureAlgorithm string

The algorithm to use to sign the public key certificate.

subject CertificateCertificateConfigSubject

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

subjectAlternativeNames CertificateCertificateConfigSubjectAlternativeName[]

A list of subject alternative names.

validity CertificateCertificateConfigValidity

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

versionName string

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

config_type str

(Updatable) The origin of the certificate.

certificate_profile_type str

The name of the profile used to create the certificate, which depends on the type of certificate you need.

csr_pem str

(Updatable) The certificate signing request (in PEM format).

issuer_certificate_authority_id str

The OCID of the private CA.

key_algorithm str

The algorithm to use to create key pairs.

signature_algorithm str

The algorithm to use to sign the public key certificate.

subject CertificateCertificateConfigSubject

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

subject_alternative_names CertificateCertificateConfigSubjectAlternativeName]

A list of subject alternative names.

validity CertificateCertificateConfigValidity

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

version_name str

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

configType String

(Updatable) The origin of the certificate.

certificateProfileType String

The name of the profile used to create the certificate, which depends on the type of certificate you need.

csrPem String

(Updatable) The certificate signing request (in PEM format).

issuerCertificateAuthorityId String

The OCID of the private CA.

keyAlgorithm String

The algorithm to use to create key pairs.

signatureAlgorithm String

The algorithm to use to sign the public key certificate.

subject Property Map

The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.

subjectAlternativeNames List<Property Map>

A list of subject alternative names.

validity Property Map

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

versionName String

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

CertificateCertificateConfigSubject

CommonName string

Common name or fully-qualified domain name (RDN CN).

Country string

Country name (RDN C).

DistinguishedNameQualifier string

Distinguished name qualifier(RDN DNQ).

DomainComponent string

Domain component (RDN DC).

GenerationQualifier string

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

GivenName string

Personal given name (RDN G or GN).

Initials string

Personal initials.

LocalityName string

Locality (RDN L).

Organization string

Organization (RDN O).

OrganizationalUnit string

Organizational unit (RDN OU).

Pseudonym string

Subject pseudonym.

SerialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

StateOrProvinceName string

State or province name (RDN ST or S).

Street string

Street address (RDN STREET).

Surname string

Personal surname (RDN SN).

Title string

Title (RDN T or TITLE).

UserId string

User ID (RDN UID).

CommonName string

Common name or fully-qualified domain name (RDN CN).

Country string

Country name (RDN C).

DistinguishedNameQualifier string

Distinguished name qualifier(RDN DNQ).

DomainComponent string

Domain component (RDN DC).

GenerationQualifier string

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

GivenName string

Personal given name (RDN G or GN).

Initials string

Personal initials.

LocalityName string

Locality (RDN L).

Organization string

Organization (RDN O).

OrganizationalUnit string

Organizational unit (RDN OU).

Pseudonym string

Subject pseudonym.

SerialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

StateOrProvinceName string

State or province name (RDN ST or S).

Street string

Street address (RDN STREET).

Surname string

Personal surname (RDN SN).

Title string

Title (RDN T or TITLE).

UserId string

User ID (RDN UID).

commonName String

Common name or fully-qualified domain name (RDN CN).

country String

Country name (RDN C).

distinguishedNameQualifier String

Distinguished name qualifier(RDN DNQ).

domainComponent String

Domain component (RDN DC).

generationQualifier String

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

givenName String

Personal given name (RDN G or GN).

initials String

Personal initials.

localityName String

Locality (RDN L).

organization String

Organization (RDN O).

organizationalUnit String

Organizational unit (RDN OU).

pseudonym String

Subject pseudonym.

serialNumber String

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stateOrProvinceName String

State or province name (RDN ST or S).

street String

Street address (RDN STREET).

surname String

Personal surname (RDN SN).

title String

Title (RDN T or TITLE).

userId String

User ID (RDN UID).

commonName string

Common name or fully-qualified domain name (RDN CN).

country string

Country name (RDN C).

distinguishedNameQualifier string

Distinguished name qualifier(RDN DNQ).

domainComponent string

Domain component (RDN DC).

generationQualifier string

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

givenName string

Personal given name (RDN G or GN).

initials string

Personal initials.

localityName string

Locality (RDN L).

organization string

Organization (RDN O).

organizationalUnit string

Organizational unit (RDN OU).

pseudonym string

Subject pseudonym.

serialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stateOrProvinceName string

State or province name (RDN ST or S).

street string

Street address (RDN STREET).

surname string

Personal surname (RDN SN).

title string

Title (RDN T or TITLE).

userId string

User ID (RDN UID).

common_name str

Common name or fully-qualified domain name (RDN CN).

country str

Country name (RDN C).

distinguished_name_qualifier str

Distinguished name qualifier(RDN DNQ).

domain_component str

Domain component (RDN DC).

generation_qualifier str

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

given_name str

Personal given name (RDN G or GN).

initials str

Personal initials.

locality_name str

Locality (RDN L).

organization str

Organization (RDN O).

organizational_unit str

Organizational unit (RDN OU).

pseudonym str

Subject pseudonym.

serial_number str

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

state_or_province_name str

State or province name (RDN ST or S).

street str

Street address (RDN STREET).

surname str

Personal surname (RDN SN).

title str

Title (RDN T or TITLE).

user_id str

User ID (RDN UID).

commonName String

Common name or fully-qualified domain name (RDN CN).

country String

Country name (RDN C).

distinguishedNameQualifier String

Distinguished name qualifier(RDN DNQ).

domainComponent String

Domain component (RDN DC).

generationQualifier String

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

givenName String

Personal given name (RDN G or GN).

initials String

Personal initials.

localityName String

Locality (RDN L).

organization String

Organization (RDN O).

organizationalUnit String

Organizational unit (RDN OU).

pseudonym String

Subject pseudonym.

serialNumber String

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stateOrProvinceName String

State or province name (RDN ST or S).

street String

Street address (RDN STREET).

surname String

Personal surname (RDN SN).

title String

Title (RDN T or TITLE).

userId String

User ID (RDN UID).

CertificateCertificateConfigSubjectAlternativeName

Type string

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

Value string

The subject alternative name.

Type string

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

Value string

The subject alternative name.

type String

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value String

The subject alternative name.

type string

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value string

The subject alternative name.

type str

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value str

The subject alternative name.

type String

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value String

The subject alternative name.

CertificateCertificateConfigValidity

TimeOfValidityNotAfter string

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfValidityNotBefore string

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfValidityNotAfter string

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfValidityNotBefore string

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotAfter String

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotBefore String

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotAfter string

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotBefore string

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_validity_not_after str

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_validity_not_before str

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotAfter String

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotBefore String

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

CertificateCertificateRevocationListDetail

CustomFormattedUrls List<string>

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

ObjectStorageConfigs List<CertificateCertificateRevocationListDetailObjectStorageConfig>

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

CustomFormattedUrls []string

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

ObjectStorageConfigs []CertificateCertificateRevocationListDetailObjectStorageConfig

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

customFormattedUrls List<String>

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

objectStorageConfigs List<CertificateCertificateRevocationListDetailObjectStorageConfig>

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

customFormattedUrls string[]

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

objectStorageConfigs CertificateCertificateRevocationListDetailObjectStorageConfig[]

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

custom_formatted_urls Sequence[str]

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

object_storage_configs CertificateCertificateRevocationListDetailObjectStorageConfig]

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

customFormattedUrls List<String>

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

objectStorageConfigs List<Property Map>

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

CertificateCertificateRevocationListDetailObjectStorageConfig

ObjectStorageBucketName string

The name of the bucket where the CRL is stored.

ObjectStorageNamespace string

The tenancy of the bucket where the CRL is stored.

ObjectStorageObjectNameFormat string

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

ObjectStorageBucketName string

The name of the bucket where the CRL is stored.

ObjectStorageNamespace string

The tenancy of the bucket where the CRL is stored.

ObjectStorageObjectNameFormat string

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

objectStorageBucketName String

The name of the bucket where the CRL is stored.

objectStorageNamespace String

The tenancy of the bucket where the CRL is stored.

objectStorageObjectNameFormat String

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

objectStorageBucketName string

The name of the bucket where the CRL is stored.

objectStorageNamespace string

The tenancy of the bucket where the CRL is stored.

objectStorageObjectNameFormat string

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

object_storage_bucket_name str

The name of the bucket where the CRL is stored.

object_storage_namespace str

The tenancy of the bucket where the CRL is stored.

object_storage_object_name_format str

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

objectStorageBucketName String

The name of the bucket where the CRL is stored.

objectStorageNamespace String

The tenancy of the bucket where the CRL is stored.

objectStorageObjectNameFormat String

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

CertificateCertificateRule

AdvanceRenewalPeriod string

(Updatable) A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

RenewalInterval string

(Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

RuleType string

(Updatable) The type of rule.

AdvanceRenewalPeriod string

(Updatable) A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

RenewalInterval string

(Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

RuleType string

(Updatable) The type of rule.

advanceRenewalPeriod String

(Updatable) A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

renewalInterval String

(Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

ruleType String

(Updatable) The type of rule.

advanceRenewalPeriod string

(Updatable) A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

renewalInterval string

(Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

ruleType string

(Updatable) The type of rule.

advance_renewal_period str

(Updatable) A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

renewal_interval str

(Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

rule_type str

(Updatable) The type of rule.

advanceRenewalPeriod String

(Updatable) A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

renewalInterval String

(Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

ruleType String

(Updatable) The type of rule.

CertificateCurrentVersion

CertificateId string

The OCID of the certificate.

IssuerCaVersionNumber string

The version number of the issuing certificate authority (CA).

RevocationStatuses List<CertificateCurrentVersionRevocationStatus>

The current revocation status of the entity.

SerialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

Stages List<string>

A list of rotation states for this certificate version.

SubjectAlternativeNames List<CertificateCurrentVersionSubjectAlternativeName>

A list of subject alternative names.

TimeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Validities List<CertificateCurrentVersionValidity>

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

VersionName string

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

VersionNumber string

The version number of the certificate.

CertificateId string

The OCID of the certificate.

IssuerCaVersionNumber string

The version number of the issuing certificate authority (CA).

RevocationStatuses []CertificateCurrentVersionRevocationStatus

The current revocation status of the entity.

SerialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

Stages []string

A list of rotation states for this certificate version.

SubjectAlternativeNames []CertificateCurrentVersionSubjectAlternativeName

A list of subject alternative names.

TimeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Validities []CertificateCurrentVersionValidity

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

VersionName string

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

VersionNumber string

The version number of the certificate.

certificateId String

The OCID of the certificate.

issuerCaVersionNumber String

The version number of the issuing certificate authority (CA).

revocationStatuses List<CertificateCurrentVersionRevocationStatus>

The current revocation status of the entity.

serialNumber String

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stages List<String>

A list of rotation states for this certificate version.

subjectAlternativeNames List<CertificateCurrentVersionSubjectAlternativeName>

A list of subject alternative names.

timeCreated String

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion String

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

validities List<CertificateCurrentVersionValidity>

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

versionName String

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

versionNumber String

The version number of the certificate.

certificateId string

The OCID of the certificate.

issuerCaVersionNumber string

The version number of the issuing certificate authority (CA).

revocationStatuses CertificateCurrentVersionRevocationStatus[]

The current revocation status of the entity.

serialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stages string[]

A list of rotation states for this certificate version.

subjectAlternativeNames CertificateCurrentVersionSubjectAlternativeName[]

A list of subject alternative names.

timeCreated string

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion string

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

validities CertificateCurrentVersionValidity[]

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

versionName string

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

versionNumber string

The version number of the certificate.

certificate_id str

The OCID of the certificate.

issuer_ca_version_number str

The version number of the issuing certificate authority (CA).

revocation_statuses CertificateCurrentVersionRevocationStatus]

The current revocation status of the entity.

serial_number str

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stages Sequence[str]

A list of rotation states for this certificate version.

subject_alternative_names CertificateCurrentVersionSubjectAlternativeName]

A list of subject alternative names.

time_created str

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_deletion str

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

validities CertificateCurrentVersionValidity]

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

version_name str

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

version_number str

The version number of the certificate.

certificateId String

The OCID of the certificate.

issuerCaVersionNumber String

The version number of the issuing certificate authority (CA).

revocationStatuses List<Property Map>

The current revocation status of the entity.

serialNumber String

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stages List<String>

A list of rotation states for this certificate version.

subjectAlternativeNames List<Property Map>

A list of subject alternative names.

timeCreated String

A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfDeletion String

An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

validities List<Property Map>

(Updatable) An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

versionName String

(Updatable) A name for the certificate. When the value is not null, a name is unique across versions of a given certificate.

versionNumber String

The version number of the certificate.

CertificateCurrentVersionRevocationStatus

RevocationReason string

The reason the certificate or certificate authority (CA) was revoked.

TimeOfRevocation string

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

RevocationReason string

The reason the certificate or certificate authority (CA) was revoked.

TimeOfRevocation string

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

revocationReason String

The reason the certificate or certificate authority (CA) was revoked.

timeOfRevocation String

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

revocationReason string

The reason the certificate or certificate authority (CA) was revoked.

timeOfRevocation string

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

revocation_reason str

The reason the certificate or certificate authority (CA) was revoked.

time_of_revocation str

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

revocationReason String

The reason the certificate or certificate authority (CA) was revoked.

timeOfRevocation String

The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

CertificateCurrentVersionSubjectAlternativeName

Type string

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

Value string

The subject alternative name.

Type string

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

Value string

The subject alternative name.

type String

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value String

The subject alternative name.

type string

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value string

The subject alternative name.

type str

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value str

The subject alternative name.

type String

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

value String

The subject alternative name.

CertificateCurrentVersionValidity

TimeOfValidityNotAfter string

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfValidityNotBefore string

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfValidityNotAfter string

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfValidityNotBefore string

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotAfter String

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotBefore String

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotAfter string

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotBefore string

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_validity_not_after str

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

time_of_validity_not_before str

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotAfter String

(Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

timeOfValidityNotBefore String

(Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

CertificateSubject

CommonName string

Common name or fully-qualified domain name (RDN CN).

Country string

Country name (RDN C).

DistinguishedNameQualifier string

Distinguished name qualifier(RDN DNQ).

DomainComponent string

Domain component (RDN DC).

GenerationQualifier string

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

GivenName string

Personal given name (RDN G or GN).

Initials string

Personal initials.

LocalityName string

Locality (RDN L).

Organization string

Organization (RDN O).

OrganizationalUnit string

Organizational unit (RDN OU).

Pseudonym string

Subject pseudonym.

SerialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

StateOrProvinceName string

State or province name (RDN ST or S).

Street string

Street address (RDN STREET).

Surname string

Personal surname (RDN SN).

Title string

Title (RDN T or TITLE).

UserId string

User ID (RDN UID).

CommonName string

Common name or fully-qualified domain name (RDN CN).

Country string

Country name (RDN C).

DistinguishedNameQualifier string

Distinguished name qualifier(RDN DNQ).

DomainComponent string

Domain component (RDN DC).

GenerationQualifier string

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

GivenName string

Personal given name (RDN G or GN).

Initials string

Personal initials.

LocalityName string

Locality (RDN L).

Organization string

Organization (RDN O).

OrganizationalUnit string

Organizational unit (RDN OU).

Pseudonym string

Subject pseudonym.

SerialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

StateOrProvinceName string

State or province name (RDN ST or S).

Street string

Street address (RDN STREET).

Surname string

Personal surname (RDN SN).

Title string

Title (RDN T or TITLE).

UserId string

User ID (RDN UID).

commonName String

Common name or fully-qualified domain name (RDN CN).

country String

Country name (RDN C).

distinguishedNameQualifier String

Distinguished name qualifier(RDN DNQ).

domainComponent String

Domain component (RDN DC).

generationQualifier String

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

givenName String

Personal given name (RDN G or GN).

initials String

Personal initials.

localityName String

Locality (RDN L).

organization String

Organization (RDN O).

organizationalUnit String

Organizational unit (RDN OU).

pseudonym String

Subject pseudonym.

serialNumber String

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stateOrProvinceName String

State or province name (RDN ST or S).

street String

Street address (RDN STREET).

surname String

Personal surname (RDN SN).

title String

Title (RDN T or TITLE).

userId String

User ID (RDN UID).

commonName string

Common name or fully-qualified domain name (RDN CN).

country string

Country name (RDN C).

distinguishedNameQualifier string

Distinguished name qualifier(RDN DNQ).

domainComponent string

Domain component (RDN DC).

generationQualifier string

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

givenName string

Personal given name (RDN G or GN).

initials string

Personal initials.

localityName string

Locality (RDN L).

organization string

Organization (RDN O).

organizationalUnit string

Organizational unit (RDN OU).

pseudonym string

Subject pseudonym.

serialNumber string

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stateOrProvinceName string

State or province name (RDN ST or S).

street string

Street address (RDN STREET).

surname string

Personal surname (RDN SN).

title string

Title (RDN T or TITLE).

userId string

User ID (RDN UID).

common_name str

Common name or fully-qualified domain name (RDN CN).

country str

Country name (RDN C).

distinguished_name_qualifier str

Distinguished name qualifier(RDN DNQ).

domain_component str

Domain component (RDN DC).

generation_qualifier str

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

given_name str

Personal given name (RDN G or GN).

initials str

Personal initials.

locality_name str

Locality (RDN L).

organization str

Organization (RDN O).

organizational_unit str

Organizational unit (RDN OU).

pseudonym str

Subject pseudonym.

serial_number str

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

state_or_province_name str

State or province name (RDN ST or S).

street str

Street address (RDN STREET).

surname str

Personal surname (RDN SN).

title str

Title (RDN T or TITLE).

user_id str

User ID (RDN UID).

commonName String

Common name or fully-qualified domain name (RDN CN).

country String

Country name (RDN C).

distinguishedNameQualifier String

Distinguished name qualifier(RDN DNQ).

domainComponent String

Domain component (RDN DC).

generationQualifier String

Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).

givenName String

Personal given name (RDN G or GN).

initials String

Personal initials.

localityName String

Locality (RDN L).

organization String

Organization (RDN O).

organizationalUnit String

Organizational unit (RDN OU).

pseudonym String

Subject pseudonym.

serialNumber String

Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).

stateOrProvinceName String

State or province name (RDN ST or S).

street String

Street address (RDN STREET).

surname String

Personal surname (RDN SN).

title String

Title (RDN T or TITLE).

userId String

User ID (RDN UID).

Import

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

 $ pulumi import oci:CertificatesManagement/certificate:Certificate test_certificate "id"

Package Details

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

This Pulumi package is based on the oci Terraform Provider.