Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.Waas.getCertificates
Start a Neo task
Explain and create an oci.Waas.getCertificates resource
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
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCertificates = oci.Waas.getCertificates({
compartmentId: compartmentId,
displayNames: certificateDisplayNames,
ids: certificateIds,
states: certificateStates,
timeCreatedGreaterThanOrEqualTo: certificateTimeCreatedGreaterThanOrEqualTo,
timeCreatedLessThan: certificateTimeCreatedLessThan,
});
import pulumi
import pulumi_oci as oci
test_certificates = oci.Waas.get_certificates(compartment_id=compartment_id,
display_names=certificate_display_names,
ids=certificate_ids,
states=certificate_states,
time_created_greater_than_or_equal_to=certificate_time_created_greater_than_or_equal_to,
time_created_less_than=certificate_time_created_less_than)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/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: compartmentId,
DisplayNames: certificateDisplayNames,
Ids: certificateIds,
States: certificateStates,
TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(certificateTimeCreatedGreaterThanOrEqualTo),
TimeCreatedLessThan: pulumi.StringRef(certificateTimeCreatedLessThan),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testCertificates = Oci.Waas.GetCertificates.Invoke(new()
{
CompartmentId = compartmentId,
DisplayNames = certificateDisplayNames,
Ids = certificateIds,
States = certificateStates,
TimeCreatedGreaterThanOrEqualTo = certificateTimeCreatedGreaterThanOrEqualTo,
TimeCreatedLessThan = certificateTimeCreatedLessThan,
});
});
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(compartmentId)
.displayNames(certificateDisplayNames)
.ids(certificateIds)
.states(certificateStates)
.timeCreatedGreaterThanOrEqualTo(certificateTimeCreatedGreaterThanOrEqualTo)
.timeCreatedLessThan(certificateTimeCreatedLessThan)
.build());
}
}
variables:
testCertificates:
fn::invoke:
function: oci:Waas:getCertificates
arguments:
compartmentId: ${compartmentId}
displayNames: ${certificateDisplayNames}
ids: ${certificateIds}
states: ${certificateStates}
timeCreatedGreaterThanOrEqualTo: ${certificateTimeCreatedGreaterThanOrEqualTo}
timeCreatedLessThan: ${certificateTimeCreatedLessThan}
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[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[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)
public static Output<GetCertificatesResult> getCertificates(GetCertificatesArgs args, InvokeOptions options)
fn::invoke:
function: oci:Waas/getCertificates:getCertificates
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The OCID of the compartment. This number is generated when the compartment is created.
- Display
Names List<string> - Filter certificates using a list of display names.
- Filters
List<Get
Certificates Filter> - Ids List<string>
- Filter certificates using a list of certificates OCIDs.
- States List<string>
- Filter certificates using a list of lifecycle states.
- Time
Created stringGreater Than Or Equal To - A filter that matches certificates created on or after the specified date-time.
- Time
Created stringLess Than - A filter that matches certificates created before the specified date-time.
- Compartment
Id string - The OCID of the compartment. This number is generated when the compartment is created.
- Display
Names []string - Filter certificates using a list of display names.
- Filters
[]Get
Certificates Filter - Ids []string
- Filter certificates using a list of certificates OCIDs.
- States []string
- Filter certificates using a list of lifecycle states.
- Time
Created stringGreater Than Or Equal To - A filter that matches certificates created on or after the specified date-time.
- Time
Created stringLess Than - A filter that matches certificates created before the specified date-time.
- compartment
Id String - The OCID of the compartment. This number is generated when the compartment is created.
- display
Names List<String> - Filter certificates using a list of display names.
- filters
List<Get
Certificates Filter> - ids List<String>
- Filter certificates using a list of certificates OCIDs.
- states List<String>
- Filter certificates using a list of lifecycle states.
- time
Created StringGreater Than Or Equal To - A filter that matches certificates created on or after the specified date-time.
- time
Created StringLess Than - A filter that matches certificates created before the specified date-time.
- compartment
Id string - The OCID of the compartment. This number is generated when the compartment is created.
- display
Names string[] - Filter certificates using a list of display names.
- filters
Get
Certificates Filter[] - ids string[]
- Filter certificates using a list of certificates OCIDs.
- states string[]
- Filter certificates using a list of lifecycle states.
- time
Created stringGreater Than Or Equal To - A filter that matches certificates created on or after the specified date-time.
- time
Created stringLess Than - 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
Sequence[Get
Certificates Filter] - ids Sequence[str]
- Filter certificates using a list of certificates OCIDs.
- states Sequence[str]
- Filter certificates using a list of lifecycle states.
- time_
created_ strgreater_ than_ or_ equal_ to - A filter that matches certificates created on or after the specified date-time.
- time_
created_ strless_ than - A filter that matches certificates created before the specified date-time.
- compartment
Id String - The OCID of the compartment. This number is generated when the compartment is created.
- display
Names 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.
- time
Created StringGreater Than Or Equal To - A filter that matches certificates created on or after the specified date-time.
- time
Created StringLess Than - A filter that matches certificates created before the specified date-time.
getCertificates Result
The following output properties are available:
- Certificates
List<Get
Certificates Certificate> - The list of certificates.
- Compartment
Id string - The OCID of the SSL certificate's compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Names List<string> - Filters
List<Get
Certificates Filter> - Ids List<string>
- States List<string>
- Time
Created stringGreater Than Or Equal To - Time
Created stringLess Than
- Certificates
[]Get
Certificates Certificate - The list of certificates.
- Compartment
Id string - The OCID of the SSL certificate's compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Names []string - Filters
[]Get
Certificates Filter - Ids []string
- States []string
- Time
Created stringGreater Than Or Equal To - Time
Created stringLess Than
- certificates
List<Get
Certificates Certificate> - The list of certificates.
- compartment
Id String - The OCID of the SSL certificate's compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Names List<String> - filters
List<Get
Certificates Filter> - ids List<String>
- states List<String>
- time
Created StringGreater Than Or Equal To - time
Created StringLess Than
- certificates
Get
Certificates Certificate[] - The list of certificates.
- compartment
Id string - The OCID of the SSL certificate's compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Names string[] - filters
Get
Certificates Filter[] - ids string[]
- states string[]
- time
Created stringGreater Than Or Equal To - time
Created stringLess Than
- certificates
Sequence[Get
Certificates Certificate] - 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
Sequence[Get
Certificates Filter] - ids Sequence[str]
- states Sequence[str]
- time_
created_ strgreater_ than_ or_ equal_ to - time_
created_ strless_ than
- certificates List<Property Map>
- The list of certificates.
- compartment
Id String - The OCID of the SSL certificate's compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Names List<String> - filters List<Property Map>
- ids List<String>
- states List<String>
- time
Created StringGreater Than Or Equal To - time
Created StringLess Than
Supporting Types
GetCertificatesCertificate
- Certificate
Data string - The data of the SSL certificate.
- Compartment
Id string - The OCID of the compartment. This number is generated when the compartment is created.
- Dictionary<string, string>
- 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 string - The user-friendly name of the SSL certificate.
- Extensions
List<Get
Certificates Certificate Extension> - Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.
- Dictionary<string, string>
- 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.
- Is
Trust boolVerification Disabled - This indicates whether trust verification was disabled during the creation of SSL certificate. If
trueSSL certificate trust verification was disabled and this SSL certificate is most likely self-signed. - Issued
By string - Issuer
Names List<GetCertificates Certificate Issuer Name> - The issuer of the certificate.
- Private
Key stringData - Public
Key List<GetInfos Certificates Certificate Public Key Info> - Information about the public key and the algorithm used by the public key.
- Serial
Number string - A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.
- Signature
Algorithm 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.
- Subject
Names List<GetCertificates Certificate Subject Name> - The entity to be secured by the certificate.
- Time
Created string - The date and time the certificate was created, expressed in RFC 3339 timestamp format.
- Time
Not stringValid After - The date and time the certificate will expire, expressed in RFC 3339 timestamp format.
- Time
Not stringValid Before - The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.
- Version int
- The version of the encoded certificate.
- Certificate
Data string - The data of the SSL certificate.
- Compartment
Id string - The OCID of the compartment. This number is generated when the compartment is created.
- map[string]string
- 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 string - The user-friendly name of the SSL certificate.
- Extensions
[]Get
Certificates Certificate Extension - Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.
- map[string]string
- 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.
- Is
Trust boolVerification Disabled - This indicates whether trust verification was disabled during the creation of SSL certificate. If
trueSSL certificate trust verification was disabled and this SSL certificate is most likely self-signed. - Issued
By string - Issuer
Names []GetCertificates Certificate Issuer Name - The issuer of the certificate.
- Private
Key stringData - Public
Key []GetInfos Certificates Certificate Public Key Info - Information about the public key and the algorithm used by the public key.
- Serial
Number string - A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.
- Signature
Algorithm 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.
- Subject
Names []GetCertificates Certificate Subject Name - The entity to be secured by the certificate.
- Time
Created string - The date and time the certificate was created, expressed in RFC 3339 timestamp format.
- Time
Not stringValid After - The date and time the certificate will expire, expressed in RFC 3339 timestamp format.
- Time
Not stringValid Before - The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.
- Version int
- The version of the encoded certificate.
- certificate
Data String - The data of the SSL certificate.
- compartment
Id String - The OCID of the compartment. This number is generated when the compartment is created.
- Map<String,String>
- 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 String - The user-friendly name of the SSL certificate.
- extensions
List<Get
Certificates Certificate Extension> - Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.
- Map<String,String>
- 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.
- is
Trust BooleanVerification Disabled - This indicates whether trust verification was disabled during the creation of SSL certificate. If
trueSSL certificate trust verification was disabled and this SSL certificate is most likely self-signed. - issued
By String - issuer
Names List<GetCertificates Certificate Issuer Name> - The issuer of the certificate.
- private
Key StringData - public
Key List<GetInfos Certificates Certificate Public Key Info> - Information about the public key and the algorithm used by the public key.
- serial
Number String - A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.
- signature
Algorithm 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.
- subject
Names List<GetCertificates Certificate Subject Name> - The entity to be secured by the certificate.
- time
Created String - The date and time the certificate was created, expressed in RFC 3339 timestamp format.
- time
Not StringValid After - The date and time the certificate will expire, expressed in RFC 3339 timestamp format.
- time
Not StringValid Before - The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.
- version Integer
- The version of the encoded certificate.
- certificate
Data string - The data of the SSL certificate.
- compartment
Id string - The OCID of the compartment. This number is generated when the compartment is created.
- {[key: string]: string}
- 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 string - The user-friendly name of the SSL certificate.
- extensions
Get
Certificates Certificate Extension[] - Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.
- {[key: string]: string}
- 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.
- is
Trust booleanVerification Disabled - This indicates whether trust verification was disabled during the creation of SSL certificate. If
trueSSL certificate trust verification was disabled and this SSL certificate is most likely self-signed. - issued
By string - issuer
Names GetCertificates Certificate Issuer Name[] - The issuer of the certificate.
- private
Key stringData - public
Key GetInfos Certificates Certificate Public Key Info[] - Information about the public key and the algorithm used by the public key.
- serial
Number string - A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.
- signature
Algorithm 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.
- subject
Names GetCertificates Certificate Subject Name[] - The entity to be secured by the certificate.
- time
Created string - The date and time the certificate was created, expressed in RFC 3339 timestamp format.
- time
Not stringValid After - The date and time the certificate will expire, expressed in RFC 3339 timestamp format.
- time
Not stringValid Before - 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.
- Mapping[str, str]
- 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
Sequence[Get
Certificates Certificate Extension] - Additional attributes associated with users or public keys for managing relationships between Certificate Authorities.
- Mapping[str, str]
- 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_ boolverification_ disabled - This indicates whether trust verification was disabled during the creation of SSL certificate. If
trueSSL certificate trust verification was disabled and this SSL certificate is most likely self-signed. - issued_
by str - issuer_
names Sequence[GetCertificates Certificate Issuer Name] - The issuer of the certificate.
- private_
key_ strdata - public_
key_ Sequence[Getinfos Certificates Certificate Public Key Info] - 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 Sequence[GetCertificates Certificate Subject Name] - 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_ strvalid_ after - The date and time the certificate will expire, expressed in RFC 3339 timestamp format.
- time_
not_ strvalid_ before - The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.
- version int
- The version of the encoded certificate.
- certificate
Data String - The data of the SSL certificate.
- compartment
Id String - The OCID of the compartment. This number is generated when the compartment is created.
- Map<String>
- 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 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.
- Map<String>
- 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.
- is
Trust BooleanVerification Disabled - This indicates whether trust verification was disabled during the creation of SSL certificate. If
trueSSL certificate trust verification was disabled and this SSL certificate is most likely self-signed. - issued
By String - issuer
Names List<Property Map> - The issuer of the certificate.
- private
Key StringData - public
Key List<Property Map>Infos - Information about the public key and the algorithm used by the public key.
- serial
Number String - A unique, positive integer assigned by the Certificate Authority (CA). The issuer name and serial number identify a unique certificate.
- signature
Algorithm 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.
- subject
Names List<Property Map> - The entity to be secured by the certificate.
- time
Created String - The date and time the certificate was created, expressed in RFC 3339 timestamp format.
- time
Not StringValid After - The date and time the certificate will expire, expressed in RFC 3339 timestamp format.
- time
Not StringValid Before - The date and time the certificate will become valid, expressed in RFC 3339 timestamp format.
- version Number
- The version of the encoded certificate.
GetCertificatesCertificateExtension
- Is
Critical 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.
- Is
Critical 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.
- is
Critical 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 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.
- is
Critical 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
- Common
Name 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.
- Email
Address string - The email address of the server's administrator.
- Locality string
- The city in which the organization is located.
- Organization string
- The organization name.
- Organizational
Unit string - The field to differentiate between divisions within an organization.
- State
Province string - The province where the organization is located.
- Common
Name 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.
- Email
Address string - The email address of the server's administrator.
- Locality string
- The city in which the organization is located.
- Organization string
- The organization name.
- Organizational
Unit string - The field to differentiate between divisions within an organization.
- State
Province string - The province where the organization is located.
- common
Name 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.
- email
Address String - The email address of the server's administrator.
- locality String
- The city in which the organization is located.
- organization String
- The organization name.
- organizational
Unit String - The field to differentiate between divisions within an organization.
- state
Province String - The province where the organization is located.
- common
Name 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.
- email
Address string - The email address of the server's administrator.
- locality string
- The city in which the organization is located.
- organization string
- The organization name.
- organizational
Unit string - The field to differentiate between divisions within an organization.
- state
Province 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.
- common
Name 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.
- email
Address String - The email address of the server's administrator.
- locality String
- The city in which the organization is located.
- organization String
- The organization name.
- organizational
Unit String - The field to differentiate between divisions within an organization.
- state
Province String - The province where the organization is located.
GetCertificatesCertificatePublicKeyInfo
GetCertificatesCertificateSubjectName
- Common
Name 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.
- Email
Address string - The email address of the server's administrator.
- Locality string
- The city in which the organization is located.
- Organization string
- The organization name.
- Organizational
Unit string - The field to differentiate between divisions within an organization.
- State
Province string - The province where the organization is located.
- Common
Name 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.
- Email
Address string - The email address of the server's administrator.
- Locality string
- The city in which the organization is located.
- Organization string
- The organization name.
- Organizational
Unit string - The field to differentiate between divisions within an organization.
- State
Province string - The province where the organization is located.
- common
Name 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.
- email
Address String - The email address of the server's administrator.
- locality String
- The city in which the organization is located.
- organization String
- The organization name.
- organizational
Unit String - The field to differentiate between divisions within an organization.
- state
Province String - The province where the organization is located.
- common
Name 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.
- email
Address string - The email address of the server's administrator.
- locality string
- The city in which the organization is located.
- organization string
- The organization name.
- organizational
Unit string - The field to differentiate between divisions within an organization.
- state
Province 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.
- common
Name 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.
- email
Address String - The email address of the server's administrator.
- locality String
- The city in which the organization is located.
- organization String
- The organization name.
- organizational
Unit String - The field to differentiate between divisions within an organization.
- state
Province String - The province where the organization is located.
GetCertificatesFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
