1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CertificatesManagement
  5. getCertificates
Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi

oci.CertificatesManagement.getCertificates

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi

    This data source provides the list of Certificates in Oracle Cloud Infrastructure Certificates Management service.

    Lists all certificates that match the query parameters. Optionally, you can use the parameter FilterByCertificateIdQueryParam to limit the result set to a single item that matches the specified certificate.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testCertificates = Oci.CertificatesManagement.GetCertificates.Invoke(new()
        {
            CertificateId = oci_certificates_management_certificate.Test_certificate.Id,
            CompartmentId = @var.Compartment_id,
            IssuerCertificateAuthorityId = oci_certificates_management_certificate_authority.Test_certificate_authority.Id,
            Name = @var.Certificate_name,
            State = @var.Certificate_state,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/CertificatesManagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CertificatesManagement.GetCertificates(ctx, &certificatesmanagement.GetCertificatesArgs{
    			CertificateId:                pulumi.StringRef(oci_certificates_management_certificate.Test_certificate.Id),
    			CompartmentId:                pulumi.StringRef(_var.Compartment_id),
    			IssuerCertificateAuthorityId: pulumi.StringRef(oci_certificates_management_certificate_authority.Test_certificate_authority.Id),
    			Name:                         pulumi.StringRef(_var.Certificate_name),
    			State:                        pulumi.StringRef(_var.Certificate_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CertificatesManagement.CertificatesManagementFunctions;
    import com.pulumi.oci.CertificatesManagement.inputs.GetCertificatesArgs;
    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) {
            final var testCertificates = CertificatesManagementFunctions.getCertificates(GetCertificatesArgs.builder()
                .certificateId(oci_certificates_management_certificate.test_certificate().id())
                .compartmentId(var_.compartment_id())
                .issuerCertificateAuthorityId(oci_certificates_management_certificate_authority.test_certificate_authority().id())
                .name(var_.certificate_name())
                .state(var_.certificate_state())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_certificates = oci.CertificatesManagement.get_certificates(certificate_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        issuer_certificate_authority_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCertificates = oci.CertificatesManagement.getCertificates({
        certificateId: oci_certificates_management_certificate.test_certificate.id,
        compartmentId: _var.compartment_id,
        issuerCertificateAuthorityId: oci_certificates_management_certificate_authority.test_certificate_authority.id,
        name: _var.certificate_name,
        state: _var.certificate_state,
    });
    
    variables:
      testCertificates:
        fn::invoke:
          Function: oci:CertificatesManagement:getCertificates
          Arguments:
            certificateId: ${oci_certificates_management_certificate.test_certificate.id}
            compartmentId: ${var.compartment_id}
            issuerCertificateAuthorityId: ${oci_certificates_management_certificate_authority.test_certificate_authority.id}
            name: ${var.certificate_name}
            state: ${var.certificate_state}
    

    Using getCertificates

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCertificates(args: GetCertificatesArgs, opts?: InvokeOptions): Promise<GetCertificatesResult>
    function getCertificatesOutput(args: GetCertificatesOutputArgs, opts?: InvokeOptions): Output<GetCertificatesResult>
    def get_certificates(certificate_id: Optional[str] = None,
                         compartment_id: Optional[str] = None,
                         filters: Optional[Sequence[_certificatesmanagement.GetCertificatesFilter]] = None,
                         issuer_certificate_authority_id: Optional[str] = None,
                         name: Optional[str] = None,
                         state: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetCertificatesResult
    def get_certificates_output(certificate_id: Optional[pulumi.Input[str]] = None,
                         compartment_id: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_certificatesmanagement.GetCertificatesFilterArgs]]]] = None,
                         issuer_certificate_authority_id: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetCertificatesResult]
    func GetCertificates(ctx *Context, args *GetCertificatesArgs, opts ...InvokeOption) (*GetCertificatesResult, error)
    func GetCertificatesOutput(ctx *Context, args *GetCertificatesOutputArgs, opts ...InvokeOption) GetCertificatesResultOutput

    > Note: This function is named GetCertificates in the Go SDK.

    public static class GetCertificates 
    {
        public static Task<GetCertificatesResult> InvokeAsync(GetCertificatesArgs args, InvokeOptions? opts = null)
        public static Output<GetCertificatesResult> Invoke(GetCertificatesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCertificatesResult> getCertificates(GetCertificatesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:CertificatesManagement/getCertificates:getCertificates
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CertificateId string

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    CompartmentId string

    A filter that returns only resources that match the given compartment OCID.

    Filters List<GetCertificatesFilter>
    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    Name string

    A filter that returns only resources that match the specified name.

    State string

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    CertificateId string

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    CompartmentId string

    A filter that returns only resources that match the given compartment OCID.

    Filters []GetCertificatesFilter
    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    Name string

    A filter that returns only resources that match the specified name.

    State string

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    certificateId String

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    compartmentId String

    A filter that returns only resources that match the given compartment OCID.

    filters List<GetCertificatesFilter>
    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    name String

    A filter that returns only resources that match the specified name.

    state String

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    certificateId string

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    compartmentId string

    A filter that returns only resources that match the given compartment OCID.

    filters GetCertificatesFilter[]
    issuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    name string

    A filter that returns only resources that match the specified name.

    state string

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    certificate_id str

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    compartment_id str

    A filter that returns only resources that match the given compartment OCID.

    filters GetCertificatesFilter]
    issuer_certificate_authority_id str

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    name str

    A filter that returns only resources that match the specified name.

    state str

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    certificateId String

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    compartmentId String

    A filter that returns only resources that match the given compartment OCID.

    filters List<Property Map>
    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    name String

    A filter that returns only resources that match the specified name.

    state String

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    getCertificates Result

    The following output properties are available:

    CertificateCollections List<GetCertificatesCertificateCollection>

    The list of certificate_collection.

    Id string

    The provider-assigned unique ID for this managed resource.

    CertificateId string

    The OCID of the certificate.

    CompartmentId string

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

    Filters List<GetCertificatesFilter>
    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA) that issued 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.

    State string

    The current lifecycle state of the certificate.

    CertificateCollections []GetCertificatesCertificateCollection

    The list of certificate_collection.

    Id string

    The provider-assigned unique ID for this managed resource.

    CertificateId string

    The OCID of the certificate.

    CompartmentId string

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

    Filters []GetCertificatesFilter
    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA) that issued 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.

    State string

    The current lifecycle state of the certificate.

    certificateCollections List<GetCertificatesCertificateCollection>

    The list of certificate_collection.

    id String

    The provider-assigned unique ID for this managed resource.

    certificateId String

    The OCID of the certificate.

    compartmentId String

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

    filters List<GetCertificatesFilter>
    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA) that issued 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.

    state String

    The current lifecycle state of the certificate.

    certificateCollections GetCertificatesCertificateCollection[]

    The list of certificate_collection.

    id string

    The provider-assigned unique ID for this managed resource.

    certificateId string

    The OCID of the certificate.

    compartmentId string

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

    filters GetCertificatesFilter[]
    issuerCertificateAuthorityId string

    The OCID of the certificate authority (CA) that issued 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.

    state string

    The current lifecycle state of the certificate.

    certificate_collections GetCertificatesCertificateCollection]

    The list of certificate_collection.

    id str

    The provider-assigned unique ID for this managed resource.

    certificate_id str

    The OCID of the certificate.

    compartment_id str

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

    filters GetCertificatesFilter]
    issuer_certificate_authority_id str

    The OCID of the certificate authority (CA) that issued 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.

    state str

    The current lifecycle state of the certificate.

    certificateCollections List<Property Map>

    The list of certificate_collection.

    id String

    The provider-assigned unique ID for this managed resource.

    certificateId String

    The OCID of the certificate.

    compartmentId String

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

    filters List<Property Map>
    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA) that issued 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.

    state String

    The current lifecycle state of the certificate.

    Supporting Types

    GetCertificatesCertificateCollection

    GetCertificatesCertificateCollectionItem

    CertificateConfigs List<GetCertificatesCertificateCollectionItemCertificateConfig>
    CertificateProfileType string

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

    CertificateRevocationListDetails List<GetCertificatesCertificateCollectionItemCertificateRevocationListDetail>

    The details of the certificate revocation list (CRL).

    CertificateRules List<GetCertificatesCertificateCollectionItemCertificateRule>

    A list of rules that control how the certificate is used and managed.

    CompartmentId string

    A filter that returns only resources that match the given compartment OCID.

    ConfigType string

    The origin of the certificate.

    CurrentVersions List<GetCertificatesCertificateCollectionItemCurrentVersion>

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

    DefinedTags Dictionary<string, object>

    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

    A brief description of the certificate. Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    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"}

    Id string

    The OCID of the certificate.

    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    KeyAlgorithm string

    The algorithm used to create key pairs.

    LifecycleDetails string

    Additional information about the current lifecycle state of the certificate.

    Name string

    A filter that returns only resources that match the specified name.

    SignatureAlgorithm string

    The algorithm used to sign the public key certificate.

    State string

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    Subjects List<GetCertificatesCertificateCollectionItemSubject>

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

    TimeCreated string

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

    TimeOfDeletion string

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

    CertificateConfigs []GetCertificatesCertificateCollectionItemCertificateConfig
    CertificateProfileType string

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

    CertificateRevocationListDetails []GetCertificatesCertificateCollectionItemCertificateRevocationListDetail

    The details of the certificate revocation list (CRL).

    CertificateRules []GetCertificatesCertificateCollectionItemCertificateRule

    A list of rules that control how the certificate is used and managed.

    CompartmentId string

    A filter that returns only resources that match the given compartment OCID.

    ConfigType string

    The origin of the certificate.

    CurrentVersions []GetCertificatesCertificateCollectionItemCurrentVersion

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

    DefinedTags map[string]interface{}

    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

    A brief description of the certificate. Avoid entering confidential information.

    FreeformTags map[string]interface{}

    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"}

    Id string

    The OCID of the certificate.

    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    KeyAlgorithm string

    The algorithm used to create key pairs.

    LifecycleDetails string

    Additional information about the current lifecycle state of the certificate.

    Name string

    A filter that returns only resources that match the specified name.

    SignatureAlgorithm string

    The algorithm used to sign the public key certificate.

    State string

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    Subjects []GetCertificatesCertificateCollectionItemSubject

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

    TimeCreated string

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

    TimeOfDeletion string

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

    certificateConfigs List<GetCertificatesCertificateCollectionItemCertificateConfig>
    certificateProfileType String

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

    certificateRevocationListDetails List<GetCertificatesCertificateCollectionItemCertificateRevocationListDetail>

    The details of the certificate revocation list (CRL).

    certificateRules List<GetCertificatesCertificateCollectionItemCertificateRule>

    A list of rules that control how the certificate is used and managed.

    compartmentId String

    A filter that returns only resources that match the given compartment OCID.

    configType String

    The origin of the certificate.

    currentVersions List<GetCertificatesCertificateCollectionItemCurrentVersion>

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

    definedTags Map<String,Object>

    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

    A brief description of the certificate. Avoid entering confidential information.

    freeformTags Map<String,Object>

    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"}

    id String

    The OCID of the certificate.

    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    keyAlgorithm String

    The algorithm used to create key pairs.

    lifecycleDetails String

    Additional information about the current lifecycle state of the certificate.

    name String

    A filter that returns only resources that match the specified name.

    signatureAlgorithm String

    The algorithm used to sign the public key certificate.

    state String

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    subjects List<GetCertificatesCertificateCollectionItemSubject>

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

    timeCreated String

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

    timeOfDeletion String

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

    certificateConfigs GetCertificatesCertificateCollectionItemCertificateConfig[]
    certificateProfileType string

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

    certificateRevocationListDetails GetCertificatesCertificateCollectionItemCertificateRevocationListDetail[]

    The details of the certificate revocation list (CRL).

    certificateRules GetCertificatesCertificateCollectionItemCertificateRule[]

    A list of rules that control how the certificate is used and managed.

    compartmentId string

    A filter that returns only resources that match the given compartment OCID.

    configType string

    The origin of the certificate.

    currentVersions GetCertificatesCertificateCollectionItemCurrentVersion[]

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

    definedTags {[key: string]: any}

    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

    A brief description of the certificate. Avoid entering confidential information.

    freeformTags {[key: string]: any}

    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"}

    id string

    The OCID of the certificate.

    issuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    keyAlgorithm string

    The algorithm used to create key pairs.

    lifecycleDetails string

    Additional information about the current lifecycle state of the certificate.

    name string

    A filter that returns only resources that match the specified name.

    signatureAlgorithm string

    The algorithm used to sign the public key certificate.

    state string

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    subjects GetCertificatesCertificateCollectionItemSubject[]

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

    timeCreated string

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

    timeOfDeletion string

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

    certificate_configs GetCertificatesCertificateCollectionItemCertificateConfig]
    certificate_profile_type str

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

    certificate_revocation_list_details GetCertificatesCertificateCollectionItemCertificateRevocationListDetail]

    The details of the certificate revocation list (CRL).

    certificate_rules GetCertificatesCertificateCollectionItemCertificateRule]

    A list of rules that control how the certificate is used and managed.

    compartment_id str

    A filter that returns only resources that match the given compartment OCID.

    config_type str

    The origin of the certificate.

    current_versions GetCertificatesCertificateCollectionItemCurrentVersion]

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

    defined_tags Mapping[str, Any]

    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

    A brief description of the certificate. Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    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"}

    id str

    The OCID of the certificate.

    issuer_certificate_authority_id str

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    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 filter that returns only resources that match the specified name.

    signature_algorithm str

    The algorithm used to sign the public key certificate.

    state str

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    subjects GetCertificatesCertificateCollectionItemSubject]

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

    time_created str

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

    time_of_deletion str

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

    certificateConfigs List<Property Map>
    certificateProfileType String

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

    certificateRevocationListDetails List<Property Map>

    The details of the certificate revocation list (CRL).

    certificateRules List<Property Map>

    A list of rules that control how the certificate is used and managed.

    compartmentId String

    A filter that returns only resources that match the given compartment OCID.

    configType String

    The origin of the certificate.

    currentVersions List<Property Map>

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

    definedTags Map<Any>

    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

    A brief description of the certificate. Avoid entering confidential information.

    freeformTags Map<Any>

    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"}

    id String

    The OCID of the certificate.

    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    keyAlgorithm String

    The algorithm used to create key pairs.

    lifecycleDetails String

    Additional information about the current lifecycle state of the certificate.

    name String

    A filter that returns only resources that match the specified name.

    signatureAlgorithm String

    The algorithm used to sign the public key certificate.

    state String

    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    subjects List<Property Map>

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

    timeCreated String

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

    timeOfDeletion String

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

    GetCertificatesCertificateCollectionItemCertificateConfig

    CertificateProfileType string

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

    ConfigType string

    The origin of the certificate.

    CsrPem string
    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    KeyAlgorithm string

    The algorithm used to create key pairs.

    SignatureAlgorithm string

    The algorithm used to sign the public key certificate.

    SubjectAlternativeNames List<GetCertificatesCertificateCollectionItemCertificateConfigSubjectAlternativeName>

    A list of subject alternative names.

    Subjects List<GetCertificatesCertificateCollectionItemCertificateConfigSubject>

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

    Validities List<GetCertificatesCertificateCollectionItemCertificateConfigValidity>

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

    VersionName string

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    CertificateProfileType string

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

    ConfigType string

    The origin of the certificate.

    CsrPem string
    IssuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    KeyAlgorithm string

    The algorithm used to create key pairs.

    SignatureAlgorithm string

    The algorithm used to sign the public key certificate.

    SubjectAlternativeNames []GetCertificatesCertificateCollectionItemCertificateConfigSubjectAlternativeName

    A list of subject alternative names.

    Subjects []GetCertificatesCertificateCollectionItemCertificateConfigSubject

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

    Validities []GetCertificatesCertificateCollectionItemCertificateConfigValidity

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

    VersionName string

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    certificateProfileType String

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

    configType String

    The origin of the certificate.

    csrPem String
    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    keyAlgorithm String

    The algorithm used to create key pairs.

    signatureAlgorithm String

    The algorithm used to sign the public key certificate.

    subjectAlternativeNames List<GetCertificatesCertificateCollectionItemCertificateConfigSubjectAlternativeName>

    A list of subject alternative names.

    subjects List<GetCertificatesCertificateCollectionItemCertificateConfigSubject>

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

    validities List<GetCertificatesCertificateCollectionItemCertificateConfigValidity>

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

    versionName String

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    certificateProfileType string

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

    configType string

    The origin of the certificate.

    csrPem string
    issuerCertificateAuthorityId string

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    keyAlgorithm string

    The algorithm used to create key pairs.

    signatureAlgorithm string

    The algorithm used to sign the public key certificate.

    subjectAlternativeNames GetCertificatesCertificateCollectionItemCertificateConfigSubjectAlternativeName[]

    A list of subject alternative names.

    subjects GetCertificatesCertificateCollectionItemCertificateConfigSubject[]

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

    validities GetCertificatesCertificateCollectionItemCertificateConfigValidity[]

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

    versionName string

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    certificate_profile_type str

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

    config_type str

    The origin of the certificate.

    csr_pem str
    issuer_certificate_authority_id str

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    key_algorithm str

    The algorithm used to create key pairs.

    signature_algorithm str

    The algorithm used to sign the public key certificate.

    subject_alternative_names GetCertificatesCertificateCollectionItemCertificateConfigSubjectAlternativeName]

    A list of subject alternative names.

    subjects GetCertificatesCertificateCollectionItemCertificateConfigSubject]

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

    validities GetCertificatesCertificateCollectionItemCertificateConfigValidity]

    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.

    certificateProfileType String

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

    configType String

    The origin of the certificate.

    csrPem String
    issuerCertificateAuthorityId String

    The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.

    keyAlgorithm String

    The algorithm used to create key pairs.

    signatureAlgorithm String

    The algorithm used to sign the public key certificate.

    subjectAlternativeNames List<Property Map>

    A list of subject alternative names.

    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.

    validities List<Property Map>

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

    versionName String

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    GetCertificatesCertificateCollectionItemCertificateConfigSubject

    CommonName string

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

    Country string

    Country name (RDN C).

    DistinguishedNameQualifier string

    Distinguished name qualifier(RDN DNQ).

    DomainComponent string

    Domain component (RDN DC).

    GenerationQualifier string

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

    GivenName string

    Personal given name (RDN G or GN).

    Initials string

    Personal initials.

    LocalityName string

    Locality (RDN L).

    Organization string

    Organization (RDN O).

    OrganizationalUnit string

    Organizational unit (RDN OU).

    Pseudonym string

    Subject pseudonym.

    SerialNumber string

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

    StateOrProvinceName string

    State or province name (RDN ST or S).

    Street string

    Street address (RDN STREET).

    Surname string

    Personal surname (RDN SN).

    Title string

    Title (RDN T or TITLE).

    UserId string

    User ID (RDN UID).

    CommonName string

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

    Country string

    Country name (RDN C).

    DistinguishedNameQualifier string

    Distinguished name qualifier(RDN DNQ).

    DomainComponent string

    Domain component (RDN DC).

    GenerationQualifier string

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

    GivenName string

    Personal given name (RDN G or GN).

    Initials string

    Personal initials.

    LocalityName string

    Locality (RDN L).

    Organization string

    Organization (RDN O).

    OrganizationalUnit string

    Organizational unit (RDN OU).

    Pseudonym string

    Subject pseudonym.

    SerialNumber string

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

    StateOrProvinceName string

    State or province name (RDN ST or S).

    Street string

    Street address (RDN STREET).

    Surname string

    Personal surname (RDN SN).

    Title string

    Title (RDN T or TITLE).

    UserId string

    User ID (RDN UID).

    commonName String

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

    country String

    Country name (RDN C).

    distinguishedNameQualifier String

    Distinguished name qualifier(RDN DNQ).

    domainComponent String

    Domain component (RDN DC).

    generationQualifier String

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

    givenName String

    Personal given name (RDN G or GN).

    initials String

    Personal initials.

    localityName String

    Locality (RDN L).

    organization String

    Organization (RDN O).

    organizationalUnit String

    Organizational unit (RDN OU).

    pseudonym String

    Subject pseudonym.

    serialNumber String

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

    stateOrProvinceName String

    State or province name (RDN ST or S).

    street String

    Street address (RDN STREET).

    surname String

    Personal surname (RDN SN).

    title String

    Title (RDN T or TITLE).

    userId String

    User ID (RDN UID).

    commonName string

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

    country string

    Country name (RDN C).

    distinguishedNameQualifier string

    Distinguished name qualifier(RDN DNQ).

    domainComponent string

    Domain component (RDN DC).

    generationQualifier string

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

    givenName string

    Personal given name (RDN G or GN).

    initials string

    Personal initials.

    localityName string

    Locality (RDN L).

    organization string

    Organization (RDN O).

    organizationalUnit string

    Organizational unit (RDN OU).

    pseudonym string

    Subject pseudonym.

    serialNumber string

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

    stateOrProvinceName string

    State or province name (RDN ST or S).

    street string

    Street address (RDN STREET).

    surname string

    Personal surname (RDN SN).

    title string

    Title (RDN T or TITLE).

    userId string

    User ID (RDN UID).

    common_name str

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

    country str

    Country name (RDN C).

    distinguished_name_qualifier str

    Distinguished name qualifier(RDN DNQ).

    domain_component str

    Domain component (RDN DC).

    generation_qualifier str

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

    given_name str

    Personal given name (RDN G or GN).

    initials str

    Personal initials.

    locality_name str

    Locality (RDN L).

    organization str

    Organization (RDN O).

    organizational_unit str

    Organizational unit (RDN OU).

    pseudonym str

    Subject pseudonym.

    serial_number str

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

    state_or_province_name str

    State or province name (RDN ST or S).

    street str

    Street address (RDN STREET).

    surname str

    Personal surname (RDN SN).

    title str

    Title (RDN T or TITLE).

    user_id str

    User ID (RDN UID).

    commonName String

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

    country String

    Country name (RDN C).

    distinguishedNameQualifier String

    Distinguished name qualifier(RDN DNQ).

    domainComponent String

    Domain component (RDN DC).

    generationQualifier String

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

    givenName String

    Personal given name (RDN G or GN).

    initials String

    Personal initials.

    localityName String

    Locality (RDN L).

    organization String

    Organization (RDN O).

    organizationalUnit String

    Organizational unit (RDN OU).

    pseudonym String

    Subject pseudonym.

    serialNumber String

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

    stateOrProvinceName String

    State or province name (RDN ST or S).

    street String

    Street address (RDN STREET).

    surname String

    Personal surname (RDN SN).

    title String

    Title (RDN T or TITLE).

    userId String

    User ID (RDN UID).

    GetCertificatesCertificateCollectionItemCertificateConfigSubjectAlternativeName

    Type string

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

    Value string

    The subject alternative name.

    Type string

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

    Value string

    The subject alternative name.

    type String

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

    value String

    The subject alternative name.

    type string

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

    value string

    The subject alternative name.

    type str

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

    value str

    The subject alternative name.

    type String

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

    value String

    The subject alternative name.

    GetCertificatesCertificateCollectionItemCertificateConfigValidity

    TimeOfValidityNotAfter string

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

    TimeOfValidityNotBefore string

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

    TimeOfValidityNotAfter string

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

    TimeOfValidityNotBefore string

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

    timeOfValidityNotAfter String

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

    timeOfValidityNotBefore String

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

    timeOfValidityNotAfter string

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

    timeOfValidityNotBefore string

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

    time_of_validity_not_after str

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

    time_of_validity_not_before str

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

    timeOfValidityNotAfter String

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

    timeOfValidityNotBefore String

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

    GetCertificatesCertificateCollectionItemCertificateRevocationListDetail

    CustomFormattedUrls List<string>

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

    ObjectStorageConfigs List<GetCertificatesCertificateCollectionItemCertificateRevocationListDetailObjectStorageConfig>

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

    CustomFormattedUrls []string

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

    ObjectStorageConfigs []GetCertificatesCertificateCollectionItemCertificateRevocationListDetailObjectStorageConfig

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

    customFormattedUrls List<String>

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

    objectStorageConfigs List<GetCertificatesCertificateCollectionItemCertificateRevocationListDetailObjectStorageConfig>

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

    customFormattedUrls string[]

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

    objectStorageConfigs GetCertificatesCertificateCollectionItemCertificateRevocationListDetailObjectStorageConfig[]

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

    custom_formatted_urls Sequence[str]

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

    object_storage_configs GetCertificatesCertificateCollectionItemCertificateRevocationListDetailObjectStorageConfig]

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

    customFormattedUrls List<String>

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

    objectStorageConfigs List<Property Map>

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

    GetCertificatesCertificateCollectionItemCertificateRevocationListDetailObjectStorageConfig

    ObjectStorageBucketName string

    The name of the bucket where the CRL is stored.

    ObjectStorageNamespace string

    The tenancy of the bucket where the CRL is stored.

    ObjectStorageObjectNameFormat string

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

    ObjectStorageBucketName string

    The name of the bucket where the CRL is stored.

    ObjectStorageNamespace string

    The tenancy of the bucket where the CRL is stored.

    ObjectStorageObjectNameFormat string

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

    objectStorageBucketName String

    The name of the bucket where the CRL is stored.

    objectStorageNamespace String

    The tenancy of the bucket where the CRL is stored.

    objectStorageObjectNameFormat String

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

    objectStorageBucketName string

    The name of the bucket where the CRL is stored.

    objectStorageNamespace string

    The tenancy of the bucket where the CRL is stored.

    objectStorageObjectNameFormat string

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

    object_storage_bucket_name str

    The name of the bucket where the CRL is stored.

    object_storage_namespace str

    The tenancy of the bucket where the CRL is stored.

    object_storage_object_name_format str

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

    objectStorageBucketName String

    The name of the bucket where the CRL is stored.

    objectStorageNamespace String

    The tenancy of the bucket where the CRL is stored.

    objectStorageObjectNameFormat String

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

    GetCertificatesCertificateCollectionItemCertificateRule

    AdvanceRenewalPeriod string

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

    RenewalInterval string

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

    RuleType string

    The type of rule.

    AdvanceRenewalPeriod string

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

    RenewalInterval string

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

    RuleType string

    The type of rule.

    advanceRenewalPeriod String

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

    renewalInterval String

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

    ruleType String

    The type of rule.

    advanceRenewalPeriod string

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

    renewalInterval string

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

    ruleType string

    The type of rule.

    advance_renewal_period str

    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

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

    rule_type str

    The type of rule.

    advanceRenewalPeriod String

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

    renewalInterval String

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

    ruleType String

    The type of rule.

    GetCertificatesCertificateCollectionItemCurrentVersion

    CertificateId string

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    IssuerCaVersionNumber string

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

    RevocationStatuses List<GetCertificatesCertificateCollectionItemCurrentVersionRevocationStatus>

    The current revocation status of the entity.

    SerialNumber string

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

    Stages List<string>

    A list of rotation states for this certificate version.

    SubjectAlternativeNames List<GetCertificatesCertificateCollectionItemCurrentVersionSubjectAlternativeName>

    A list of subject alternative names.

    TimeCreated string

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

    TimeOfDeletion string

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

    Validities List<GetCertificatesCertificateCollectionItemCurrentVersionValidity>

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

    VersionName string

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    VersionNumber string

    The version number of the certificate.

    CertificateId string

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    IssuerCaVersionNumber string

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

    RevocationStatuses []GetCertificatesCertificateCollectionItemCurrentVersionRevocationStatus

    The current revocation status of the entity.

    SerialNumber string

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

    Stages []string

    A list of rotation states for this certificate version.

    SubjectAlternativeNames []GetCertificatesCertificateCollectionItemCurrentVersionSubjectAlternativeName

    A list of subject alternative names.

    TimeCreated string

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

    TimeOfDeletion string

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

    Validities []GetCertificatesCertificateCollectionItemCurrentVersionValidity

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

    VersionName string

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    VersionNumber string

    The version number of the certificate.

    certificateId String

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    issuerCaVersionNumber String

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

    revocationStatuses List<GetCertificatesCertificateCollectionItemCurrentVersionRevocationStatus>

    The current revocation status of the entity.

    serialNumber String

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

    stages List<String>

    A list of rotation states for this certificate version.

    subjectAlternativeNames List<GetCertificatesCertificateCollectionItemCurrentVersionSubjectAlternativeName>

    A list of subject alternative names.

    timeCreated String

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

    timeOfDeletion String

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

    validities List<GetCertificatesCertificateCollectionItemCurrentVersionValidity>

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

    versionName String

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    versionNumber String

    The version number of the certificate.

    certificateId string

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    issuerCaVersionNumber string

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

    revocationStatuses GetCertificatesCertificateCollectionItemCurrentVersionRevocationStatus[]

    The current revocation status of the entity.

    serialNumber string

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

    stages string[]

    A list of rotation states for this certificate version.

    subjectAlternativeNames GetCertificatesCertificateCollectionItemCurrentVersionSubjectAlternativeName[]

    A list of subject alternative names.

    timeCreated string

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

    timeOfDeletion string

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

    validities GetCertificatesCertificateCollectionItemCurrentVersionValidity[]

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

    versionName string

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    versionNumber string

    The version number of the certificate.

    certificate_id str

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    issuer_ca_version_number str

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

    revocation_statuses GetCertificatesCertificateCollectionItemCurrentVersionRevocationStatus]

    The current revocation status of the entity.

    serial_number str

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

    stages Sequence[str]

    A list of rotation states for this certificate version.

    subject_alternative_names GetCertificatesCertificateCollectionItemCurrentVersionSubjectAlternativeName]

    A list of subject alternative names.

    time_created str

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

    time_of_deletion str

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

    validities GetCertificatesCertificateCollectionItemCurrentVersionValidity]

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

    version_name str

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    version_number str

    The version number of the certificate.

    certificateId String

    The OCID of the certificate. If the parameter is set to null, the service lists all certificates.

    issuerCaVersionNumber String

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

    revocationStatuses List<Property Map>

    The current revocation status of the entity.

    serialNumber String

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

    stages List<String>

    A list of rotation states for this certificate version.

    subjectAlternativeNames List<Property Map>

    A list of subject alternative names.

    timeCreated String

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

    timeOfDeletion String

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

    validities List<Property Map>

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

    versionName String

    The name of the certificate version. When the value is not null, a name is unique across versions of a given certificate.

    versionNumber String

    The version number of the certificate.

    GetCertificatesCertificateCollectionItemCurrentVersionRevocationStatus

    RevocationReason string

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

    TimeOfRevocation string

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

    RevocationReason string

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

    TimeOfRevocation string

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

    revocationReason String

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

    timeOfRevocation String

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

    revocationReason string

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

    timeOfRevocation string

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

    revocation_reason str

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

    time_of_revocation str

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

    revocationReason String

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

    timeOfRevocation String

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

    GetCertificatesCertificateCollectionItemCurrentVersionSubjectAlternativeName

    Type string

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

    Value string

    The subject alternative name.

    Type string

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

    Value string

    The subject alternative name.

    type String

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

    value String

    The subject alternative name.

    type string

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

    value string

    The subject alternative name.

    type str

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

    value str

    The subject alternative name.

    type String

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

    value String

    The subject alternative name.

    GetCertificatesCertificateCollectionItemCurrentVersionValidity

    TimeOfValidityNotAfter string

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

    TimeOfValidityNotBefore string

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

    TimeOfValidityNotAfter string

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

    TimeOfValidityNotBefore string

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

    timeOfValidityNotAfter String

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

    timeOfValidityNotBefore String

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

    timeOfValidityNotAfter string

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

    timeOfValidityNotBefore string

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

    time_of_validity_not_after str

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

    time_of_validity_not_before str

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

    timeOfValidityNotAfter String

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

    timeOfValidityNotBefore String

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

    GetCertificatesCertificateCollectionItemSubject

    CommonName string

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

    Country string

    Country name (RDN C).

    DistinguishedNameQualifier string

    Distinguished name qualifier(RDN DNQ).

    DomainComponent string

    Domain component (RDN DC).

    GenerationQualifier string

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

    GivenName string

    Personal given name (RDN G or GN).

    Initials string

    Personal initials.

    LocalityName string

    Locality (RDN L).

    Organization string

    Organization (RDN O).

    OrganizationalUnit string

    Organizational unit (RDN OU).

    Pseudonym string

    Subject pseudonym.

    SerialNumber string

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

    StateOrProvinceName string

    State or province name (RDN ST or S).

    Street string

    Street address (RDN STREET).

    Surname string

    Personal surname (RDN SN).

    Title string

    Title (RDN T or TITLE).

    UserId string

    User ID (RDN UID).

    CommonName string

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

    Country string

    Country name (RDN C).

    DistinguishedNameQualifier string

    Distinguished name qualifier(RDN DNQ).

    DomainComponent string

    Domain component (RDN DC).

    GenerationQualifier string

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

    GivenName string

    Personal given name (RDN G or GN).

    Initials string

    Personal initials.

    LocalityName string

    Locality (RDN L).

    Organization string

    Organization (RDN O).

    OrganizationalUnit string

    Organizational unit (RDN OU).

    Pseudonym string

    Subject pseudonym.

    SerialNumber string

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

    StateOrProvinceName string

    State or province name (RDN ST or S).

    Street string

    Street address (RDN STREET).

    Surname string

    Personal surname (RDN SN).

    Title string

    Title (RDN T or TITLE).

    UserId string

    User ID (RDN UID).

    commonName String

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

    country String

    Country name (RDN C).

    distinguishedNameQualifier String

    Distinguished name qualifier(RDN DNQ).

    domainComponent String

    Domain component (RDN DC).

    generationQualifier String

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

    givenName String

    Personal given name (RDN G or GN).

    initials String

    Personal initials.

    localityName String

    Locality (RDN L).

    organization String

    Organization (RDN O).

    organizationalUnit String

    Organizational unit (RDN OU).

    pseudonym String

    Subject pseudonym.

    serialNumber String

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

    stateOrProvinceName String

    State or province name (RDN ST or S).

    street String

    Street address (RDN STREET).

    surname String

    Personal surname (RDN SN).

    title String

    Title (RDN T or TITLE).

    userId String

    User ID (RDN UID).

    commonName string

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

    country string

    Country name (RDN C).

    distinguishedNameQualifier string

    Distinguished name qualifier(RDN DNQ).

    domainComponent string

    Domain component (RDN DC).

    generationQualifier string

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

    givenName string

    Personal given name (RDN G or GN).

    initials string

    Personal initials.

    localityName string

    Locality (RDN L).

    organization string

    Organization (RDN O).

    organizationalUnit string

    Organizational unit (RDN OU).

    pseudonym string

    Subject pseudonym.

    serialNumber string

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

    stateOrProvinceName string

    State or province name (RDN ST or S).

    street string

    Street address (RDN STREET).

    surname string

    Personal surname (RDN SN).

    title string

    Title (RDN T or TITLE).

    userId string

    User ID (RDN UID).

    common_name str

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

    country str

    Country name (RDN C).

    distinguished_name_qualifier str

    Distinguished name qualifier(RDN DNQ).

    domain_component str

    Domain component (RDN DC).

    generation_qualifier str

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

    given_name str

    Personal given name (RDN G or GN).

    initials str

    Personal initials.

    locality_name str

    Locality (RDN L).

    organization str

    Organization (RDN O).

    organizational_unit str

    Organizational unit (RDN OU).

    pseudonym str

    Subject pseudonym.

    serial_number str

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

    state_or_province_name str

    State or province name (RDN ST or S).

    street str

    Street address (RDN STREET).

    surname str

    Personal surname (RDN SN).

    title str

    Title (RDN T or TITLE).

    user_id str

    User ID (RDN UID).

    commonName String

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

    country String

    Country name (RDN C).

    distinguishedNameQualifier String

    Distinguished name qualifier(RDN DNQ).

    domainComponent String

    Domain component (RDN DC).

    generationQualifier String

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

    givenName String

    Personal given name (RDN G or GN).

    initials String

    Personal initials.

    localityName String

    Locality (RDN L).

    organization String

    Organization (RDN O).

    organizationalUnit String

    Organizational unit (RDN OU).

    pseudonym String

    Subject pseudonym.

    serialNumber String

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

    stateOrProvinceName String

    State or province name (RDN ST or S).

    street String

    Street address (RDN STREET).

    surname String

    Personal surname (RDN SN).

    title String

    Title (RDN T or TITLE).

    userId String

    User ID (RDN UID).

    GetCertificatesFilter

    Name string

    A filter that returns only resources that match the specified name.

    Values List<string>
    Regex bool
    Name string

    A filter that returns only resources that match the specified name.

    Values []string
    Regex bool
    name String

    A filter that returns only resources that match the specified name.

    values List<String>
    regex Boolean
    name string

    A filter that returns only resources that match the specified name.

    values string[]
    regex boolean
    name str

    A filter that returns only resources that match the specified name.

    values Sequence[str]
    regex bool
    name String

    A filter that returns only resources that match the specified name.

    values List<String>
    regex Boolean

    Package Details

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

    This Pulumi package is based on the oci Terraform Provider.

    oci logo
    Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi