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, Any]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = 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", "any" },
},
Description = "string",
FreeformTags =
{
{ "string", "any" },
},
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.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
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", "any"))
.description("string")
.freeformTags(Map.of("string", "any"))
.name("string")
.build());
oci_certificate_resource = oci.certificates_management.Certificate("ociCertificateResource",
certificate_config=oci.certificates_management.CertificateCertificateConfigArgs(
config_type="string",
certificate_profile_type="string",
csr_pem="string",
issuer_certificate_authority_id="string",
key_algorithm="string",
signature_algorithm="string",
subject=oci.certificates_management.CertificateCertificateConfigSubjectArgs(
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=[oci.certificates_management.CertificateCertificateConfigSubjectAlternativeNameArgs(
type="string",
value="string",
)],
validity=oci.certificates_management.CertificateCertificateConfigValidityArgs(
time_of_validity_not_after="string",
time_of_validity_not_before="string",
),
version_name="string",
),
compartment_id="string",
certificate_rules=[oci.certificates_management.CertificateCertificateRuleArgs(
advance_renewal_period="string",
renewal_interval="string",
rule_type="string",
)],
defined_tags={
"string": "any",
},
description="string",
freeform_tags={
"string": "any",
},
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: "any",
},
description: "string",
freeformTags: {
string: "any",
},
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: any
description: string
freeformTags:
string: any
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
The Certificate resource accepts the following input properties:
- Certificate
Config CertificateCertificate Config - (Updatable) The details of the contents of the certificate and certificate metadata.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the certificate.
- Certificate
Rules List<CertificateCertificate Rule> - (Updatable) An optional list of rules that control how the certificate is used and managed.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Dictionary<string, object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Name string
A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
** 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 CertificateCertificate Config Args - (Updatable) The details of the contents of the certificate and certificate metadata.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the certificate.
- Certificate
Rules []CertificateCertificate Rule Args - (Updatable) An optional list of rules that control how the certificate is used and managed.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- map[string]interface{}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Name string
A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
** 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 CertificateCertificate Config - (Updatable) The details of the contents of the certificate and certificate metadata.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the certificate.
- certificate
Rules List<CertificateCertificate Rule> - (Updatable) An optional list of rules that control how the certificate is used and managed.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Map<String,Object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name String
A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
** 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 CertificateCertificate Config - (Updatable) The details of the contents of the certificate and certificate metadata.
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the certificate.
- certificate
Rules CertificateCertificate Rule[] - (Updatable) An optional list of rules that control how the certificate is used and managed.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- {[key: string]: any}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name string
A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
** 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, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Mapping[str, Any]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name str
A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
** 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 Property Map - (Updatable) The details of the contents of the certificate and certificate metadata.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the certificate.
- certificate
Rules List<Property Map> - (Updatable) An optional list of rules that control how the certificate is used and managed.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Map<Any>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name String
A user-friendly name for the certificate. Names are unique within a compartment. Avoid entering confidential information. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
** 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:
- Certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- Certificate
Revocation List<CertificateList Details Certificate Revocation List Detail> - The details of the certificate revocation list (CRL).
- Config
Type string - The origin of the certificate.
- Current
Versions 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.
- Key
Algorithm string - The algorithm used to create key pairs.
- Lifecycle
Details string - Additional information about the current lifecycle state of the certificate.
- Signature
Algorithm string - The algorithm used to sign the public key certificate.
- State string
- The current lifecycle state of the certificate.
- Subjects
List<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 string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of 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 stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- Certificate
Revocation []CertificateList Details Certificate Revocation List Detail - The details of the certificate revocation list (CRL).
- Config
Type string - The origin of the certificate.
- Current
Versions []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.
- Key
Algorithm string - The algorithm used to create key pairs.
- Lifecycle
Details string - Additional information about the current lifecycle state of the certificate.
- Signature
Algorithm string - The algorithm used to sign the public key certificate.
- State string
- The current lifecycle state of the certificate.
- Subjects
[]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 string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of 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 StringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate
Revocation List<CertificateList Details Certificate Revocation List Detail> - The details of the certificate revocation list (CRL).
- config
Type String - The origin of the certificate.
- current
Versions 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.
- key
Algorithm String - The algorithm used to create key pairs.
- lifecycle
Details String - Additional information about the current lifecycle state of the certificate.
- signature
Algorithm String - The algorithm used to sign the public key certificate.
- state String
- The current lifecycle state of the certificate.
- subjects
List<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 String - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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 stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate
Revocation CertificateList Details Certificate Revocation List Detail[] - The details of the certificate revocation list (CRL).
- config
Type string - The origin of the certificate.
- current
Versions 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.
- key
Algorithm string - The algorithm used to create key pairs.
- lifecycle
Details string - Additional information about the current lifecycle state of the certificate.
- signature
Algorithm string - The algorithm used to sign the public key certificate.
- state string
- The current lifecycle state of the certificate.
- subjects
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 string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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
- certificate
Profile StringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate
Revocation List<Property Map>List Details - The details of the certificate revocation list (CRL).
- config
Type String - The origin of the certificate.
- current
Versions 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.
- key
Algorithm String - The algorithm used to create key pairs.
- lifecycle
Details String - Additional information about the current lifecycle state of the certificate.
- signature
Algorithm 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.
- time
Created String - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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, Any]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
issuer_certificate_authority_id: Optional[str] = None,
key_algorithm: Optional[str] = None,
lifecycle_details: Optional[str] = None,
name: Optional[str] = None,
signature_algorithm: Optional[str] = None,
state: Optional[str] = None,
subjects: Optional[Sequence[_certificatesmanagement.CertificateSubjectArgs]] = None,
time_created: Optional[str] = None,
time_of_deletion: Optional[str] = None) -> Certificate
func GetCertificate(ctx *Context, name string, id IDInput, state *CertificateState, opts ...ResourceOption) (*Certificate, error)
public static Certificate Get(string name, Input<string> id, CertificateState? state, CustomResourceOptions? opts = null)
public static Certificate get(String name, Output<String> id, CertificateState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Certificate
Config CertificateCertificate Config - (Updatable) The details of the contents of the certificate and certificate metadata.
- Certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- Certificate
Revocation List<CertificateList Details Certificate Revocation List Detail> - The details of the certificate revocation list (CRL).
- Certificate
Rules List<CertificateCertificate Rule> - (Updatable) An optional list of rules that control how the certificate is used and managed.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the certificate.
- Config
Type string - The origin of the certificate.
- Current
Versions List<CertificateCurrent Version> - The details of the certificate version. This object does not contain the certificate contents.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Dictionary<string, object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- Key
Algorithm string - The algorithm used to create key pairs.
- Lifecycle
Details 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
- Signature
Algorithm string - The algorithm used to sign the public key certificate.
- State string
- The current lifecycle state of the certificate.
- Subjects
List<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 string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of 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 CertificateCertificate Config Args - (Updatable) The details of the contents of the certificate and certificate metadata.
- Certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- Certificate
Revocation []CertificateList Details Certificate Revocation List Detail Args - The details of the certificate revocation list (CRL).
- Certificate
Rules []CertificateCertificate Rule Args - (Updatable) An optional list of rules that control how the certificate is used and managed.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the certificate.
- Config
Type string - The origin of the certificate.
- Current
Versions []CertificateCurrent Version Args - The details of the certificate version. This object does not contain the certificate contents.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- map[string]interface{}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- Key
Algorithm string - The algorithm used to create key pairs.
- Lifecycle
Details 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
- Signature
Algorithm string - The algorithm used to sign the public key certificate.
- State string
- The current lifecycle state of the certificate.
- Subjects
[]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 string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of 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 CertificateCertificate Config - (Updatable) The details of the contents of the certificate and certificate metadata.
- certificate
Profile StringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate
Revocation List<CertificateList Details Certificate Revocation List Detail> - The details of the certificate revocation list (CRL).
- certificate
Rules List<CertificateCertificate Rule> - (Updatable) An optional list of rules that control how the certificate is used and managed.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the certificate.
- config
Type String - The origin of the certificate.
- current
Versions List<CertificateCurrent Version> - The details of the certificate version. This object does not contain the certificate contents.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Map<String,Object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- String
- The OCID of the certificate authority (CA) that issued the certificate.
- key
Algorithm String - The algorithm used to create key pairs.
- lifecycle
Details 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
- signature
Algorithm String - The algorithm used to sign the public key certificate.
- state String
- The current lifecycle state of the certificate.
- subjects
List<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 String - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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 CertificateCertificate Config - (Updatable) The details of the contents of the certificate and certificate metadata.
- certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate
Revocation CertificateList Details Certificate Revocation List Detail[] - The details of the certificate revocation list (CRL).
- certificate
Rules CertificateCertificate Rule[] - (Updatable) An optional list of rules that control how the certificate is used and managed.
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the certificate.
- config
Type string - The origin of the certificate.
- current
Versions CertificateCurrent Version[] - The details of the certificate version. This object does not contain the certificate contents.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- {[key: string]: any}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- string
- The OCID of the certificate authority (CA) that issued the certificate.
- key
Algorithm string - The algorithm used to create key pairs.
- lifecycle
Details 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
- signature
Algorithm string - The algorithm used to sign the public key certificate.
- state string
- The current lifecycle state of the certificate.
- subjects
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 string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Mapping[str, Any]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- 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
- certificate
Config Property Map - (Updatable) The details of the contents of the certificate and certificate metadata.
- certificate
Profile StringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- certificate
Revocation List<Property Map>List Details - The details of the certificate revocation list (CRL).
- certificate
Rules List<Property Map> - (Updatable) An optional list of rules that control how the certificate is used and managed.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the certificate.
- config
Type String - The origin of the certificate.
- current
Versions List<Property Map> - The details of the certificate version. This object does not contain the certificate contents.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) A brief description of the certificate. Avoid entering confidential information.
- Map<Any>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- String
- The OCID of the certificate authority (CA) that issued the certificate.
- key
Algorithm String - The algorithm used to create key pairs.
- lifecycle
Details 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
- signature
Algorithm 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.
- time
Created String - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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
- Config
Type string - (Updatable) The origin of the certificate.
- Certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- Csr
Pem string - (Updatable) The certificate signing request (in PEM format).
- string
- The OCID of the private CA.
- Key
Algorithm string - The algorithm to use to create key pairs.
- Signature
Algorithm string - The algorithm to use to sign the public key certificate.
- Subject
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 List<CertificateNames Certificate Config Subject Alternative Name> - A list of subject alternative names.
- Validity
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 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 string - (Updatable) The origin of the certificate.
- Certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- Csr
Pem string - (Updatable) The certificate signing request (in PEM format).
- string
- The OCID of the private CA.
- Key
Algorithm string - The algorithm to use to create key pairs.
- Signature
Algorithm string - The algorithm to use to sign the public key certificate.
- Subject
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 []CertificateNames Certificate Config Subject Alternative Name - A list of subject alternative names.
- Validity
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 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 String - (Updatable) The origin of the certificate.
- certificate
Profile StringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- csr
Pem String - (Updatable) The certificate signing request (in PEM format).
- String
- The OCID of the private CA.
- key
Algorithm String - The algorithm to use to create key pairs.
- signature
Algorithm String - The algorithm to use to sign the public key certificate.
- subject
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 List<CertificateNames Certificate Config Subject Alternative Name> - A list of subject alternative names.
- validity
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 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 string - (Updatable) The origin of the certificate.
- certificate
Profile stringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- csr
Pem string - (Updatable) The certificate signing request (in PEM format).
- string
- The OCID of the private CA.
- key
Algorithm string - The algorithm to use to create key pairs.
- signature
Algorithm string - The algorithm to use to sign the public key certificate.
- subject
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 CertificateNames Certificate Config Subject Alternative Name[] - A list of subject alternative names.
- validity
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 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.
- config
Type String - (Updatable) The origin of the certificate.
- certificate
Profile StringType - The name of the profile used to create the certificate, which depends on the type of certificate you need.
- csr
Pem String - (Updatable) The certificate signing request (in PEM format).
- String
- The OCID of the private CA.
- key
Algorithm String - The algorithm to use to create key pairs.
- signature
Algorithm 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.
- subject
Alternative 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.
- version
Name 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
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or 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).
- User
Id string - User ID (RDN UID).
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or 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).
- User
Id string - User ID (RDN UID).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or 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).
- user
Id String - User ID (RDN UID).
- common
Name string - Common name or fully-qualified domain name (RDN CN).
- country string
- Country name (RDN C).
- distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component string - Domain component (RDN DC).
- generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name string - Personal given name (RDN G or GN).
- initials string
- Personal initials.
- locality
Name string - Locality (RDN L).
- organization string
- Organization (RDN O).
- organizational
Unit string - Organizational unit (RDN OU).
- pseudonym string
- Subject pseudonym.
- serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or 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).
- user
Id 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).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or 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).
- user
Id String - User ID (RDN UID).
CertificateCertificateConfigSubjectAlternativeName, CertificateCertificateConfigSubjectAlternativeNameArgs
CertificateCertificateConfigValidity, CertificateCertificateConfigValidityArgs
- Time
Of 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
- Time
Of 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 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
- Time
Of 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 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
- time
Of 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 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
- time
Of 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
- time
Of 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
- time
Of 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
- Custom
Formatted 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.
- Object
Storage List<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 []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.
- Object
Storage []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 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.
- object
Storage List<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 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.
- object
Storage 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).
- custom
Formatted 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.
- object
Storage List<Property Map>Configs - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
CertificateCertificateRevocationListDetailObjectStorageConfig, CertificateCertificateRevocationListDetailObjectStorageConfigArgs
- Object
Storage stringBucket Name - The name of the bucket where the CRL is stored.
- Object
Storage stringNamespace - The tenancy of the bucket where the CRL is stored.
- Object
Storage 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 stringBucket Name - The name of the bucket where the CRL is stored.
- Object
Storage stringNamespace - The tenancy of the bucket where the CRL is stored.
- Object
Storage 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 StringBucket Name - The name of the bucket where the CRL is stored.
- object
Storage StringNamespace - The tenancy of the bucket where the CRL is stored.
- object
Storage 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 stringBucket Name - The name of the bucket where the CRL is stored.
- object
Storage stringNamespace - The tenancy of the bucket where the CRL is stored.
- object
Storage 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.
- object
Storage StringBucket Name - The name of the bucket where the CRL is stored.
- object
Storage StringNamespace - The tenancy of the bucket where the CRL is stored.
- object
Storage 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
- Advance
Renewal 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.
- Renewal
Interval string - (Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.
- Rule
Type string - (Updatable) The type of rule.
- Advance
Renewal 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.
- Renewal
Interval string - (Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.
- Rule
Type string - (Updatable) The type of rule.
- advance
Renewal 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.
- renewal
Interval String - (Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.
- rule
Type String - (Updatable) The type of rule.
- advance
Renewal 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.
- renewal
Interval string - (Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.
- rule
Type 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.
- advance
Renewal 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.
- renewal
Interval String - (Updatable) A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.
- rule
Type String - (Updatable) The type of rule.
CertificateCurrentVersion, CertificateCurrentVersionArgs
- Certificate
Id string - The OCID of the certificate.
- Issuer
Ca stringVersion Number - The version number of the issuing certificate authority (CA).
- Revocation
Statuses List<CertificateCurrent Version Revocation Status> - The current revocation status of the entity.
- Serial
Number 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.
- Subject
Alternative List<CertificateNames Current Version Subject Alternative Name> - A list of subject alternative names.
- Time
Created string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of 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<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 string - The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.
- Version
Number string - The version number of the certificate.
- Certificate
Id string - The OCID of the certificate.
- Issuer
Ca stringVersion Number - The version number of the issuing certificate authority (CA).
- Revocation
Statuses []CertificateCurrent Version Revocation Status - The current revocation status of the entity.
- Serial
Number 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.
- Subject
Alternative []CertificateNames Current Version Subject Alternative Name - A list of subject alternative names.
- Time
Created string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of 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
[]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 string - The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.
- Version
Number string - The version number of the certificate.
- certificate
Id String - The OCID of the certificate.
- issuer
Ca StringVersion Number - The version number of the issuing certificate authority (CA).
- revocation
Statuses List<CertificateCurrent Version Revocation Status> - The current revocation status of the entity.
- serial
Number 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.
- subject
Alternative List<CertificateNames Current Version Subject Alternative Name> - A list of subject alternative names.
- time
Created String - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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<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 String - The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.
- version
Number String - The version number of the certificate.
- certificate
Id string - The OCID of the certificate.
- issuer
Ca stringVersion Number - The version number of the issuing certificate authority (CA).
- revocation
Statuses CertificateCurrent Version Revocation Status[] - The current revocation status of the entity.
- serial
Number 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.
- subject
Alternative CertificateNames Current Version Subject Alternative Name[] - A list of subject alternative names.
- time
Created string - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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
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 string - The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.
- version
Number 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.
- certificate
Id String - The OCID of the certificate.
- issuer
Ca StringVersion Number - The version number of the issuing certificate authority (CA).
- revocation
Statuses List<Property Map> - The current revocation status of the entity.
- serial
Number 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.
- subject
Alternative List<Property Map>Names - A list of subject alternative names.
- time
Created String - A property indicating when the certificate was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of 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.
- version
Name String - The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.
- version
Number String - The version number of the certificate.
CertificateCurrentVersionRevocationStatus, CertificateCurrentVersionRevocationStatusArgs
- Revocation
Reason string - The reason the certificate or certificate authority (CA) was revoked.
- Time
Of stringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Revocation
Reason string - The reason the certificate or certificate authority (CA) was revoked.
- Time
Of stringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- revocation
Reason String - The reason the certificate or certificate authority (CA) was revoked.
- time
Of StringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- revocation
Reason string - The reason the certificate or certificate authority (CA) was revoked.
- time
Of 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
- revocation
Reason String - The reason the certificate or certificate authority (CA) was revoked.
- time
Of 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
- Time
Of 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
- Time
Of 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 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
- Time
Of 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 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
- time
Of 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 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
- time
Of 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
- time
Of 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
- time
Of 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
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or 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).
- User
Id string - User ID (RDN UID).
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or 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).
- User
Id string - User ID (RDN UID).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or 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).
- user
Id String - User ID (RDN UID).
- common
Name string - Common name or fully-qualified domain name (RDN CN).
- country string
- Country name (RDN C).
- distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component string - Domain component (RDN DC).
- generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name string - Personal given name (RDN G or GN).
- initials string
- Personal initials.
- locality
Name string - Locality (RDN L).
- organization string
- Organization (RDN O).
- organizational
Unit string - Organizational unit (RDN OU).
- pseudonym string
- Subject pseudonym.
- serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or 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).
- user
Id 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).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or 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).
- user
Id 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
oci
Terraform Provider.