oci.CertificatesManagement.getCertificateAuthorities
Explore with Pulumi AI
This data source provides the list of Certificate Authorities in Oracle Cloud Infrastructure Certificates Management service.
Lists all certificate authorities (CAs) in the specified compartment.
Optionally, you can use the parameter FilterByCertificateAuthorityIdQueryParam
to limit the results to a single item that matches the specified CA.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCertificateAuthorities = oci.CertificatesManagement.getCertificateAuthorities({
certificateAuthorityId: testCertificateAuthority.id,
compartmentId: compartmentId,
issuerCertificateAuthorityId: testCertificateAuthority.id,
name: certificateAuthorityName,
state: certificateAuthorityState,
});
import pulumi
import pulumi_oci as oci
test_certificate_authorities = oci.CertificatesManagement.get_certificate_authorities(certificate_authority_id=test_certificate_authority["id"],
compartment_id=compartment_id,
issuer_certificate_authority_id=test_certificate_authority["id"],
name=certificate_authority_name,
state=certificate_authority_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.GetCertificateAuthorities(ctx, &certificatesmanagement.GetCertificateAuthoritiesArgs{
CertificateAuthorityId: pulumi.StringRef(testCertificateAuthority.Id),
CompartmentId: pulumi.StringRef(compartmentId),
IssuerCertificateAuthorityId: pulumi.StringRef(testCertificateAuthority.Id),
Name: pulumi.StringRef(certificateAuthorityName),
State: pulumi.StringRef(certificateAuthorityState),
}, 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 testCertificateAuthorities = Oci.CertificatesManagement.GetCertificateAuthorities.Invoke(new()
{
CertificateAuthorityId = testCertificateAuthority.Id,
CompartmentId = compartmentId,
IssuerCertificateAuthorityId = testCertificateAuthority.Id,
Name = certificateAuthorityName,
State = certificateAuthorityState,
});
});
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.GetCertificateAuthoritiesArgs;
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 testCertificateAuthorities = CertificatesManagementFunctions.getCertificateAuthorities(GetCertificateAuthoritiesArgs.builder()
.certificateAuthorityId(testCertificateAuthority.id())
.compartmentId(compartmentId)
.issuerCertificateAuthorityId(testCertificateAuthority.id())
.name(certificateAuthorityName)
.state(certificateAuthorityState)
.build());
}
}
variables:
testCertificateAuthorities:
fn::invoke:
Function: oci:CertificatesManagement:getCertificateAuthorities
Arguments:
certificateAuthorityId: ${testCertificateAuthority.id}
compartmentId: ${compartmentId}
issuerCertificateAuthorityId: ${testCertificateAuthority.id}
name: ${certificateAuthorityName}
state: ${certificateAuthorityState}
Using getCertificateAuthorities
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 getCertificateAuthorities(args: GetCertificateAuthoritiesArgs, opts?: InvokeOptions): Promise<GetCertificateAuthoritiesResult>
function getCertificateAuthoritiesOutput(args: GetCertificateAuthoritiesOutputArgs, opts?: InvokeOptions): Output<GetCertificateAuthoritiesResult>
def get_certificate_authorities(certificate_authority_id: Optional[str] = None,
compartment_id: Optional[str] = None,
filters: Optional[Sequence[_certificatesmanagement.GetCertificateAuthoritiesFilter]] = None,
issuer_certificate_authority_id: Optional[str] = None,
name: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCertificateAuthoritiesResult
def get_certificate_authorities_output(certificate_authority_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_certificatesmanagement.GetCertificateAuthoritiesFilterArgs]]]] = 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[GetCertificateAuthoritiesResult]
func GetCertificateAuthorities(ctx *Context, args *GetCertificateAuthoritiesArgs, opts ...InvokeOption) (*GetCertificateAuthoritiesResult, error)
func GetCertificateAuthoritiesOutput(ctx *Context, args *GetCertificateAuthoritiesOutputArgs, opts ...InvokeOption) GetCertificateAuthoritiesResultOutput
> Note: This function is named GetCertificateAuthorities
in the Go SDK.
public static class GetCertificateAuthorities
{
public static Task<GetCertificateAuthoritiesResult> InvokeAsync(GetCertificateAuthoritiesArgs args, InvokeOptions? opts = null)
public static Output<GetCertificateAuthoritiesResult> Invoke(GetCertificateAuthoritiesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCertificateAuthoritiesResult> getCertificateAuthorities(GetCertificateAuthoritiesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:CertificatesManagement/getCertificateAuthorities:getCertificateAuthorities
arguments:
# arguments dictionary
The following arguments are supported:
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Compartment
Id string - A filter that returns only resources that match the given compartment OCID.
- Filters
List<Get
Certificate Authorities Filter> - 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.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Compartment
Id string - A filter that returns only resources that match the given compartment OCID.
- Filters
[]Get
Certificate Authorities Filter - 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.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- compartment
Id String - A filter that returns only resources that match the given compartment OCID.
- filters
List<Get
Certificate Authorities Filter> - 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.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- compartment
Id string - A filter that returns only resources that match the given compartment OCID.
- filters
Get
Certificate Authorities Filter[] - 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.
- str
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- compartment_
id str - A filter that returns only resources that match the given compartment OCID.
- filters
Sequence[certificatesmanagement.
Get Certificate Authorities Filter] - 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.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- compartment
Id String - A filter that returns only resources that match the given compartment OCID.
- filters List<Property Map>
- 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.
getCertificateAuthorities Result
The following output properties are available:
- List<Get
Certificate Authorities Certificate Authority Collection> - The list of certificate_authority_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- string
- The OCID of the CA.
- Compartment
Id string - The OCID of the compartment under which the CA is created.
- Filters
List<Get
Certificate Authorities Filter> - string
- The OCID of the parent CA that issued this CA. If this is the root CA, then this value is null.
- Name string
- A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
- State string
- The current lifecycle state of the certificate authority.
- []Get
Certificate Authorities Certificate Authority Collection - The list of certificate_authority_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- string
- The OCID of the CA.
- Compartment
Id string - The OCID of the compartment under which the CA is created.
- Filters
[]Get
Certificate Authorities Filter - string
- The OCID of the parent CA that issued this CA. If this is the root CA, then this value is null.
- Name string
- A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
- State string
- The current lifecycle state of the certificate authority.
- List<Get
Certificate Authorities Certificate Authority Collection> - The list of certificate_authority_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- String
- The OCID of the CA.
- compartment
Id String - The OCID of the compartment under which the CA is created.
- filters
List<Get
Certificate Authorities Filter> - String
- The OCID of the parent CA that issued this CA. If this is the root CA, then this value is null.
- name String
- A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
- state String
- The current lifecycle state of the certificate authority.
- Get
Certificate Authorities Certificate Authority Collection[] - The list of certificate_authority_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- string
- The OCID of the CA.
- compartment
Id string - The OCID of the compartment under which the CA is created.
- filters
Get
Certificate Authorities Filter[] - string
- The OCID of the parent CA that issued this CA. If this is the root CA, then this value is null.
- name string
- A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
- state string
- The current lifecycle state of the certificate authority.
- Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection] - The list of certificate_authority_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- str
- The OCID of the CA.
- compartment_
id str - The OCID of the compartment under which the CA is created.
- filters
Sequence[certificatesmanagement.
Get Certificate Authorities Filter] - str
- The OCID of the parent CA that issued this CA. If this is the root CA, then this value is null.
- name str
- A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
- state str
- The current lifecycle state of the certificate authority.
- List<Property Map>
- The list of certificate_authority_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- String
- The OCID of the CA.
- compartment
Id String - The OCID of the compartment under which the CA is created.
- filters List<Property Map>
- String
- The OCID of the parent CA that issued this CA. If this is the root CA, then this value is null.
- name String
- A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
- state String
- The current lifecycle state of the certificate authority.
Supporting Types
GetCertificateAuthoritiesCertificateAuthorityCollection
GetCertificateAuthoritiesCertificateAuthorityCollectionItem
- List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config> - List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Rule> - An optional list of rules that control how the CA is used and managed.
- Certificate
Revocation List<GetList Details Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail> - The details of the certificate revocation list (CRL).
- Compartment
Id string - A filter that returns only resources that match the given compartment OCID.
- Config
Type string - The origin of the CA.
- Current
Versions List<GetCertificate Authorities Certificate Authority Collection Item Current Version> - The metadata details of the certificate authority (CA) version. This summary object does not contain the CA contents.
- Dictionary<string, object>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- A brief description of the CA.
- Dictionary<string, object>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- The OCID of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Kms
Key stringId - The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.
- Lifecycle
Details string - Additional information about the current CA lifecycle state.
- Name string
- A filter that returns only resources that match the specified name.
- Signing
Algorithm string - The algorithm used to sign public key certificates that the CA issues.
- State string
- A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
- Subjects
List<Get
Certificate Authorities Certificate Authority Collection Item Subject> - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- Time
Created string - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- []Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config - []Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Rule - An optional list of rules that control how the CA is used and managed.
- Certificate
Revocation []GetList Details Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail - The details of the certificate revocation list (CRL).
- Compartment
Id string - A filter that returns only resources that match the given compartment OCID.
- Config
Type string - The origin of the CA.
- Current
Versions []GetCertificate Authorities Certificate Authority Collection Item Current Version - The metadata details of the certificate authority (CA) version. This summary object does not contain the CA contents.
- map[string]interface{}
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- A brief description of the CA.
- map[string]interface{}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- The OCID of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Kms
Key stringId - The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.
- Lifecycle
Details string - Additional information about the current CA lifecycle state.
- Name string
- A filter that returns only resources that match the specified name.
- Signing
Algorithm string - The algorithm used to sign public key certificates that the CA issues.
- State string
- A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
- Subjects
[]Get
Certificate Authorities Certificate Authority Collection Item Subject - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- Time
Created string - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config> - List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Rule> - An optional list of rules that control how the CA is used and managed.
- certificate
Revocation List<GetList Details Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail> - The details of the certificate revocation list (CRL).
- compartment
Id String - A filter that returns only resources that match the given compartment OCID.
- config
Type String - The origin of the CA.
- current
Versions List<GetCertificate Authorities Certificate Authority Collection Item Current Version> - The metadata details of the certificate authority (CA) version. This summary object does not contain the CA contents.
- Map<String,Object>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- description String
- A brief description of the CA.
- Map<String,Object>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- The OCID of the CA.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- kms
Key StringId - The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.
- lifecycle
Details String - Additional information about the current CA lifecycle state.
- name String
- A filter that returns only resources that match the specified name.
- signing
Algorithm String - The algorithm used to sign public key certificates that the CA issues.
- state String
- A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
- subjects
List<Get
Certificate Authorities Certificate Authority Collection Item Subject> - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- time
Created String - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config[] - Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Rule[] - An optional list of rules that control how the CA is used and managed.
- certificate
Revocation GetList Details Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail[] - The details of the certificate revocation list (CRL).
- compartment
Id string - A filter that returns only resources that match the given compartment OCID.
- config
Type string - The origin of the CA.
- current
Versions GetCertificate Authorities Certificate Authority Collection Item Current Version[] - The metadata details of the certificate authority (CA) version. This summary object does not contain the CA contents.
- {[key: string]: any}
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- description string
- A brief description of the CA.
- {[key: string]: any}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- The OCID of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- kms
Key stringId - The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.
- lifecycle
Details string - Additional information about the current CA lifecycle state.
- name string
- A filter that returns only resources that match the specified name.
- signing
Algorithm string - The algorithm used to sign public key certificates that the CA issues.
- state string
- A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
- subjects
Get
Certificate Authorities Certificate Authority Collection Item Subject[] - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- time
Created string - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of stringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection Item Certificate Authority Config] - Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection Item Certificate Authority Rule] - An optional list of rules that control how the CA is used and managed.
- certificate_
revocation_ Sequence[certificatesmanagement.list_ details Get Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail] - The details of the certificate revocation list (CRL).
- compartment_
id str - A filter that returns only resources that match the given compartment OCID.
- config_
type str - The origin of the CA.
- current_
versions Sequence[certificatesmanagement.Get Certificate Authorities Certificate Authority Collection Item Current Version] - The metadata details of the certificate authority (CA) version. This summary object does not contain the CA contents.
- Mapping[str, Any]
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- description str
- A brief description of the CA.
- Mapping[str, Any]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- The OCID of the CA.
- str
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- kms_
key_ strid - The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.
- lifecycle_
details str - Additional information about the current CA lifecycle state.
- name str
- A filter that returns only resources that match the specified name.
- signing_
algorithm str - The algorithm used to sign public key certificates that the CA issues.
- state str
- A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
- subjects
Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection Item Subject] - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- time_
created str - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time_
of_ strdeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- List<Property Map>
- List<Property Map>
- An optional list of rules that control how the CA is used and managed.
- certificate
Revocation List<Property Map>List Details - The details of the certificate revocation list (CRL).
- compartment
Id String - A filter that returns only resources that match the given compartment OCID.
- config
Type String - The origin of the CA.
- current
Versions List<Property Map> - The metadata details of the certificate authority (CA) version. This summary object does not contain the CA contents.
- Map<Any>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- description String
- A brief description of the CA.
- Map<Any>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- The OCID of the CA.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- kms
Key StringId - The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.
- lifecycle
Details String - Additional information about the current CA lifecycle state.
- name String
- A filter that returns only resources that match the specified name.
- signing
Algorithm String - The algorithm used to sign public key certificates that the CA issues.
- 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.
- time
Created String - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCertificateAuthorityConfig
- Config
Type string - The origin of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Signing
Algorithm string - The algorithm used to sign public key certificates that the CA issues.
- Subjects
List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Subject> - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- Validities
List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Validity> - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- Version
Name string - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- Config
Type string - The origin of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Signing
Algorithm string - The algorithm used to sign public key certificates that the CA issues.
- Subjects
[]Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Subject - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- Validities
[]Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Validity - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- Version
Name string - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- config
Type String - The origin of the CA.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- signing
Algorithm String - The algorithm used to sign public key certificates that the CA issues.
- subjects
List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Subject> - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- validities
List<Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Validity> - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version
Name String - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- config
Type string - The origin of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- signing
Algorithm string - The algorithm used to sign public key certificates that the CA issues.
- subjects
Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Subject[] - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- validities
Get
Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Validity[] - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version
Name string - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- config_
type str - The origin of the CA.
- str
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- signing_
algorithm str - The algorithm used to sign public key certificates that the CA issues.
- subjects
Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Subject] - The subject of the certificate, which is a distinguished name that identifies the entity that owns the public key in the certificate.
- validities
Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection Item Certificate Authority Config Validity] - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version_
name str - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- config
Type String - The origin of the CA.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- signing
Algorithm String - The algorithm used to sign public key certificates that the CA issues.
- 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.
- version
Name String - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCertificateAuthorityConfigSubject
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or stringProvince Name - State or province name (RDN ST or S).
- Street string
- Street address (RDN STREET).
- Surname string
- Personal surname (RDN SN).
- Title string
- Title (RDN T or TITLE).
- User
Id string - User ID (RDN UID).
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or stringProvince Name - State or province name (RDN ST or S).
- Street string
- Street address (RDN STREET).
- Surname string
- Personal surname (RDN SN).
- Title string
- Title (RDN T or TITLE).
- User
Id string - User ID (RDN UID).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or StringProvince Name - State or province name (RDN ST or S).
- street String
- Street address (RDN STREET).
- surname String
- Personal surname (RDN SN).
- title String
- Title (RDN T or TITLE).
- user
Id String - User ID (RDN UID).
- common
Name string - Common name or fully-qualified domain name (RDN CN).
- country string
- Country name (RDN C).
- distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component string - Domain component (RDN DC).
- generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name string - Personal given name (RDN G or GN).
- initials string
- Personal initials.
- locality
Name string - Locality (RDN L).
- organization string
- Organization (RDN O).
- organizational
Unit string - Organizational unit (RDN OU).
- pseudonym string
- Subject pseudonym.
- serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or stringProvince Name - State or province name (RDN ST or S).
- street string
- Street address (RDN STREET).
- surname string
- Personal surname (RDN SN).
- title string
- Title (RDN T or TITLE).
- user
Id string - User ID (RDN UID).
- common_
name str - Common name or fully-qualified domain name (RDN CN).
- country str
- Country name (RDN C).
- distinguished_
name_ strqualifier - Distinguished name qualifier(RDN DNQ).
- domain_
component str - Domain component (RDN DC).
- generation_
qualifier str - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given_
name str - Personal given name (RDN G or GN).
- initials str
- Personal initials.
- locality_
name str - Locality (RDN L).
- organization str
- Organization (RDN O).
- organizational_
unit str - Organizational unit (RDN OU).
- pseudonym str
- Subject pseudonym.
- serial_
number str - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state_
or_ strprovince_ name - State or province name (RDN ST or S).
- street str
- Street address (RDN STREET).
- surname str
- Personal surname (RDN SN).
- title str
- Title (RDN T or TITLE).
- user_
id str - User ID (RDN UID).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or StringProvince Name - State or province name (RDN ST or S).
- street String
- Street address (RDN STREET).
- surname String
- Personal surname (RDN SN).
- title String
- Title (RDN T or TITLE).
- user
Id String - User ID (RDN UID).
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCertificateAuthorityConfigValidity
- Time
Of stringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of stringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of stringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time_
of_ strvalidity_ not_ after - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time_
of_ strvalidity_ not_ before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCertificateAuthorityRule
- string
- A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.
- Leaf
Certificate stringMax Validity Duration - A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.
- Rule
Type string - The type of rule, whether a renewal rule regarding when to renew the CA or an issuance expiry rule that governs how long the certificates and CAs issued by the CA are valid. (For internal use only) An internal issuance rule defines the number and type of certificates that the CA can issue.
- string
- A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.
- Leaf
Certificate stringMax Validity Duration - A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.
- Rule
Type string - The type of rule, whether a renewal rule regarding when to renew the CA or an issuance expiry rule that governs how long the certificates and CAs issued by the CA are valid. (For internal use only) An internal issuance rule defines the number and type of certificates that the CA can issue.
- String
- A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.
- leaf
Certificate StringMax Validity Duration - A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.
- rule
Type String - The type of rule, whether a renewal rule regarding when to renew the CA or an issuance expiry rule that governs how long the certificates and CAs issued by the CA are valid. (For internal use only) An internal issuance rule defines the number and type of certificates that the CA can issue.
- string
- A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.
- leaf
Certificate stringMax Validity Duration - A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.
- rule
Type string - The type of rule, whether a renewal rule regarding when to renew the CA or an issuance expiry rule that governs how long the certificates and CAs issued by the CA are valid. (For internal use only) An internal issuance rule defines the number and type of certificates that the CA can issue.
- str
- A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.
- leaf_
certificate_ strmax_ validity_ duration - A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.
- rule_
type str - The type of rule, whether a renewal rule regarding when to renew the CA or an issuance expiry rule that governs how long the certificates and CAs issued by the CA are valid. (For internal use only) An internal issuance rule defines the number and type of certificates that the CA can issue.
- String
- A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.
- leaf
Certificate StringMax Validity Duration - A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.
- rule
Type String - The type of rule, whether a renewal rule regarding when to renew the CA or an issuance expiry rule that governs how long the certificates and CAs issued by the CA are valid. (For internal use only) An internal issuance rule defines the number and type of certificates that the CA can issue.
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCertificateRevocationListDetail
- Custom
Formatted List<string>Urls - Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- Object
Storage List<GetConfigs Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail Object Storage Config> - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- Custom
Formatted []stringUrls - Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- Object
Storage []GetConfigs Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail Object Storage Config - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- custom
Formatted List<String>Urls - Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object
Storage List<GetConfigs Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail Object Storage Config> - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- custom
Formatted string[]Urls - Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object
Storage GetConfigs Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail Object Storage Config[] - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- custom_
formatted_ Sequence[str]urls - Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object_
storage_ Sequence[certificatesmanagement.configs Get Certificate Authorities Certificate Authority Collection Item Certificate Revocation List Detail Object Storage Config] - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
- custom
Formatted List<String>Urls - Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object
Storage List<Property Map>Configs - The details of the Object Storage bucket configured to store the certificate revocation list (CRL).
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCertificateRevocationListDetailObjectStorageConfig
- Object
Storage stringBucket Name - The name of the bucket where the CRL is stored.
- Object
Storage stringNamespace - The tenancy of the bucket where the CRL is stored.
- Object
Storage stringObject Name Format - The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- Object
Storage stringBucket Name - The name of the bucket where the CRL is stored.
- Object
Storage stringNamespace - The tenancy of the bucket where the CRL is stored.
- Object
Storage stringObject Name Format - The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object
Storage StringBucket Name - The name of the bucket where the CRL is stored.
- object
Storage StringNamespace - The tenancy of the bucket where the CRL is stored.
- object
Storage StringObject Name Format - The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object
Storage stringBucket Name - The name of the bucket where the CRL is stored.
- object
Storage stringNamespace - The tenancy of the bucket where the CRL is stored.
- object
Storage stringObject Name Format - The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object_
storage_ strbucket_ name - The name of the bucket where the CRL is stored.
- object_
storage_ strnamespace - The tenancy of the bucket where the CRL is stored.
- object_
storage_ strobject_ name_ format - The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
- object
Storage StringBucket Name - The name of the bucket where the CRL is stored.
- object
Storage StringNamespace - The tenancy of the bucket where the CRL is stored.
- object
Storage StringObject Name Format - The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCurrentVersion
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Issuer
Ca stringVersion Number - The version number of the issuing CA.
- Revocation
Statuses List<GetCertificate Authorities Certificate Authority Collection Item Current Version Revocation Status> - The current revocation status of the entity.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- Stages List<string>
- A list of rotation states for this CA version.
- Time
Created string - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Validities
List<Get
Certificate Authorities Certificate Authority Collection Item Current Version Validity> - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- Version
Name string - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- Version
Number string - The version number of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- Issuer
Ca stringVersion Number - The version number of the issuing CA.
- Revocation
Statuses []GetCertificate Authorities Certificate Authority Collection Item Current Version Revocation Status - The current revocation status of the entity.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- Stages []string
- A list of rotation states for this CA version.
- Time
Created string - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Validities
[]Get
Certificate Authorities Certificate Authority Collection Item Current Version Validity - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- Version
Name string - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- Version
Number string - The version number of the CA.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- issuer
Ca StringVersion Number - The version number of the issuing CA.
- revocation
Statuses List<GetCertificate Authorities Certificate Authority Collection Item Current Version Revocation Status> - The current revocation status of the entity.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- stages List<String>
- A list of rotation states for this CA version.
- time
Created String - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- validities
List<Get
Certificate Authorities Certificate Authority Collection Item Current Version Validity> - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version
Name String - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- version
Number String - The version number of the CA.
- string
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- issuer
Ca stringVersion Number - The version number of the issuing CA.
- revocation
Statuses GetCertificate Authorities Certificate Authority Collection Item Current Version Revocation Status[] - The current revocation status of the entity.
- serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- stages string[]
- A list of rotation states for this CA version.
- time
Created string - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of stringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- validities
Get
Certificate Authorities Certificate Authority Collection Item Current Version Validity[] - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version
Name string - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- version
Number string - The version number of the CA.
- str
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- issuer_
ca_ strversion_ number - The version number of the issuing CA.
- revocation_
statuses Sequence[certificatesmanagement.Get Certificate Authorities Certificate Authority Collection Item Current Version Revocation Status] - The current revocation status of the entity.
- serial_
number str - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- stages Sequence[str]
- A list of rotation states for this CA version.
- time_
created str - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time_
of_ strdeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- validities
Sequence[certificatesmanagement.
Get Certificate Authorities Certificate Authority Collection Item Current Version Validity] - An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version_
name str - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- version_
number str - The version number of the CA.
- String
- The OCID of the certificate authority (CA). If the parameter is set to null, the service lists all CAs.
- issuer
Ca StringVersion Number - The version number of the issuing CA.
- revocation
Statuses List<Property Map> - The current revocation status of the entity.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- stages List<String>
- A list of rotation states for this CA version.
- time
Created String - A property indicating when the CA was created, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringDeletion - An optional property indicating when to delete the CA version, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- validities List<Property Map>
- An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.
- version
Name String - The name of the CA version. When this value is not null, the name is unique across CA versions for a given CA.
- version
Number String - The version number of the CA.
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCurrentVersionRevocationStatus
- Revocation
Reason string - The reason the certificate or certificate authority (CA) was revoked.
- Time
Of stringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Revocation
Reason string - The reason the certificate or certificate authority (CA) was revoked.
- Time
Of stringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- revocation
Reason String - The reason the certificate or certificate authority (CA) was revoked.
- time
Of StringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- revocation
Reason string - The reason the certificate or certificate authority (CA) was revoked.
- time
Of stringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- revocation_
reason str - The reason the certificate or certificate authority (CA) was revoked.
- time_
of_ strrevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- revocation
Reason String - The reason the certificate or certificate authority (CA) was revoked.
- time
Of StringRevocation - The time when the entity was revoked, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
GetCertificateAuthoritiesCertificateAuthorityCollectionItemCurrentVersionValidity
- Time
Of stringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- Time
Of stringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of stringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of stringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time_
of_ strvalidity_ not_ after - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time_
of_ strvalidity_ not_ before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not After - The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
- time
Of StringValidity Not Before - The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example:
2019-04-03T21:10:29.600Z
GetCertificateAuthoritiesCertificateAuthorityCollectionItemSubject
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or stringProvince Name - State or province name (RDN ST or S).
- Street string
- Street address (RDN STREET).
- Surname string
- Personal surname (RDN SN).
- Title string
- Title (RDN T or TITLE).
- User
Id string - User ID (RDN UID).
- Common
Name string - Common name or fully-qualified domain name (RDN CN).
- Country string
- Country name (RDN C).
- Distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- Domain
Component string - Domain component (RDN DC).
- Generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- Given
Name string - Personal given name (RDN G or GN).
- Initials string
- Personal initials.
- Locality
Name string - Locality (RDN L).
- Organization string
- Organization (RDN O).
- Organizational
Unit string - Organizational unit (RDN OU).
- Pseudonym string
- Subject pseudonym.
- Serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- State
Or stringProvince Name - State or province name (RDN ST or S).
- Street string
- Street address (RDN STREET).
- Surname string
- Personal surname (RDN SN).
- Title string
- Title (RDN T or TITLE).
- User
Id string - User ID (RDN UID).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or StringProvince Name - State or province name (RDN ST or S).
- street String
- Street address (RDN STREET).
- surname String
- Personal surname (RDN SN).
- title String
- Title (RDN T or TITLE).
- user
Id String - User ID (RDN UID).
- common
Name string - Common name or fully-qualified domain name (RDN CN).
- country string
- Country name (RDN C).
- distinguished
Name stringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component string - Domain component (RDN DC).
- generation
Qualifier string - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name string - Personal given name (RDN G or GN).
- initials string
- Personal initials.
- locality
Name string - Locality (RDN L).
- organization string
- Organization (RDN O).
- organizational
Unit string - Organizational unit (RDN OU).
- pseudonym string
- Subject pseudonym.
- serial
Number string - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or stringProvince Name - State or province name (RDN ST or S).
- street string
- Street address (RDN STREET).
- surname string
- Personal surname (RDN SN).
- title string
- Title (RDN T or TITLE).
- user
Id string - User ID (RDN UID).
- common_
name str - Common name or fully-qualified domain name (RDN CN).
- country str
- Country name (RDN C).
- distinguished_
name_ strqualifier - Distinguished name qualifier(RDN DNQ).
- domain_
component str - Domain component (RDN DC).
- generation_
qualifier str - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given_
name str - Personal given name (RDN G or GN).
- initials str
- Personal initials.
- locality_
name str - Locality (RDN L).
- organization str
- Organization (RDN O).
- organizational_
unit str - Organizational unit (RDN OU).
- pseudonym str
- Subject pseudonym.
- serial_
number str - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state_
or_ strprovince_ name - State or province name (RDN ST or S).
- street str
- Street address (RDN STREET).
- surname str
- Personal surname (RDN SN).
- title str
- Title (RDN T or TITLE).
- user_
id str - User ID (RDN UID).
- common
Name String - Common name or fully-qualified domain name (RDN CN).
- country String
- Country name (RDN C).
- distinguished
Name StringQualifier - Distinguished name qualifier(RDN DNQ).
- domain
Component String - Domain component (RDN DC).
- generation
Qualifier String - Personal generational qualifier (for example, Sr., Jr. 3rd, or IV).
- given
Name String - Personal given name (RDN G or GN).
- initials String
- Personal initials.
- locality
Name String - Locality (RDN L).
- organization String
- Organization (RDN O).
- organizational
Unit String - Organizational unit (RDN OU).
- pseudonym String
- Subject pseudonym.
- serial
Number String - Unique subject identifier, which is not the same as the certificate serial number (RDN SERIALNUMBER).
- state
Or StringProvince Name - State or province name (RDN ST or S).
- street String
- Street address (RDN STREET).
- surname String
- Personal surname (RDN SN).
- title String
- Title (RDN T or TITLE).
- user
Id String - User ID (RDN UID).
GetCertificateAuthoritiesFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.