1. Packages
  2. Avi Provider
  3. API Docs
  4. getSslkeyandcertificate
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.getSslkeyandcertificate

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “AVI: avi.Sslkeyandcertificate” sidebar_current: “docs-avi-datasource-sslkeyandcertificate” description: |- Get information of Avi SSLKeyAndCertificate.

    avi.Sslkeyandcertificate

    This data source is used to to get avi.Sslkeyandcertificate objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooSslkeyandcertificate = avi.getSslkeyandcertificate({
        name: "foo",
        uuid: "sslkeyandcertificate-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_sslkeyandcertificate = avi.get_sslkeyandcertificate(name="foo",
        uuid="sslkeyandcertificate-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.LookupSslkeyandcertificate(ctx, &avi.LookupSslkeyandcertificateArgs{
    			Name: pulumi.StringRef("foo"),
    			Uuid: pulumi.StringRef("sslkeyandcertificate-f9cf6b3e-a411-436f-95e2-2982ba2b217b"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var fooSslkeyandcertificate = Avi.GetSslkeyandcertificate.Invoke(new()
        {
            Name = "foo",
            Uuid = "sslkeyandcertificate-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.AviFunctions;
    import com.pulumi.avi.inputs.GetSslkeyandcertificateArgs;
    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 fooSslkeyandcertificate = AviFunctions.getSslkeyandcertificate(GetSslkeyandcertificateArgs.builder()
                .name("foo")
                .uuid("sslkeyandcertificate-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooSslkeyandcertificate:
        fn::invoke:
          function: avi:getSslkeyandcertificate
          arguments:
            name: foo
            uuid: sslkeyandcertificate-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getSslkeyandcertificate

    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 getSslkeyandcertificate(args: GetSslkeyandcertificateArgs, opts?: InvokeOptions): Promise<GetSslkeyandcertificateResult>
    function getSslkeyandcertificateOutput(args: GetSslkeyandcertificateOutputArgs, opts?: InvokeOptions): Output<GetSslkeyandcertificateResult>
    def get_sslkeyandcertificate(id: Optional[str] = None,
                                 name: Optional[str] = None,
                                 tenant_ref: Optional[str] = None,
                                 uuid: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetSslkeyandcertificateResult
    def get_sslkeyandcertificate_output(id: Optional[pulumi.Input[str]] = None,
                                 name: Optional[pulumi.Input[str]] = None,
                                 tenant_ref: Optional[pulumi.Input[str]] = None,
                                 uuid: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetSslkeyandcertificateResult]
    func LookupSslkeyandcertificate(ctx *Context, args *LookupSslkeyandcertificateArgs, opts ...InvokeOption) (*LookupSslkeyandcertificateResult, error)
    func LookupSslkeyandcertificateOutput(ctx *Context, args *LookupSslkeyandcertificateOutputArgs, opts ...InvokeOption) LookupSslkeyandcertificateResultOutput

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

    public static class GetSslkeyandcertificate 
    {
        public static Task<GetSslkeyandcertificateResult> InvokeAsync(GetSslkeyandcertificateArgs args, InvokeOptions? opts = null)
        public static Output<GetSslkeyandcertificateResult> Invoke(GetSslkeyandcertificateInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSslkeyandcertificateResult> getSslkeyandcertificate(GetSslkeyandcertificateArgs args, InvokeOptions options)
    public static Output<GetSslkeyandcertificateResult> getSslkeyandcertificate(GetSslkeyandcertificateArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getSslkeyandcertificate:getSslkeyandcertificate
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Search SSLKeyAndCertificate by name.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Search SSLKeyAndCertificate by uuid.
    Id string
    Name string
    Search SSLKeyAndCertificate by name.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Search SSLKeyAndCertificate by uuid.
    id String
    name String
    Search SSLKeyAndCertificate by name.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Search SSLKeyAndCertificate by uuid.
    id string
    name string
    Search SSLKeyAndCertificate by name.
    tenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Search SSLKeyAndCertificate by uuid.
    id str
    name str
    Search SSLKeyAndCertificate by name.
    tenant_ref str
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Search SSLKeyAndCertificate by uuid.
    id String
    name String
    Search SSLKeyAndCertificate by name.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Search SSLKeyAndCertificate by uuid.

    getSslkeyandcertificate Result

    The following output properties are available:

    CaCerts List<GetSslkeyandcertificateCaCert>
    Ca certificates in certificate chain. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CertificateBase64 string
    States if the certificate is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CertificateManagementProfileRef string
    It is a reference to an object of type certificatemanagementprofile. Allowed with any value in enterprise, enterprise with cloud services edition.
    Certificates List<GetSslkeyandcertificateCertificate>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<GetSslkeyandcertificateConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CreatedBy string
    Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DynamicParams List<GetSslkeyandcertificateDynamicParam>
    Dynamic parameters needed for certificate management profile. Allowed with any value in enterprise, enterprise with cloud services edition.
    EnableOcspStapling string
    Enables ocsp stapling. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- false), basic (allowed values- false) edition.
    EnckeyBase64 string
    Encrypted private key corresponding to the private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnckeyName string
    Name of the encrypted private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Format string
    Format of the key/certificate file. Enum options - SSL_PEM, SSL_PKCS12. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HardwaresecuritymodulegroupRef string
    It is a reference to an object of type hardwaresecuritymodulegroup. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    ImportKeyToHsm string
    Flag to enable private key import to hsm while importing the certificate. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    IsFederated string
    It specifies whether the object has to be replicated to the gslb followers. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Key string
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    KeyBase64 string
    States if the private key is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    KeyParams List<GetSslkeyandcertificateKeyParam>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    KeyPassphrase string
    Passphrase used to encrypt the private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers List<GetSslkeyandcertificateMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    OcspConfigs List<GetSslkeyandcertificateOcspConfig>
    Configuration related to ocsp. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OcspErrorStatus string
    Error reported during ocsp status query. Enum options - OCSP_ERR_CERTSTATUS_GOOD, OCSP_ERR_CERTSTATUS_REVOKED, OCSP_ERR_CERTSTATUS_UNKNOWN, OCSP_ERR_CERTSTATUS_SERVERFAIL_ERR, OCSP_ERR_CERTSTATUS_JOBDB, OCSP_ERR_CERTSTATUS_DISABLED, OCSP_ERR_CERTSTATUS_GETCERT, OCSP_ERR_CERTSTATUS_NONVSCERT, OCSP_ERR_CERTSTATUS_SELFSIGNED, OCSP_ERR_CERTSTATUS_CERTFINISH, OCSP_ERR_CERTSTATUS_CACERT, OCSP_ERR_CERTSTATUS_REQUEST, OCSP_ERR_CERTSTATUS_ISSUER_REVOKED, OCSP_ERR_CERTSTATUS_PARSE_CERT, OCSP_ERR_CERTSTATUS_HTTP_REQ, OCSP_ERR_CERTSTATUS_URL_LIST, OCSP_ERR_CERTSTATUS_HTTP_SEND, OCSP_ERR_CERTSTATUS_HTTP_RECV, OCSP_ERR_CERTSTATUS_HTTP_RESP. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- ocsp_err_certstatus_disabled), basic (allowed values- ocsp_err_certstatus_disabled) edition.
    OcspResponderUrlListFromCerts List<string>
    This is an internal field to store the ocsp responder urls contained in the certificate. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OcspResponseInfos List<GetSslkeyandcertificateOcspResponseInfo>
    Information related to ocsp response. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    Enum options - ssl_certificate_finished, ssl_certificate_pending. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Type string
    Enum options - ssl_certificate_type_virtualservice, ssl_certificate_type_system, ssl_certificate_type_ca. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CaCerts []GetSslkeyandcertificateCaCert
    Ca certificates in certificate chain. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CertificateBase64 string
    States if the certificate is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CertificateManagementProfileRef string
    It is a reference to an object of type certificatemanagementprofile. Allowed with any value in enterprise, enterprise with cloud services edition.
    Certificates []GetSslkeyandcertificateCertificate
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []GetSslkeyandcertificateConfigpbAttribute
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CreatedBy string
    Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DynamicParams []GetSslkeyandcertificateDynamicParam
    Dynamic parameters needed for certificate management profile. Allowed with any value in enterprise, enterprise with cloud services edition.
    EnableOcspStapling string
    Enables ocsp stapling. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- false), basic (allowed values- false) edition.
    EnckeyBase64 string
    Encrypted private key corresponding to the private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    EnckeyName string
    Name of the encrypted private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Format string
    Format of the key/certificate file. Enum options - SSL_PEM, SSL_PKCS12. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    HardwaresecuritymodulegroupRef string
    It is a reference to an object of type hardwaresecuritymodulegroup. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    ImportKeyToHsm string
    Flag to enable private key import to hsm while importing the certificate. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    IsFederated string
    It specifies whether the object has to be replicated to the gslb followers. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Key string
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    KeyBase64 string
    States if the private key is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    KeyParams []GetSslkeyandcertificateKeyParam
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    KeyPassphrase string
    Passphrase used to encrypt the private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Markers []GetSslkeyandcertificateMarker
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    OcspConfigs []GetSslkeyandcertificateOcspConfig
    Configuration related to ocsp. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OcspErrorStatus string
    Error reported during ocsp status query. Enum options - OCSP_ERR_CERTSTATUS_GOOD, OCSP_ERR_CERTSTATUS_REVOKED, OCSP_ERR_CERTSTATUS_UNKNOWN, OCSP_ERR_CERTSTATUS_SERVERFAIL_ERR, OCSP_ERR_CERTSTATUS_JOBDB, OCSP_ERR_CERTSTATUS_DISABLED, OCSP_ERR_CERTSTATUS_GETCERT, OCSP_ERR_CERTSTATUS_NONVSCERT, OCSP_ERR_CERTSTATUS_SELFSIGNED, OCSP_ERR_CERTSTATUS_CERTFINISH, OCSP_ERR_CERTSTATUS_CACERT, OCSP_ERR_CERTSTATUS_REQUEST, OCSP_ERR_CERTSTATUS_ISSUER_REVOKED, OCSP_ERR_CERTSTATUS_PARSE_CERT, OCSP_ERR_CERTSTATUS_HTTP_REQ, OCSP_ERR_CERTSTATUS_URL_LIST, OCSP_ERR_CERTSTATUS_HTTP_SEND, OCSP_ERR_CERTSTATUS_HTTP_RECV, OCSP_ERR_CERTSTATUS_HTTP_RESP. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- ocsp_err_certstatus_disabled), basic (allowed values- ocsp_err_certstatus_disabled) edition.
    OcspResponderUrlListFromCerts []string
    This is an internal field to store the ocsp responder urls contained in the certificate. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OcspResponseInfos []GetSslkeyandcertificateOcspResponseInfo
    Information related to ocsp response. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    Enum options - ssl_certificate_finished, ssl_certificate_pending. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Type string
    Enum options - ssl_certificate_type_virtualservice, ssl_certificate_type_system, ssl_certificate_type_ca. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    caCerts List<GetSslkeyandcertificateCaCert>
    Ca certificates in certificate chain. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateBase64 String
    States if the certificate is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateManagementProfileRef String
    It is a reference to an object of type certificatemanagementprofile. Allowed with any value in enterprise, enterprise with cloud services edition.
    certificates List<GetSslkeyandcertificateCertificate>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<GetSslkeyandcertificateConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy String
    Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dynamicParams List<GetSslkeyandcertificateDynamicParam>
    Dynamic parameters needed for certificate management profile. Allowed with any value in enterprise, enterprise with cloud services edition.
    enableOcspStapling String
    Enables ocsp stapling. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- false), basic (allowed values- false) edition.
    enckeyBase64 String
    Encrypted private key corresponding to the private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enckeyName String
    Name of the encrypted private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    format String
    Format of the key/certificate file. Enum options - SSL_PEM, SSL_PKCS12. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupRef String
    It is a reference to an object of type hardwaresecuritymodulegroup. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    importKeyToHsm String
    Flag to enable private key import to hsm while importing the certificate. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    isFederated String
    It specifies whether the object has to be replicated to the gslb followers. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    key String
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyBase64 String
    States if the private key is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyParams List<GetSslkeyandcertificateKeyParam>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyPassphrase String
    Passphrase used to encrypt the private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<GetSslkeyandcertificateMarker>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ocspConfigs List<GetSslkeyandcertificateOcspConfig>
    Configuration related to ocsp. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocspErrorStatus String
    Error reported during ocsp status query. Enum options - OCSP_ERR_CERTSTATUS_GOOD, OCSP_ERR_CERTSTATUS_REVOKED, OCSP_ERR_CERTSTATUS_UNKNOWN, OCSP_ERR_CERTSTATUS_SERVERFAIL_ERR, OCSP_ERR_CERTSTATUS_JOBDB, OCSP_ERR_CERTSTATUS_DISABLED, OCSP_ERR_CERTSTATUS_GETCERT, OCSP_ERR_CERTSTATUS_NONVSCERT, OCSP_ERR_CERTSTATUS_SELFSIGNED, OCSP_ERR_CERTSTATUS_CERTFINISH, OCSP_ERR_CERTSTATUS_CACERT, OCSP_ERR_CERTSTATUS_REQUEST, OCSP_ERR_CERTSTATUS_ISSUER_REVOKED, OCSP_ERR_CERTSTATUS_PARSE_CERT, OCSP_ERR_CERTSTATUS_HTTP_REQ, OCSP_ERR_CERTSTATUS_URL_LIST, OCSP_ERR_CERTSTATUS_HTTP_SEND, OCSP_ERR_CERTSTATUS_HTTP_RECV, OCSP_ERR_CERTSTATUS_HTTP_RESP. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- ocsp_err_certstatus_disabled), basic (allowed values- ocsp_err_certstatus_disabled) edition.
    ocspResponderUrlListFromCerts List<String>
    This is an internal field to store the ocsp responder urls contained in the certificate. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocspResponseInfos List<GetSslkeyandcertificateOcspResponseInfo>
    Information related to ocsp response. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    Enum options - ssl_certificate_finished, ssl_certificate_pending. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type String
    Enum options - ssl_certificate_type_virtualservice, ssl_certificate_type_system, ssl_certificate_type_ca. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    caCerts GetSslkeyandcertificateCaCert[]
    Ca certificates in certificate chain. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateBase64 string
    States if the certificate is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateManagementProfileRef string
    It is a reference to an object of type certificatemanagementprofile. Allowed with any value in enterprise, enterprise with cloud services edition.
    certificates GetSslkeyandcertificateCertificate[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes GetSslkeyandcertificateConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy string
    Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dynamicParams GetSslkeyandcertificateDynamicParam[]
    Dynamic parameters needed for certificate management profile. Allowed with any value in enterprise, enterprise with cloud services edition.
    enableOcspStapling string
    Enables ocsp stapling. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- false), basic (allowed values- false) edition.
    enckeyBase64 string
    Encrypted private key corresponding to the private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enckeyName string
    Name of the encrypted private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    format string
    Format of the key/certificate file. Enum options - SSL_PEM, SSL_PKCS12. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupRef string
    It is a reference to an object of type hardwaresecuritymodulegroup. Allowed with any value in enterprise, enterprise with cloud services edition.
    id string
    importKeyToHsm string
    Flag to enable private key import to hsm while importing the certificate. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    isFederated string
    It specifies whether the object has to be replicated to the gslb followers. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    key string
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyBase64 string
    States if the private key is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyParams GetSslkeyandcertificateKeyParam[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyPassphrase string
    Passphrase used to encrypt the private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers GetSslkeyandcertificateMarker[]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ocspConfigs GetSslkeyandcertificateOcspConfig[]
    Configuration related to ocsp. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocspErrorStatus string
    Error reported during ocsp status query. Enum options - OCSP_ERR_CERTSTATUS_GOOD, OCSP_ERR_CERTSTATUS_REVOKED, OCSP_ERR_CERTSTATUS_UNKNOWN, OCSP_ERR_CERTSTATUS_SERVERFAIL_ERR, OCSP_ERR_CERTSTATUS_JOBDB, OCSP_ERR_CERTSTATUS_DISABLED, OCSP_ERR_CERTSTATUS_GETCERT, OCSP_ERR_CERTSTATUS_NONVSCERT, OCSP_ERR_CERTSTATUS_SELFSIGNED, OCSP_ERR_CERTSTATUS_CERTFINISH, OCSP_ERR_CERTSTATUS_CACERT, OCSP_ERR_CERTSTATUS_REQUEST, OCSP_ERR_CERTSTATUS_ISSUER_REVOKED, OCSP_ERR_CERTSTATUS_PARSE_CERT, OCSP_ERR_CERTSTATUS_HTTP_REQ, OCSP_ERR_CERTSTATUS_URL_LIST, OCSP_ERR_CERTSTATUS_HTTP_SEND, OCSP_ERR_CERTSTATUS_HTTP_RECV, OCSP_ERR_CERTSTATUS_HTTP_RESP. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- ocsp_err_certstatus_disabled), basic (allowed values- ocsp_err_certstatus_disabled) edition.
    ocspResponderUrlListFromCerts string[]
    This is an internal field to store the ocsp responder urls contained in the certificate. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocspResponseInfos GetSslkeyandcertificateOcspResponseInfo[]
    Information related to ocsp response. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status string
    Enum options - ssl_certificate_finished, ssl_certificate_pending. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type string
    Enum options - ssl_certificate_type_virtualservice, ssl_certificate_type_system, ssl_certificate_type_ca. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ca_certs Sequence[GetSslkeyandcertificateCaCert]
    Ca certificates in certificate chain. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificate_base64 str
    States if the certificate is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificate_management_profile_ref str
    It is a reference to an object of type certificatemanagementprofile. Allowed with any value in enterprise, enterprise with cloud services edition.
    certificates Sequence[GetSslkeyandcertificateCertificate]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[GetSslkeyandcertificateConfigpbAttribute]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    created_by str
    Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dynamic_params Sequence[GetSslkeyandcertificateDynamicParam]
    Dynamic parameters needed for certificate management profile. Allowed with any value in enterprise, enterprise with cloud services edition.
    enable_ocsp_stapling str
    Enables ocsp stapling. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- false), basic (allowed values- false) edition.
    enckey_base64 str
    Encrypted private key corresponding to the private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enckey_name str
    Name of the encrypted private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    format str
    Format of the key/certificate file. Enum options - SSL_PEM, SSL_PKCS12. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroup_ref str
    It is a reference to an object of type hardwaresecuritymodulegroup. Allowed with any value in enterprise, enterprise with cloud services edition.
    id str
    import_key_to_hsm str
    Flag to enable private key import to hsm while importing the certificate. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    is_federated str
    It specifies whether the object has to be replicated to the gslb followers. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    key str
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    key_base64 str
    States if the private key is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    key_params Sequence[GetSslkeyandcertificateKeyParam]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    key_passphrase str
    Passphrase used to encrypt the private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers Sequence[GetSslkeyandcertificateMarker]
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ocsp_configs Sequence[GetSslkeyandcertificateOcspConfig]
    Configuration related to ocsp. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocsp_error_status str
    Error reported during ocsp status query. Enum options - OCSP_ERR_CERTSTATUS_GOOD, OCSP_ERR_CERTSTATUS_REVOKED, OCSP_ERR_CERTSTATUS_UNKNOWN, OCSP_ERR_CERTSTATUS_SERVERFAIL_ERR, OCSP_ERR_CERTSTATUS_JOBDB, OCSP_ERR_CERTSTATUS_DISABLED, OCSP_ERR_CERTSTATUS_GETCERT, OCSP_ERR_CERTSTATUS_NONVSCERT, OCSP_ERR_CERTSTATUS_SELFSIGNED, OCSP_ERR_CERTSTATUS_CERTFINISH, OCSP_ERR_CERTSTATUS_CACERT, OCSP_ERR_CERTSTATUS_REQUEST, OCSP_ERR_CERTSTATUS_ISSUER_REVOKED, OCSP_ERR_CERTSTATUS_PARSE_CERT, OCSP_ERR_CERTSTATUS_HTTP_REQ, OCSP_ERR_CERTSTATUS_URL_LIST, OCSP_ERR_CERTSTATUS_HTTP_SEND, OCSP_ERR_CERTSTATUS_HTTP_RECV, OCSP_ERR_CERTSTATUS_HTTP_RESP. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- ocsp_err_certstatus_disabled), basic (allowed values- ocsp_err_certstatus_disabled) edition.
    ocsp_responder_url_list_from_certs Sequence[str]
    This is an internal field to store the ocsp responder urls contained in the certificate. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocsp_response_infos Sequence[GetSslkeyandcertificateOcspResponseInfo]
    Information related to ocsp response. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status str
    Enum options - ssl_certificate_finished, ssl_certificate_pending. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type str
    Enum options - ssl_certificate_type_virtualservice, ssl_certificate_type_system, ssl_certificate_type_ca. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    caCerts List<Property Map>
    Ca certificates in certificate chain. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateBase64 String
    States if the certificate is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateManagementProfileRef String
    It is a reference to an object of type certificatemanagementprofile. Allowed with any value in enterprise, enterprise with cloud services edition.
    certificates List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    createdBy String
    Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    dynamicParams List<Property Map>
    Dynamic parameters needed for certificate management profile. Allowed with any value in enterprise, enterprise with cloud services edition.
    enableOcspStapling String
    Enables ocsp stapling. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- false), basic (allowed values- false) edition.
    enckeyBase64 String
    Encrypted private key corresponding to the private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    enckeyName String
    Name of the encrypted private key (e.g. Those generated by an hsm such as thales nshield). Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    format String
    Format of the key/certificate file. Enum options - SSL_PEM, SSL_PKCS12. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    hardwaresecuritymodulegroupRef String
    It is a reference to an object of type hardwaresecuritymodulegroup. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    importKeyToHsm String
    Flag to enable private key import to hsm while importing the certificate. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    isFederated String
    It specifies whether the object has to be replicated to the gslb followers. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    key String
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyBase64 String
    States if the private key is base64 encoded. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyParams List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    keyPassphrase String
    Passphrase used to encrypt the private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    markers List<Property Map>
    List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ocspConfigs List<Property Map>
    Configuration related to ocsp. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocspErrorStatus String
    Error reported during ocsp status query. Enum options - OCSP_ERR_CERTSTATUS_GOOD, OCSP_ERR_CERTSTATUS_REVOKED, OCSP_ERR_CERTSTATUS_UNKNOWN, OCSP_ERR_CERTSTATUS_SERVERFAIL_ERR, OCSP_ERR_CERTSTATUS_JOBDB, OCSP_ERR_CERTSTATUS_DISABLED, OCSP_ERR_CERTSTATUS_GETCERT, OCSP_ERR_CERTSTATUS_NONVSCERT, OCSP_ERR_CERTSTATUS_SELFSIGNED, OCSP_ERR_CERTSTATUS_CERTFINISH, OCSP_ERR_CERTSTATUS_CACERT, OCSP_ERR_CERTSTATUS_REQUEST, OCSP_ERR_CERTSTATUS_ISSUER_REVOKED, OCSP_ERR_CERTSTATUS_PARSE_CERT, OCSP_ERR_CERTSTATUS_HTTP_REQ, OCSP_ERR_CERTSTATUS_URL_LIST, OCSP_ERR_CERTSTATUS_HTTP_SEND, OCSP_ERR_CERTSTATUS_HTTP_RECV, OCSP_ERR_CERTSTATUS_HTTP_RESP. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- ocsp_err_certstatus_disabled), basic (allowed values- ocsp_err_certstatus_disabled) edition.
    ocspResponderUrlListFromCerts List<String>
    This is an internal field to store the ocsp responder urls contained in the certificate. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ocspResponseInfos List<Property Map>
    Information related to ocsp response. Field introduced in 20.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    Enum options - ssl_certificate_finished, ssl_certificate_pending. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    type String
    Enum options - ssl_certificate_type_virtualservice, ssl_certificate_type_system, ssl_certificate_type_ca. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    GetSslkeyandcertificateCaCert

    CaRef string
    Name string
    Search SSLKeyAndCertificate by name.
    CaRef string
    Name string
    Search SSLKeyAndCertificate by name.
    caRef String
    name String
    Search SSLKeyAndCertificate by name.
    caRef string
    name string
    Search SSLKeyAndCertificate by name.
    ca_ref str
    name str
    Search SSLKeyAndCertificate by name.
    caRef String
    name String
    Search SSLKeyAndCertificate by name.

    GetSslkeyandcertificateCertificate

    Certificate string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CertificateSigningRequest string
    ChainVerified string
    DaysUntilExpire string
    ExpiryStatus string
    Fingerprint string
    Issuers List<GetSslkeyandcertificateCertificateIssuer>
    KeyParams List<GetSslkeyandcertificateCertificateKeyParam>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NotAfter string
    NotBefore string
    PublicKey string
    SelfSigned string
    SerialNumber string
    Signature string
    SignatureAlgorithm string
    SubjectAltNames List<string>
    Subjects List<GetSslkeyandcertificateCertificateSubject>
    Text string
    Version string
    Certificate string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CertificateSigningRequest string
    ChainVerified string
    DaysUntilExpire string
    ExpiryStatus string
    Fingerprint string
    Issuers []GetSslkeyandcertificateCertificateIssuer
    KeyParams []GetSslkeyandcertificateCertificateKeyParam
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    NotAfter string
    NotBefore string
    PublicKey string
    SelfSigned string
    SerialNumber string
    Signature string
    SignatureAlgorithm string
    SubjectAltNames []string
    Subjects []GetSslkeyandcertificateCertificateSubject
    Text string
    Version string
    certificate String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateSigningRequest String
    chainVerified String
    daysUntilExpire String
    expiryStatus String
    fingerprint String
    issuers List<GetSslkeyandcertificateCertificateIssuer>
    keyParams List<GetSslkeyandcertificateCertificateKeyParam>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    notAfter String
    notBefore String
    publicKey String
    selfSigned String
    serialNumber String
    signature String
    signatureAlgorithm String
    subjectAltNames List<String>
    subjects List<GetSslkeyandcertificateCertificateSubject>
    text String
    version String
    certificate string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateSigningRequest string
    chainVerified string
    daysUntilExpire string
    expiryStatus string
    fingerprint string
    issuers GetSslkeyandcertificateCertificateIssuer[]
    keyParams GetSslkeyandcertificateCertificateKeyParam[]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    notAfter string
    notBefore string
    publicKey string
    selfSigned string
    serialNumber string
    signature string
    signatureAlgorithm string
    subjectAltNames string[]
    subjects GetSslkeyandcertificateCertificateSubject[]
    text string
    version string
    certificate str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificate_signing_request str
    chain_verified str
    days_until_expire str
    expiry_status str
    fingerprint str
    issuers Sequence[GetSslkeyandcertificateCertificateIssuer]
    key_params Sequence[GetSslkeyandcertificateCertificateKeyParam]
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    not_after str
    not_before str
    public_key str
    self_signed str
    serial_number str
    signature str
    signature_algorithm str
    subject_alt_names Sequence[str]
    subjects Sequence[GetSslkeyandcertificateCertificateSubject]
    text str
    version str
    certificate String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    certificateSigningRequest String
    chainVerified String
    daysUntilExpire String
    expiryStatus String
    fingerprint String
    issuers List<Property Map>
    keyParams List<Property Map>
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    notAfter String
    notBefore String
    publicKey String
    selfSigned String
    serialNumber String
    signature String
    signatureAlgorithm String
    subjectAltNames List<String>
    subjects List<Property Map>
    text String
    version String

    GetSslkeyandcertificateCertificateIssuer

    GetSslkeyandcertificateCertificateKeyParam

    GetSslkeyandcertificateCertificateKeyParamEcParam

    Curve string
    Curve string
    curve String
    curve string
    curve str
    curve String

    GetSslkeyandcertificateCertificateKeyParamRsaParam

    Exponent string
    KeySize string
    Exponent string
    KeySize string
    exponent String
    keySize String
    exponent string
    keySize string
    exponent String
    keySize String

    GetSslkeyandcertificateCertificateSubject

    GetSslkeyandcertificateConfigpbAttribute

    Version string
    Version string
    version String
    version string
    version String

    GetSslkeyandcertificateDynamicParam

    IsDynamic string
    IsSensitive string
    Name string
    Search SSLKeyAndCertificate by name.
    Value string
    IsDynamic string
    IsSensitive string
    Name string
    Search SSLKeyAndCertificate by name.
    Value string
    isDynamic String
    isSensitive String
    name String
    Search SSLKeyAndCertificate by name.
    value String
    isDynamic string
    isSensitive string
    name string
    Search SSLKeyAndCertificate by name.
    value string
    is_dynamic str
    is_sensitive str
    name str
    Search SSLKeyAndCertificate by name.
    value str
    isDynamic String
    isSensitive String
    name String
    Search SSLKeyAndCertificate by name.
    value String

    GetSslkeyandcertificateKeyParam

    GetSslkeyandcertificateKeyParamEcParam

    Curve string
    Curve string
    curve String
    curve string
    curve str
    curve String

    GetSslkeyandcertificateKeyParamRsaParam

    Exponent string
    KeySize string
    Exponent string
    KeySize string
    exponent String
    keySize String
    exponent string
    keySize string
    exponent String
    keySize String

    GetSslkeyandcertificateMarker

    Key string
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Values List<string>
    Key string
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Values []string
    key String
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    values List<String>
    key string
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    values string[]
    key str
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    values Sequence[str]
    key String
    Private key. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    values List<String>

    GetSslkeyandcertificateOcspConfig

    GetSslkeyandcertificateOcspResponseInfo

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware