oci.CertificatesManagement.Certificate
Explore with Pulumi AI
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!
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(certificateCertificateConfigConfigType)
                .certChainPem(certificateCertificateConfigCertChainPem)
                .certificatePem(certificateCertificateConfigCertificatePem)
                .certificateProfileType(certificateCertificateConfigCertificateProfileType)
                .csrPem(certificateCertificateConfigCsrPem)
                .issuerCertificateAuthorityId(testCertificateAuthority.id())
                .keyAlgorithm(certificateCertificateConfigKeyAlgorithm)
                .privateKeyPem(certificateCertificateConfigPrivateKeyPem)
                .privateKeyPemPassphrase(certificateCertificateConfigPrivateKeyPemPassphrase)
                .signatureAlgorithm(certificateCertificateConfigSignatureAlgorithm)
                .subject(CertificateCertificateConfigSubjectArgs.builder()
                    .commonName(certificateCertificateConfigSubjectCommonName)
                    .country(certificateCertificateConfigSubjectCountry)
                    .distinguishedNameQualifier(certificateCertificateConfigSubjectDistinguishedNameQualifier)
                    .domainComponent(certificateCertificateConfigSubjectDomainComponent)
                    .generationQualifier(certificateCertificateConfigSubjectGenerationQualifier)
                    .givenName(certificateCertificateConfigSubjectGivenName)
                    .initials(certificateCertificateConfigSubjectInitials)
                    .localityName(certificateCertificateConfigSubjectLocalityName)
                    .organization(certificateCertificateConfigSubjectOrganization)
                    .organizationalUnit(certificateCertificateConfigSubjectOrganizationalUnit)
                    .pseudonym(certificateCertificateConfigSubjectPseudonym)
                    .serialNumber(certificateCertificateConfigSubjectSerialNumber)
                    .stateOrProvinceName(certificateCertificateConfigSubjectStateOrProvinceName)
                    .street(certificateCertificateConfigSubjectStreet)
                    .surname(certificateCertificateConfigSubjectSurname)
                    .title(certificateCertificateConfigSubjectTitle)
                    .userId(testUser.id())
                    .build())
                .subjectAlternativeNames(CertificateCertificateConfigSubjectAlternativeNameArgs.builder()
                    .type(certificateCertificateConfigSubjectAlternativeNamesType)
                    .value(certificateCertificateConfigSubjectAlternativeNamesValue)
                    .build())
                .validity(CertificateCertificateConfigValidityArgs.builder()
                    .timeOfValidityNotAfter(certificateCertificateConfigValidityTimeOfValidityNotAfter)
                    .timeOfValidityNotBefore(certificateCertificateConfigValidityTimeOfValidityNotBefore)
                    .build())
                .versionName(certificateCertificateConfigVersionName)
                .build())
            .compartmentId(compartmentId)
            .name(certificateName)
            .certificateRules(CertificateCertificateRuleArgs.builder()
                .advanceRenewalPeriod(certificateCertificateRulesAdvanceRenewalPeriod)
                .renewalInterval(certificateCertificateRulesRenewalInterval)
                .ruleType(certificateCertificateRulesRuleType)
                .build())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(certificateDescription)
            .freeformTags(Map.of("Department", "Finance"))
            .build());
    }
}
resources:
  testCertificate:
    type: oci:CertificatesManagement:Certificate
    name: test_certificate
    properties:
      certificateConfig:
        configType: ${certificateCertificateConfigConfigType}
        certChainPem: ${certificateCertificateConfigCertChainPem}
        certificatePem: ${certificateCertificateConfigCertificatePem}
        certificateProfileType: ${certificateCertificateConfigCertificateProfileType}
        csrPem: ${certificateCertificateConfigCsrPem}
        issuerCertificateAuthorityId: ${testCertificateAuthority.id}
        keyAlgorithm: ${certificateCertificateConfigKeyAlgorithm}
        privateKeyPem: ${certificateCertificateConfigPrivateKeyPem}
        privateKeyPemPassphrase: ${certificateCertificateConfigPrivateKeyPemPassphrase}
        signatureAlgorithm: ${certificateCertificateConfigSignatureAlgorithm}
        subject:
          commonName: ${certificateCertificateConfigSubjectCommonName}
          country: ${certificateCertificateConfigSubjectCountry}
          distinguishedNameQualifier: ${certificateCertificateConfigSubjectDistinguishedNameQualifier}
          domainComponent: ${certificateCertificateConfigSubjectDomainComponent}
          generationQualifier: ${certificateCertificateConfigSubjectGenerationQualifier}
          givenName: ${certificateCertificateConfigSubjectGivenName}
          initials: ${certificateCertificateConfigSubjectInitials}
          localityName: ${certificateCertificateConfigSubjectLocalityName}
          organization: ${certificateCertificateConfigSubjectOrganization}
          organizationalUnit: ${certificateCertificateConfigSubjectOrganizationalUnit}
          pseudonym: ${certificateCertificateConfigSubjectPseudonym}
          serialNumber: ${certificateCertificateConfigSubjectSerialNumber}
          stateOrProvinceName: ${certificateCertificateConfigSubjectStateOrProvinceName}
          street: ${certificateCertificateConfigSubjectStreet}
          surname: ${certificateCertificateConfigSubjectSurname}
          title: ${certificateCertificateConfigSubjectTitle}
          userId: ${testUser.id}
        subjectAlternativeNames:
          - type: ${certificateCertificateConfigSubjectAlternativeNamesType}
            value: ${certificateCertificateConfigSubjectAlternativeNamesValue}
        validity:
          timeOfValidityNotAfter: ${certificateCertificateConfigValidityTimeOfValidityNotAfter}
          timeOfValidityNotBefore: ${certificateCertificateConfigValidityTimeOfValidityNotBefore}
        versionName: ${certificateCertificateConfigVersionName}
      compartmentId: ${compartmentId}
      name: ${certificateName}
      certificateRules:
        - advanceRenewalPeriod: ${certificateCertificateRulesAdvanceRenewalPeriod}
          renewalInterval: ${certificateCertificateRulesRenewalInterval}
          ruleType: ${certificateCertificateRulesRuleType}
      definedTags:
        Operations.CostCenter: '42'
      description: ${certificateDescription}
      freeformTags:
        Department: Finance
Create Certificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Certificate(name: string, args: CertificateArgs, opts?: CustomResourceOptions);@overload
def Certificate(resource_name: str,
                args: CertificateArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def Certificate(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                certificate_config: Optional[_certificatesmanagement.CertificateCertificateConfigArgs] = None,
                compartment_id: Optional[str] = None,
                certificate_rules: Optional[Sequence[_certificatesmanagement.CertificateCertificateRuleArgs]] = None,
                defined_tags: Optional[Mapping[str, str]] = None,
                description: Optional[str] = None,
                freeform_tags: Optional[Mapping[str, str]] = None,
                name: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var ociCertificateResource = new Oci.CertificatesManagement.Certificate("ociCertificateResource", new()
{
    CertificateConfig = new Oci.CertificatesManagement.Inputs.CertificateCertificateConfigArgs
    {
        ConfigType = "string",
        CertificateProfileType = "string",
        CsrPem = "string",
        IssuerCertificateAuthorityId = "string",
        KeyAlgorithm = "string",
        SignatureAlgorithm = "string",
        Subject = new Oci.CertificatesManagement.Inputs.CertificateCertificateConfigSubjectArgs
        {
            CommonName = "string",
            Country = "string",
            DistinguishedNameQualifier = "string",
            DomainComponent = "string",
            GenerationQualifier = "string",
            GivenName = "string",
            Initials = "string",
            LocalityName = "string",
            Organization = "string",
            OrganizationalUnit = "string",
            Pseudonym = "string",
            SerialNumber = "string",
            StateOrProvinceName = "string",
            Street = "string",
            Surname = "string",
            Title = "string",
            UserId = "string",
        },
        SubjectAlternativeNames = new[]
        {
            new Oci.CertificatesManagement.Inputs.CertificateCertificateConfigSubjectAlternativeNameArgs
            {
                Type = "string",
                Value = "string",
            },
        },
        Validity = new Oci.CertificatesManagement.Inputs.CertificateCertificateConfigValidityArgs
        {
            TimeOfValidityNotAfter = "string",
            TimeOfValidityNotBefore = "string",
        },
        VersionName = "string",
    },
    CompartmentId = "string",
    CertificateRules = new[]
    {
        new Oci.CertificatesManagement.Inputs.CertificateCertificateRuleArgs
        {
            AdvanceRenewalPeriod = "string",
            RenewalInterval = "string",
            RuleType = "string",
        },
    },
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    Name = "string",
});
example, err := CertificatesManagement.NewCertificate(ctx, "ociCertificateResource", &CertificatesManagement.CertificateArgs{
	CertificateConfig: &certificatesmanagement.CertificateCertificateConfigArgs{
		ConfigType:                   pulumi.String("string"),
		CertificateProfileType:       pulumi.String("string"),
		CsrPem:                       pulumi.String("string"),
		IssuerCertificateAuthorityId: pulumi.String("string"),
		KeyAlgorithm:                 pulumi.String("string"),
		SignatureAlgorithm:           pulumi.String("string"),
		Subject: &certificatesmanagement.CertificateCertificateConfigSubjectArgs{
			CommonName:                 pulumi.String("string"),
			Country:                    pulumi.String("string"),
			DistinguishedNameQualifier: pulumi.String("string"),
			DomainComponent:            pulumi.String("string"),
			GenerationQualifier:        pulumi.String("string"),
			GivenName:                  pulumi.String("string"),
			Initials:                   pulumi.String("string"),
			LocalityName:               pulumi.String("string"),
			Organization:               pulumi.String("string"),
			OrganizationalUnit:         pulumi.String("string"),
			Pseudonym:                  pulumi.String("string"),
			SerialNumber:               pulumi.String("string"),
			StateOrProvinceName:        pulumi.String("string"),
			Street:                     pulumi.String("string"),
			Surname:                    pulumi.String("string"),
			Title:                      pulumi.String("string"),
			UserId:                     pulumi.String("string"),
		},
		SubjectAlternativeNames: certificatesmanagement.CertificateCertificateConfigSubjectAlternativeNameArray{
			&certificatesmanagement.CertificateCertificateConfigSubjectAlternativeNameArgs{
				Type:  pulumi.String("string"),
				Value: pulumi.String("string"),
			},
		},
		Validity: &certificatesmanagement.CertificateCertificateConfigValidityArgs{
			TimeOfValidityNotAfter:  pulumi.String("string"),
			TimeOfValidityNotBefore: pulumi.String("string"),
		},
		VersionName: pulumi.String("string"),
	},
	CompartmentId: pulumi.String("string"),
	CertificateRules: certificatesmanagement.CertificateCertificateRuleArray{
		&certificatesmanagement.CertificateCertificateRuleArgs{
			AdvanceRenewalPeriod: pulumi.String("string"),
			RenewalInterval:      pulumi.String("string"),
			RuleType:             pulumi.String("string"),
		},
	},
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
var ociCertificateResource = new Certificate("ociCertificateResource", CertificateArgs.builder()
    .certificateConfig(CertificateCertificateConfigArgs.builder()
        .configType("string")
        .certificateProfileType("string")
        .csrPem("string")
        .issuerCertificateAuthorityId("string")
        .keyAlgorithm("string")
        .signatureAlgorithm("string")
        .subject(CertificateCertificateConfigSubjectArgs.builder()
            .commonName("string")
            .country("string")
            .distinguishedNameQualifier("string")
            .domainComponent("string")
            .generationQualifier("string")
            .givenName("string")
            .initials("string")
            .localityName("string")
            .organization("string")
            .organizationalUnit("string")
            .pseudonym("string")
            .serialNumber("string")
            .stateOrProvinceName("string")
            .street("string")
            .surname("string")
            .title("string")
            .userId("string")
            .build())
        .subjectAlternativeNames(CertificateCertificateConfigSubjectAlternativeNameArgs.builder()
            .type("string")
            .value("string")
            .build())
        .validity(CertificateCertificateConfigValidityArgs.builder()
            .timeOfValidityNotAfter("string")
            .timeOfValidityNotBefore("string")
            .build())
        .versionName("string")
        .build())
    .compartmentId("string")
    .certificateRules(CertificateCertificateRuleArgs.builder()
        .advanceRenewalPeriod("string")
        .renewalInterval("string")
        .ruleType("string")
        .build())
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .name("string")
    .build());
oci_certificate_resource = oci.certificates_management.Certificate("ociCertificateResource",
    certificate_config={
        "config_type": "string",
        "certificate_profile_type": "string",
        "csr_pem": "string",
        "issuer_certificate_authority_id": "string",
        "key_algorithm": "string",
        "signature_algorithm": "string",
        "subject": {
            "common_name": "string",
            "country": "string",
            "distinguished_name_qualifier": "string",
            "domain_component": "string",
            "generation_qualifier": "string",
            "given_name": "string",
            "initials": "string",
            "locality_name": "string",
            "organization": "string",
            "organizational_unit": "string",
            "pseudonym": "string",
            "serial_number": "string",
            "state_or_province_name": "string",
            "street": "string",
            "surname": "string",
            "title": "string",
            "user_id": "string",
        },
        "subject_alternative_names": [{
            "type": "string",
            "value": "string",
        }],
        "validity": {
            "time_of_validity_not_after": "string",
            "time_of_validity_not_before": "string",
        },
        "version_name": "string",
    },
    compartment_id="string",
    certificate_rules=[{
        "advance_renewal_period": "string",
        "renewal_interval": "string",
        "rule_type": "string",
    }],
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    },
    name="string")
const ociCertificateResource = new oci.certificatesmanagement.Certificate("ociCertificateResource", {
    certificateConfig: {
        configType: "string",
        certificateProfileType: "string",
        csrPem: "string",
        issuerCertificateAuthorityId: "string",
        keyAlgorithm: "string",
        signatureAlgorithm: "string",
        subject: {
            commonName: "string",
            country: "string",
            distinguishedNameQualifier: "string",
            domainComponent: "string",
            generationQualifier: "string",
            givenName: "string",
            initials: "string",
            localityName: "string",
            organization: "string",
            organizationalUnit: "string",
            pseudonym: "string",
            serialNumber: "string",
            stateOrProvinceName: "string",
            street: "string",
            surname: "string",
            title: "string",
            userId: "string",
        },
        subjectAlternativeNames: [{
            type: "string",
            value: "string",
        }],
        validity: {
            timeOfValidityNotAfter: "string",
            timeOfValidityNotBefore: "string",
        },
        versionName: "string",
    },
    compartmentId: "string",
    certificateRules: [{
        advanceRenewalPeriod: "string",
        renewalInterval: "string",
        ruleType: "string",
    }],
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
    name: "string",
});
type: oci:CertificatesManagement:Certificate
properties:
    certificateConfig:
        certificateProfileType: string
        configType: string
        csrPem: string
        issuerCertificateAuthorityId: string
        keyAlgorithm: string
        signatureAlgorithm: string
        subject:
            commonName: string
            country: string
            distinguishedNameQualifier: string
            domainComponent: string
            generationQualifier: string
            givenName: string
            initials: string
            localityName: string
            organization: string
            organizationalUnit: string
            pseudonym: string
            serialNumber: string
            stateOrProvinceName: string
            street: string
            surname: string
            title: string
            userId: string
        subjectAlternativeNames:
            - type: string
              value: string
        validity:
            timeOfValidityNotAfter: string
            timeOfValidityNotBefore: string
        versionName: string
    certificateRules:
        - advanceRenewalPeriod: string
          renewalInterval: string
          ruleType: string
    compartmentId: string
    definedTags:
        string: string
    description: string
    freeformTags:
        string: string
    name: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Certificate resource accepts the following input properties:
- CertificateConfig CertificateCertificate Config 
- (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<CertificateCertificate Rule> 
- (Updatable) An optional list of rules that control how the certificate is used and managed.
- Dictionary<string, string>
- (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.
- Dictionary<string, string>
- (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. - ** 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 
- CertificateConfig CertificateCertificate Config Args 
- (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 []CertificateCertificate Rule Args 
- (Updatable) An optional list of rules that control how the certificate is used and managed.
- map[string]string
- (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.
- map[string]string
- (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. - ** 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 
- certificateConfig CertificateCertificate Config 
- (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<CertificateCertificate Rule> 
- (Updatable) An optional list of rules that control how the certificate is used and managed.
- Map<String,String>
- (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.
- Map<String,String>
- (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. - ** 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 
- certificateConfig CertificateCertificate Config 
- (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 CertificateCertificate Rule[] 
- (Updatable) An optional list of rules that control how the certificate is used and managed.
- {[key: string]: string}
- (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.
- {[key: string]: string}
- (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. - ** 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_config certificatesmanagement.Certificate Certificate Config Args 
- (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 Sequence[certificatesmanagement.Certificate Certificate Rule Args] 
- (Updatable) An optional list of rules that control how the certificate is used and managed.
- Mapping[str, str]
- (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.
- Mapping[str, str]
- (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. - ** 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 
- 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.
- Map<String>
- (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.
- Map<String>
- (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. - ** 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 Certificate resource produces the following output properties:
- CertificateProfile stringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- CertificateRevocation List<CertificateList Details Certificate Revocation List Detail> 
- The details of the certificate revocation list (CRL).
- ConfigType string
- The origin of the certificate.
- CurrentVersions List<CertificateCurrent Version> 
- 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.
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- KeyAlgorithm string
- The algorithm used to create key pairs.
- LifecycleDetails string
- Additional information about the current lifecycle state of the certificate.
- SignatureAlgorithm string
- The algorithm used 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
- TimeOf stringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- CertificateProfile stringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- CertificateRevocation []CertificateList Details Certificate Revocation List Detail 
- The details of the certificate revocation list (CRL).
- ConfigType string
- The origin of the certificate.
- CurrentVersions []CertificateCurrent Version 
- 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.
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- KeyAlgorithm string
- The algorithm used to create key pairs.
- LifecycleDetails string
- Additional information about the current lifecycle state of the certificate.
- SignatureAlgorithm string
- The algorithm used 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
- TimeOf stringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- certificateProfile StringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificateRevocation List<CertificateList Details Certificate Revocation List Detail> 
- The details of the certificate revocation list (CRL).
- configType String
- The origin of the certificate.
- currentVersions List<CertificateCurrent Version> 
- 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.
- String
- The OCID of the certificate authority (CA) that issued the certificate.
- keyAlgorithm String
- The algorithm used to create key pairs.
- lifecycleDetails String
- Additional information about the current lifecycle state of the certificate.
- signatureAlgorithm String
- The algorithm used 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
- timeOf StringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- certificateProfile stringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificateRevocation CertificateList Details Certificate Revocation List Detail[] 
- The details of the certificate revocation list (CRL).
- configType string
- The origin of the certificate.
- currentVersions CertificateCurrent Version[] 
- 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.
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- keyAlgorithm string
- The algorithm used to create key pairs.
- lifecycleDetails string
- Additional information about the current lifecycle state of the certificate.
- signatureAlgorithm string
- The algorithm used 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
- timeOf stringDeletion 
- 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_ strtype 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate_revocation_ Sequence[certificatesmanagement.list_ details Certificate Certificate Revocation List Detail] 
- The details of the certificate revocation list (CRL).
- config_type str
- The origin of the certificate.
- current_versions Sequence[certificatesmanagement.Certificate Current Version] 
- 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.
- str
- The OCID of the certificate authority (CA) that issued the certificate.
- key_algorithm str
- The algorithm used to create key pairs.
- lifecycle_details str
- Additional information about the current lifecycle state of the certificate.
- signature_algorithm str
- The algorithm used to sign the public key certificate.
- state str
- The current lifecycle state of the certificate.
- subjects
Sequence[certificatesmanagement.Certificate Subject] 
- 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_ strdeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- certificateProfile StringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificateRevocation List<Property Map>List Details 
- The details of the certificate revocation list (CRL).
- configType String
- 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.
- String
- The OCID of the certificate authority (CA) that issued the certificate.
- keyAlgorithm String
- The algorithm used to create key pairs.
- lifecycleDetails String
- Additional information about the current lifecycle state of the certificate.
- signatureAlgorithm String
- The algorithm used 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
- timeOf StringDeletion 
- 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, str]] = None,
        description: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = 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) -> Certificatefunc 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)resources:  _:    type: oci:CertificatesManagement:Certificate    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.
- CertificateConfig CertificateCertificate Config 
- (Updatable) The details of the contents of the certificate and certificate metadata.
- CertificateProfile stringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- CertificateRevocation List<CertificateList Details Certificate Revocation List Detail> 
- The details of the certificate revocation list (CRL).
- CertificateRules List<CertificateCertificate Rule> 
- (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
- The origin of the certificate.
- CurrentVersions List<CertificateCurrent Version> 
- The details of the certificate version. This object does not contain the certificate contents.
- Dictionary<string, string>
- (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.
- Dictionary<string, string>
- (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"}
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- KeyAlgorithm string
- The algorithm used 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. - ** 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 
- SignatureAlgorithm string
- The algorithm used 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
- TimeOf stringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- CertificateConfig CertificateCertificate Config Args 
- (Updatable) The details of the contents of the certificate and certificate metadata.
- CertificateProfile stringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- CertificateRevocation []CertificateList Details Certificate Revocation List Detail Args 
- The details of the certificate revocation list (CRL).
- CertificateRules []CertificateCertificate Rule Args 
- (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
- The origin of the certificate.
- CurrentVersions []CertificateCurrent Version Args 
- The details of the certificate version. This object does not contain the certificate contents.
- map[string]string
- (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.
- map[string]string
- (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"}
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- KeyAlgorithm string
- The algorithm used 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. - ** 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 
- SignatureAlgorithm string
- The algorithm used to sign the public key certificate.
- State string
- The current lifecycle state of the certificate.
- Subjects
[]CertificateSubject Args 
- 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
- TimeOf stringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- certificateConfig CertificateCertificate Config 
- (Updatable) The details of the contents of the certificate and certificate metadata.
- certificateProfile StringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificateRevocation List<CertificateList Details Certificate Revocation List Detail> 
- The details of the certificate revocation list (CRL).
- certificateRules List<CertificateCertificate Rule> 
- (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
- The origin of the certificate.
- currentVersions List<CertificateCurrent Version> 
- The details of the certificate version. This object does not contain the certificate contents.
- Map<String,String>
- (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.
- Map<String,String>
- (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"}
- String
- The OCID of the certificate authority (CA) that issued the certificate.
- keyAlgorithm String
- The algorithm used 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. - ** 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 
- signatureAlgorithm String
- The algorithm used 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
- timeOf StringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- certificateConfig CertificateCertificate Config 
- (Updatable) The details of the contents of the certificate and certificate metadata.
- certificateProfile stringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificateRevocation CertificateList Details Certificate Revocation List Detail[] 
- The details of the certificate revocation list (CRL).
- certificateRules CertificateCertificate Rule[] 
- (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
- The origin of the certificate.
- currentVersions CertificateCurrent Version[] 
- The details of the certificate version. This object does not contain the certificate contents.
- {[key: string]: string}
- (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.
- {[key: string]: string}
- (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"}
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- keyAlgorithm string
- The algorithm used 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. - ** 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 
- signatureAlgorithm string
- The algorithm used 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
- timeOf stringDeletion 
- 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 certificatesmanagement.Certificate Certificate Config Args 
- (Updatable) The details of the contents of the certificate and certificate metadata.
- certificate_profile_ strtype 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate_revocation_ Sequence[certificatesmanagement.list_ details Certificate Certificate Revocation List Detail Args] 
- The details of the certificate revocation list (CRL).
- certificate_rules Sequence[certificatesmanagement.Certificate Certificate Rule Args] 
- (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
- The origin of the certificate.
- current_versions Sequence[certificatesmanagement.Certificate Current Version Args] 
- The details of the certificate version. This object does not contain the certificate contents.
- Mapping[str, str]
- (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.
- Mapping[str, str]
- (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"}
- str
- The OCID of the certificate authority (CA) that issued the certificate.
- key_algorithm str
- The algorithm used 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. - ** 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 
- signature_algorithm str
- The algorithm used to sign the public key certificate.
- state str
- The current lifecycle state of the certificate.
- subjects
Sequence[certificatesmanagement.Certificate Subject Args] 
- 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_ strdeletion 
- 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.
- certificateProfile StringType 
- The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificateRevocation List<Property Map>List Details 
- 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
- The origin of the certificate.
- currentVersions List<Property Map>
- The details of the certificate version. This object does not contain the certificate contents.
- Map<String>
- (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.
- Map<String>
- (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"}
- String
- The OCID of the certificate authority (CA) that issued the certificate.
- keyAlgorithm String
- The algorithm used 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. - ** 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 
- signatureAlgorithm String
- The algorithm used 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
- timeOf StringDeletion 
- 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, CertificateCertificateConfigArgs      
- ConfigType string
- (Updatable) The origin of the certificate.
- CertificateProfile stringType 
- 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).
- 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
CertificateCertificate Config Subject 
- The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- SubjectAlternative List<CertificateNames Certificate Config Subject Alternative Name> 
- A list of subject alternative names.
- Validity
CertificateCertificate Config Validity 
- (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.
- CertificateProfile stringType 
- 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).
- 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
CertificateCertificate Config Subject 
- The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- SubjectAlternative []CertificateNames Certificate Config Subject Alternative Name 
- A list of subject alternative names.
- Validity
CertificateCertificate Config Validity 
- (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.
- certificateProfile StringType 
- 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).
- 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
CertificateCertificate Config Subject 
- The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- subjectAlternative List<CertificateNames Certificate Config Subject Alternative Name> 
- A list of subject alternative names.
- validity
CertificateCertificate Config Validity 
- (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.
- certificateProfile stringType 
- 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).
- 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
CertificateCertificate Config Subject 
- The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- subjectAlternative CertificateNames Certificate Config Subject Alternative Name[] 
- A list of subject alternative names.
- validity
CertificateCertificate Config Validity 
- (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_ strtype 
- 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).
- 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
certificatesmanagement.Certificate Certificate Config Subject 
- The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- subject_alternative_ Sequence[certificatesmanagement.names Certificate Certificate Config Subject Alternative Name] 
- A list of subject alternative names.
- validity
certificatesmanagement.Certificate Certificate Config Validity 
- (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.
- certificateProfile StringType 
- 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).
- 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.
- subjectAlternative List<Property Map>Names 
- 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, CertificateCertificateConfigSubjectArgs        
- CommonName string
- Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- DistinguishedName stringQualifier 
- 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).
- StateOr stringProvince Name 
- 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).
- DistinguishedName stringQualifier 
- 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).
- StateOr stringProvince Name 
- 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).
- distinguishedName StringQualifier 
- 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).
- stateOr StringProvince Name 
- 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).
- distinguishedName stringQualifier 
- 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).
- stateOr stringProvince Name 
- 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_ strqualifier 
- 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_ strprovince_ name 
- 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).
- distinguishedName StringQualifier 
- 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).
- stateOr StringProvince Name 
- 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, CertificateCertificateConfigSubjectAlternativeNameArgs            
CertificateCertificateConfigValidity, CertificateCertificateConfigValidityArgs        
- TimeOf stringValidity Not After 
- (Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- TimeOf stringValidity Not Before 
- (Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- TimeOf stringValidity Not After 
- (Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- TimeOf stringValidity Not Before 
- (Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not After 
- (Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not Before 
- (Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf stringValidity Not After 
- (Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf stringValidity Not Before 
- (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_ strvalidity_ not_ after 
- (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_ strvalidity_ not_ before 
- (Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not After 
- (Updatable) The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not Before 
- (Updatable) The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
CertificateCertificateRevocationListDetail, CertificateCertificateRevocationListDetailArgs          
- CustomFormatted List<string>Urls 
- 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.
- ObjectStorage List<CertificateConfigs Certificate Revocation List Detail Object Storage Config> 
- The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- CustomFormatted []stringUrls 
- 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.
- ObjectStorage []CertificateConfigs Certificate Revocation List Detail Object Storage Config 
- The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- customFormatted List<String>Urls 
- 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.
- objectStorage List<CertificateConfigs Certificate Revocation List Detail Object Storage Config> 
- The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- customFormatted string[]Urls 
- 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.
- objectStorage CertificateConfigs Certificate Revocation List Detail Object Storage Config[] 
- The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- custom_formatted_ Sequence[str]urls 
- 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_ Sequence[certificatesmanagement.configs Certificate Certificate Revocation List Detail Object Storage Config] 
- The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- customFormatted List<String>Urls 
- 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.
- objectStorage List<Property Map>Configs 
- The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
CertificateCertificateRevocationListDetailObjectStorageConfig, CertificateCertificateRevocationListDetailObjectStorageConfigArgs                
- ObjectStorage stringBucket Name 
- The name of the bucket where the CRL is stored.
- ObjectStorage stringNamespace 
- The tenancy of the bucket where the CRL is stored.
- ObjectStorage stringObject Name Format 
- 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.
- ObjectStorage stringBucket Name 
- The name of the bucket where the CRL is stored.
- ObjectStorage stringNamespace 
- The tenancy of the bucket where the CRL is stored.
- ObjectStorage stringObject Name Format 
- 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.
- objectStorage StringBucket Name 
- The name of the bucket where the CRL is stored.
- objectStorage StringNamespace 
- The tenancy of the bucket where the CRL is stored.
- objectStorage StringObject Name Format 
- 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.
- objectStorage stringBucket Name 
- The name of the bucket where the CRL is stored.
- objectStorage stringNamespace 
- The tenancy of the bucket where the CRL is stored.
- objectStorage stringObject Name Format 
- 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_ strbucket_ name 
- The name of the bucket where the CRL is stored.
- object_storage_ strnamespace 
- The tenancy of the bucket where the CRL is stored.
- object_storage_ strobject_ name_ format 
- 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.
- objectStorage StringBucket Name 
- The name of the bucket where the CRL is stored.
- objectStorage StringNamespace 
- The tenancy of the bucket where the CRL is stored.
- objectStorage StringObject Name Format 
- 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, CertificateCertificateRuleArgs      
- AdvanceRenewal stringPeriod 
- (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.
- AdvanceRenewal stringPeriod 
- (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.
- advanceRenewal StringPeriod 
- (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.
- advanceRenewal stringPeriod 
- (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_ strperiod 
- (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.
- advanceRenewal StringPeriod 
- (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, CertificateCurrentVersionArgs      
- CertificateId string
- The OCID of the certificate.
- IssuerCa stringVersion Number 
- The version number of the issuing certificate authority (CA).
- RevocationStatuses List<CertificateCurrent Version Revocation Status> 
- 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.
- SubjectAlternative List<CertificateNames Current Version Subject Alternative Name> 
- 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
- TimeOf stringDeletion 
- 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<CertificateCurrent Version Validity> 
- 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
- The name of the certificate version. 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.
- IssuerCa stringVersion Number 
- The version number of the issuing certificate authority (CA).
- RevocationStatuses []CertificateCurrent Version Revocation Status 
- 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.
- SubjectAlternative []CertificateNames Current Version Subject Alternative Name 
- 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
- TimeOf stringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- Validities
[]CertificateCurrent Version Validity 
- 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
- The name of the certificate version. 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.
- issuerCa StringVersion Number 
- The version number of the issuing certificate authority (CA).
- revocationStatuses List<CertificateCurrent Version Revocation Status> 
- 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.
- subjectAlternative List<CertificateNames Current Version Subject Alternative Name> 
- 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
- timeOf StringDeletion 
- 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<CertificateCurrent Version Validity> 
- 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
- The name of the certificate version. 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.
- issuerCa stringVersion Number 
- The version number of the issuing certificate authority (CA).
- revocationStatuses CertificateCurrent Version Revocation Status[] 
- 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.
- subjectAlternative CertificateNames Current Version Subject Alternative Name[] 
- 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
- timeOf stringDeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- validities
CertificateCurrent Version Validity[] 
- 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
- The name of the certificate version. 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_ strversion_ number 
- The version number of the issuing certificate authority (CA).
- revocation_statuses Sequence[certificatesmanagement.Certificate Current Version Revocation Status] 
- 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_ Sequence[certificatesmanagement.names Certificate Current Version Subject Alternative Name] 
- 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_ strdeletion 
- An optional property indicating when to delete the certificate version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- validities
Sequence[certificatesmanagement.Certificate Current Version Validity] 
- 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
- The name of the certificate version. 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.
- issuerCa StringVersion Number 
- 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.
- subjectAlternative List<Property Map>Names 
- 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
- timeOf StringDeletion 
- 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>
- 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
- The name of the certificate version. 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, CertificateCurrentVersionRevocationStatusArgs          
- RevocationReason string
- The reason the certificate or certificate authority (CA) was revoked.
- TimeOf stringRevocation 
- 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.
- TimeOf stringRevocation 
- 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.
- timeOf StringRevocation 
- 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.
- timeOf stringRevocation 
- 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_ strrevocation 
- 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.
- timeOf StringRevocation 
- The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
CertificateCurrentVersionSubjectAlternativeName, CertificateCurrentVersionSubjectAlternativeNameArgs            
CertificateCurrentVersionValidity, CertificateCurrentVersionValidityArgs        
- TimeOf stringValidity Not After 
- The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- TimeOf stringValidity Not Before 
- The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- TimeOf stringValidity Not After 
- The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- TimeOf stringValidity Not Before 
- The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not After 
- The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not Before 
- The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf stringValidity Not After 
- The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf stringValidity Not Before 
- The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- time_of_ strvalidity_ not_ after 
- The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- time_of_ strvalidity_ not_ before 
- The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not After 
- The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
- timeOf StringValidity Not Before 
- The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
CertificateSubject, CertificateSubjectArgs    
- CommonName string
- Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- DistinguishedName stringQualifier 
- 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).
- StateOr stringProvince Name 
- 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).
- DistinguishedName stringQualifier 
- 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).
- StateOr stringProvince Name 
- 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).
- distinguishedName StringQualifier 
- 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).
- stateOr StringProvince Name 
- 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).
- distinguishedName stringQualifier 
- 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).
- stateOr stringProvince Name 
- 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_ strqualifier 
- 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_ strprovince_ name 
- 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).
- distinguishedName StringQualifier 
- 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).
- stateOr StringProvince Name 
- 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"
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.