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

oci.Waas.getCertificates

This data source provides the list of Certificates in Oracle Cloud Infrastructure Web Application Acceleration and Security service.

Gets a list of SSL certificates that can be used in a WAAS policy.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testCertificates = Oci.Waas.GetCertificates.Invoke(new()
    {
        CompartmentId = @var.Compartment_id,
        DisplayNames = @var.Certificate_display_names,
        Ids = @var.Certificate_ids,
        States = @var.Certificate_states,
        TimeCreatedGreaterThanOrEqualTo = @var.Certificate_time_created_greater_than_or_equal_to,
        TimeCreatedLessThan = @var.Certificate_time_created_less_than,
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/Waas"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Waas.GetCertificates(ctx, &waas.GetCertificatesArgs{
			CompartmentId:                   _var.Compartment_id,
			DisplayNames:                    _var.Certificate_display_names,
			Ids:                             _var.Certificate_ids,
			States:                          _var.Certificate_states,
			TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(_var.Certificate_time_created_greater_than_or_equal_to),
			TimeCreatedLessThan:             pulumi.StringRef(_var.Certificate_time_created_less_than),
		}, 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.Waas.WaasFunctions;
import com.pulumi.oci.Waas.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 = WaasFunctions.getCertificates(GetCertificatesArgs.builder()
            .compartmentId(var_.compartment_id())
            .displayNames(var_.certificate_display_names())
            .ids(var_.certificate_ids())
            .states(var_.certificate_states())
            .timeCreatedGreaterThanOrEqualTo(var_.certificate_time_created_greater_than_or_equal_to())
            .timeCreatedLessThan(var_.certificate_time_created_less_than())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_certificates = oci.Waas.get_certificates(compartment_id=var["compartment_id"],
    display_names=var["certificate_display_names"],
    ids=var["certificate_ids"],
    states=var["certificate_states"],
    time_created_greater_than_or_equal_to=var["certificate_time_created_greater_than_or_equal_to"],
    time_created_less_than=var["certificate_time_created_less_than"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testCertificates = oci.Waas.getCertificates({
    compartmentId: _var.compartment_id,
    displayNames: _var.certificate_display_names,
    ids: _var.certificate_ids,
    states: _var.certificate_states,
    timeCreatedGreaterThanOrEqualTo: _var.certificate_time_created_greater_than_or_equal_to,
    timeCreatedLessThan: _var.certificate_time_created_less_than,
});
variables:
  testCertificates:
    fn::invoke:
      Function: oci:Waas:getCertificates
      Arguments:
        compartmentId: ${var.compartment_id}
        displayNames: ${var.certificate_display_names}
        ids: ${var.certificate_ids}
        states: ${var.certificate_states}
        timeCreatedGreaterThanOrEqualTo: ${var.certificate_time_created_greater_than_or_equal_to}
        timeCreatedLessThan: ${var.certificate_time_created_less_than}

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(compartment_id: Optional[str] = None,
                     display_names: Optional[Sequence[str]] = None,
                     filters: Optional[Sequence[_waas.GetCertificatesFilter]] = None,
                     ids: Optional[Sequence[str]] = None,
                     states: Optional[Sequence[str]] = None,
                     time_created_greater_than_or_equal_to: Optional[str] = None,
                     time_created_less_than: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetCertificatesResult
def get_certificates_output(compartment_id: Optional[pulumi.Input[str]] = None,
                     display_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[_waas.GetCertificatesFilterArgs]]]] = None,
                     ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                     time_created_less_than: 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:Waas/getCertificates:getCertificates
  arguments:
    # arguments dictionary

The following arguments are supported:

CompartmentId string

The OCID of the compartment. This number is generated when the compartment is created.

DisplayNames List<string>

Filter certificates using a list of display names.

Filters List<GetCertificatesFilter>
Ids List<string>

Filter certificates using a list of certificates OCIDs.

States List<string>

Filter certificates using a list of lifecycle states.

TimeCreatedGreaterThanOrEqualTo string

A filter that matches certificates created on or after the specified date-time.

TimeCreatedLessThan string

A filter that matches certificates created before the specified date-time.

CompartmentId string

The OCID of the compartment. This number is generated when the compartment is created.

DisplayNames []string

Filter certificates using a list of display names.

Filters []GetCertificatesFilter
Ids []string

Filter certificates using a list of certificates OCIDs.

States []string

Filter certificates using a list of lifecycle states.

TimeCreatedGreaterThanOrEqualTo string

A filter that matches certificates created on or after the specified date-time.

TimeCreatedLessThan string

A filter that matches certificates created before the specified date-time.

compartmentId String

The OCID of the compartment. This number is generated when the compartment is created.

displayNames List<String>

Filter certificates using a list of display names.

filters List<GetCertificatesFilter>
ids List<String>

Filter certificates using a list of certificates OCIDs.

states List<String>

Filter certificates using a list of lifecycle states.

timeCreatedGreaterThanOrEqualTo String

A filter that matches certificates created on or after the specified date-time.

timeCreatedLessThan String

A filter that matches certificates created before the specified date-time.

compartmentId string

The OCID of the compartment. This number is generated when the compartment is created.

displayNames string[]

Filter certificates using a list of display names.

filters GetCertificatesFilter[]
ids string[]

Filter certificates using a list of certificates OCIDs.

states string[]

Filter certificates using a list of lifecycle states.

timeCreatedGreaterThanOrEqualTo string

A filter that matches certificates created on or after the specified date-time.

timeCreatedLessThan string

A filter that matches certificates created before the specified date-time.

compartment_id str

The OCID of the compartment. This number is generated when the compartment is created.

display_names Sequence[str]

Filter certificates using a list of display names.

filters GetCertificatesFilter]
ids Sequence[str]

Filter certificates using a list of certificates OCIDs.

states Sequence[str]

Filter certificates using a list of lifecycle states.

time_created_greater_than_or_equal_to str

A filter that matches certificates created on or after the specified date-time.

time_created_less_than str

A filter that matches certificates created before the specified date-time.

compartmentId String

The OCID of the compartment. This number is generated when the compartment is created.

displayNames List<String>

Filter certificates using a list of display names.

filters List<Property Map>
ids List<String>

Filter certificates using a list of certificates OCIDs.

states List<String>

Filter certificates using a list of lifecycle states.

timeCreatedGreaterThanOrEqualTo String

A filter that matches certificates created on or after the specified date-time.

timeCreatedLessThan String

A filter that matches certificates created before the specified date-time.

getCertificates Result

The following output properties are available:

Certificates List<GetCertificatesCertificate>

The list of certificates.

CompartmentId string

The OCID of the SSL certificate's compartment.

Id string

The provider-assigned unique ID for this managed resource.

DisplayNames List<string>
Filters List<GetCertificatesFilter>
Ids List<string>
States List<string>
TimeCreatedGreaterThanOrEqualTo string
TimeCreatedLessThan string
Certificates []GetCertificatesCertificate

The list of certificates.

CompartmentId string

The OCID of the SSL certificate's compartment.

Id string

The provider-assigned unique ID for this managed resource.

DisplayNames []string
Filters []GetCertificatesFilter
Ids []string
States []string
TimeCreatedGreaterThanOrEqualTo string
TimeCreatedLessThan string
certificates List<GetCertificatesCertificate>

The list of certificates.

compartmentId String

The OCID of the SSL certificate's compartment.

id String

The provider-assigned unique ID for this managed resource.

displayNames List<String>
filters List<GetCertificatesFilter>
ids List<String>
states List<String>
timeCreatedGreaterThanOrEqualTo String
timeCreatedLessThan String
certificates GetCertificatesCertificate[]

The list of certificates.

compartmentId string

The OCID of the SSL certificate's compartment.

id string

The provider-assigned unique ID for this managed resource.

displayNames string[]
filters GetCertificatesFilter[]
ids string[]
states string[]
timeCreatedGreaterThanOrEqualTo string
timeCreatedLessThan string
certificates GetCertificatesCertificate]

The list of certificates.

compartment_id str

The OCID of the SSL certificate's compartment.

id str

The provider-assigned unique ID for this managed resource.

display_names Sequence[str]
filters GetCertificatesFilter]
ids Sequence[str]
states Sequence[str]
time_created_greater_than_or_equal_to str
time_created_less_than str
certificates List<Property Map>

The list of certificates.

compartmentId String

The OCID of the SSL certificate's compartment.

id String

The provider-assigned unique ID for this managed resource.

displayNames List<String>
filters List<Property Map>
ids List<String>
states List<String>
timeCreatedGreaterThanOrEqualTo String
timeCreatedLessThan String

Supporting Types

GetCertificatesCertificate

CertificateData string

The data of the SSL certificate.

CompartmentId string

The OCID of the compartment. This number is generated when the compartment is created.

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

DisplayName string

The user-friendly name of the SSL certificate.

Extensions List<GetCertificatesCertificateExtension>

Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.

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 SSL certificate.

IsTrustVerificationDisabled bool

This indicates whether trust verification was disabled during the creation of SSL certificate. If true SSL certificate trust verification was disabled and this SSL certificate is most likely self-signed.

IssuedBy string
IssuerNames List<GetCertificatesCertificateIssuerName>

The issuer of the certificate.

PrivateKeyData string
PublicKeyInfos List<GetCertificatesCertificatePublicKeyInfo>

Information about the public key and the algorithm used by the public key.

SerialNumber string

A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.

SignatureAlgorithm string

The identifier for the cryptographic algorithm used by the Certificate Authority (CA) to sign this certificate.

State string

The current lifecycle state of the SSL certificate.

SubjectNames List<GetCertificatesCertificateSubjectName>

The entity to be secured by the certificate.

TimeCreated string

The date and time the certificate was created, expressed in RFC 3339 timestamp format.

TimeNotValidAfter string

The date and time the certificate will expire, expressed in RFC 3339 timestamp format.

TimeNotValidBefore string

The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.

Version int

The version of the encoded certificate.

CertificateData string

The data of the SSL certificate.

CompartmentId string

The OCID of the compartment. This number is generated when the compartment is created.

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

DisplayName string

The user-friendly name of the SSL certificate.

Extensions []GetCertificatesCertificateExtension

Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.

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 SSL certificate.

IsTrustVerificationDisabled bool

This indicates whether trust verification was disabled during the creation of SSL certificate. If true SSL certificate trust verification was disabled and this SSL certificate is most likely self-signed.

IssuedBy string
IssuerNames []GetCertificatesCertificateIssuerName

The issuer of the certificate.

PrivateKeyData string
PublicKeyInfos []GetCertificatesCertificatePublicKeyInfo

Information about the public key and the algorithm used by the public key.

SerialNumber string

A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.

SignatureAlgorithm string

The identifier for the cryptographic algorithm used by the Certificate Authority (CA) to sign this certificate.

State string

The current lifecycle state of the SSL certificate.

SubjectNames []GetCertificatesCertificateSubjectName

The entity to be secured by the certificate.

TimeCreated string

The date and time the certificate was created, expressed in RFC 3339 timestamp format.

TimeNotValidAfter string

The date and time the certificate will expire, expressed in RFC 3339 timestamp format.

TimeNotValidBefore string

The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.

Version int

The version of the encoded certificate.

certificateData String

The data of the SSL certificate.

compartmentId String

The OCID of the compartment. This number is generated when the compartment is created.

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

displayName String

The user-friendly name of the SSL certificate.

extensions List<GetCertificatesCertificateExtension>

Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.

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 SSL certificate.

isTrustVerificationDisabled Boolean

This indicates whether trust verification was disabled during the creation of SSL certificate. If true SSL certificate trust verification was disabled and this SSL certificate is most likely self-signed.

issuedBy String
issuerNames List<GetCertificatesCertificateIssuerName>

The issuer of the certificate.

privateKeyData String
publicKeyInfos List<GetCertificatesCertificatePublicKeyInfo>

Information about the public key and the algorithm used by the public key.

serialNumber String

A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.

signatureAlgorithm String

The identifier for the cryptographic algorithm used by the Certificate Authority (CA) to sign this certificate.

state String

The current lifecycle state of the SSL certificate.

subjectNames List<GetCertificatesCertificateSubjectName>

The entity to be secured by the certificate.

timeCreated String

The date and time the certificate was created, expressed in RFC 3339 timestamp format.

timeNotValidAfter String

The date and time the certificate will expire, expressed in RFC 3339 timestamp format.

timeNotValidBefore String

The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.

version Integer

The version of the encoded certificate.

certificateData string

The data of the SSL certificate.

compartmentId string

The OCID of the compartment. This number is generated when the compartment is created.

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

displayName string

The user-friendly name of the SSL certificate.

extensions GetCertificatesCertificateExtension[]

Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.

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 SSL certificate.

isTrustVerificationDisabled boolean

This indicates whether trust verification was disabled during the creation of SSL certificate. If true SSL certificate trust verification was disabled and this SSL certificate is most likely self-signed.

issuedBy string
issuerNames GetCertificatesCertificateIssuerName[]

The issuer of the certificate.

privateKeyData string
publicKeyInfos GetCertificatesCertificatePublicKeyInfo[]

Information about the public key and the algorithm used by the public key.

serialNumber string

A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.

signatureAlgorithm string

The identifier for the cryptographic algorithm used by the Certificate Authority (CA) to sign this certificate.

state string

The current lifecycle state of the SSL certificate.

subjectNames GetCertificatesCertificateSubjectName[]

The entity to be secured by the certificate.

timeCreated string

The date and time the certificate was created, expressed in RFC 3339 timestamp format.

timeNotValidAfter string

The date and time the certificate will expire, expressed in RFC 3339 timestamp format.

timeNotValidBefore string

The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.

version number

The version of the encoded certificate.

certificate_data str

The data of the SSL certificate.

compartment_id str

The OCID of the compartment. This number is generated when the compartment is created.

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

display_name str

The user-friendly name of the SSL certificate.

extensions GetCertificatesCertificateExtension]

Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.

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 SSL certificate.

is_trust_verification_disabled bool

This indicates whether trust verification was disabled during the creation of SSL certificate. If true SSL certificate trust verification was disabled and this SSL certificate is most likely self-signed.

issued_by str
issuer_names GetCertificatesCertificateIssuerName]

The issuer of the certificate.

private_key_data str
public_key_infos GetCertificatesCertificatePublicKeyInfo]

Information about the public key and the algorithm used by the public key.

serial_number str

A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.

signature_algorithm str

The identifier for the cryptographic algorithm used by the Certificate Authority (CA) to sign this certificate.

state str

The current lifecycle state of the SSL certificate.

subject_names GetCertificatesCertificateSubjectName]

The entity to be secured by the certificate.

time_created str

The date and time the certificate was created, expressed in RFC 3339 timestamp format.

time_not_valid_after str

The date and time the certificate will expire, expressed in RFC 3339 timestamp format.

time_not_valid_before str

The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.

version int

The version of the encoded certificate.

certificateData String

The data of the SSL certificate.

compartmentId String

The OCID of the compartment. This number is generated when the compartment is created.

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

displayName String

The user-friendly name of the SSL certificate.

extensions List<Property Map>

Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.

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 SSL certificate.

isTrustVerificationDisabled Boolean

This indicates whether trust verification was disabled during the creation of SSL certificate. If true SSL certificate trust verification was disabled and this SSL certificate is most likely self-signed.

issuedBy String
issuerNames List<Property Map>

The issuer of the certificate.

privateKeyData String
publicKeyInfos List<Property Map>

Information about the public key and the algorithm used by the public key.

serialNumber String

A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.

signatureAlgorithm String

The identifier for the cryptographic algorithm used by the Certificate Authority (CA) to sign this certificate.

state String

The current lifecycle state of the SSL certificate.

subjectNames List<Property Map>

The entity to be secured by the certificate.

timeCreated String

The date and time the certificate was created, expressed in RFC 3339 timestamp format.

timeNotValidAfter String

The date and time the certificate will expire, expressed in RFC 3339 timestamp format.

timeNotValidBefore String

The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.

version Number

The version of the encoded certificate.

GetCertificatesCertificateExtension

IsCritical bool

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

Name string

The certificate extension name.

Value string

The certificate extension value.

IsCritical bool

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

Name string

The certificate extension name.

Value string

The certificate extension value.

isCritical Boolean

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

name String

The certificate extension name.

value String

The certificate extension value.

isCritical boolean

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

name string

The certificate extension name.

value string

The certificate extension value.

is_critical bool

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

name str

The certificate extension name.

value str

The certificate extension value.

isCritical Boolean

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

name String

The certificate extension name.

value String

The certificate extension value.

GetCertificatesCertificateIssuerName

CommonName string

The fully qualified domain name used for DNS lookups of the server.

Country string

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

EmailAddress string

The email address of the server's administrator.

Locality string

The city in which the organization is located.

Organization string

The organization name.

OrganizationalUnit string

The field to differentiate between divisions within an organization.

StateProvince string

The province where the organization is located.

CommonName string

The fully qualified domain name used for DNS lookups of the server.

Country string

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

EmailAddress string

The email address of the server's administrator.

Locality string

The city in which the organization is located.

Organization string

The organization name.

OrganizationalUnit string

The field to differentiate between divisions within an organization.

StateProvince string

The province where the organization is located.

commonName String

The fully qualified domain name used for DNS lookups of the server.

country String

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

emailAddress String

The email address of the server's administrator.

locality String

The city in which the organization is located.

organization String

The organization name.

organizationalUnit String

The field to differentiate between divisions within an organization.

stateProvince String

The province where the organization is located.

commonName string

The fully qualified domain name used for DNS lookups of the server.

country string

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

emailAddress string

The email address of the server's administrator.

locality string

The city in which the organization is located.

organization string

The organization name.

organizationalUnit string

The field to differentiate between divisions within an organization.

stateProvince string

The province where the organization is located.

common_name str

The fully qualified domain name used for DNS lookups of the server.

country str

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

email_address str

The email address of the server's administrator.

locality str

The city in which the organization is located.

organization str

The organization name.

organizational_unit str

The field to differentiate between divisions within an organization.

state_province str

The province where the organization is located.

commonName String

The fully qualified domain name used for DNS lookups of the server.

country String

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

emailAddress String

The email address of the server's administrator.

locality String

The city in which the organization is located.

organization String

The organization name.

organizationalUnit String

The field to differentiate between divisions within an organization.

stateProvince String

The province where the organization is located.

GetCertificatesCertificatePublicKeyInfo

Algorithm string

The algorithm identifier and parameters for the public key.

Exponent int

The private key exponent.

KeySize int

The number of bits in a key used by a cryptographic algorithm.

Algorithm string

The algorithm identifier and parameters for the public key.

Exponent int

The private key exponent.

KeySize int

The number of bits in a key used by a cryptographic algorithm.

algorithm String

The algorithm identifier and parameters for the public key.

exponent Integer

The private key exponent.

keySize Integer

The number of bits in a key used by a cryptographic algorithm.

algorithm string

The algorithm identifier and parameters for the public key.

exponent number

The private key exponent.

keySize number

The number of bits in a key used by a cryptographic algorithm.

algorithm str

The algorithm identifier and parameters for the public key.

exponent int

The private key exponent.

key_size int

The number of bits in a key used by a cryptographic algorithm.

algorithm String

The algorithm identifier and parameters for the public key.

exponent Number

The private key exponent.

keySize Number

The number of bits in a key used by a cryptographic algorithm.

GetCertificatesCertificateSubjectName

CommonName string

The fully qualified domain name used for DNS lookups of the server.

Country string

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

EmailAddress string

The email address of the server's administrator.

Locality string

The city in which the organization is located.

Organization string

The organization name.

OrganizationalUnit string

The field to differentiate between divisions within an organization.

StateProvince string

The province where the organization is located.

CommonName string

The fully qualified domain name used for DNS lookups of the server.

Country string

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

EmailAddress string

The email address of the server's administrator.

Locality string

The city in which the organization is located.

Organization string

The organization name.

OrganizationalUnit string

The field to differentiate between divisions within an organization.

StateProvince string

The province where the organization is located.

commonName String

The fully qualified domain name used for DNS lookups of the server.

country String

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

emailAddress String

The email address of the server's administrator.

locality String

The city in which the organization is located.

organization String

The organization name.

organizationalUnit String

The field to differentiate between divisions within an organization.

stateProvince String

The province where the organization is located.

commonName string

The fully qualified domain name used for DNS lookups of the server.

country string

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

emailAddress string

The email address of the server's administrator.

locality string

The city in which the organization is located.

organization string

The organization name.

organizationalUnit string

The field to differentiate between divisions within an organization.

stateProvince string

The province where the organization is located.

common_name str

The fully qualified domain name used for DNS lookups of the server.

country str

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

email_address str

The email address of the server's administrator.

locality str

The city in which the organization is located.

organization str

The organization name.

organizational_unit str

The field to differentiate between divisions within an organization.

state_province str

The province where the organization is located.

commonName String

The fully qualified domain name used for DNS lookups of the server.

country String

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

emailAddress String

The email address of the server's administrator.

locality String

The city in which the organization is located.

organization String

The organization name.

organizationalUnit String

The field to differentiate between divisions within an organization.

stateProvince String

The province where the organization is located.

GetCertificatesFilter

Name string

The certificate extension name.

Values List<string>
Regex bool
Name string

The certificate extension name.

Values []string
Regex bool
name String

The certificate extension name.

values List<String>
regex Boolean
name string

The certificate extension name.

values string[]
regex boolean
name str

The certificate extension name.

values Sequence[str]
regex bool
name String

The certificate extension 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.