1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vpn
  6. SslVpnClientCert
Viewing docs for volcenginecc v0.0.33
published on Thursday, May 7, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.33
published on Thursday, May 7, 2026 by Volcengine

    SSL client certificate is a sub-resource of the SSL server.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const vPNSslVpnClientCertDemo = new volcenginecc.vpn.SslVpnClientCert("VPNSslVpnClientCertDemo", {
        sslVpnServerId: "vss-xxxx",
        sslVpnClientCertName: "ccapi-test-client-cert",
        description: "ccapi-test",
        tags: [{
            key: "env",
            value: "test",
        }],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    v_pnssl_vpn_client_cert_demo = volcenginecc.vpn.SslVpnClientCert("VPNSslVpnClientCertDemo",
        ssl_vpn_server_id="vss-xxxx",
        ssl_vpn_client_cert_name="ccapi-test-client-cert",
        description="ccapi-test",
        tags=[{
            "key": "env",
            "value": "test",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vpn"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vpn.NewSslVpnClientCert(ctx, "VPNSslVpnClientCertDemo", &vpn.SslVpnClientCertArgs{
    			SslVpnServerId:       pulumi.String("vss-xxxx"),
    			SslVpnClientCertName: pulumi.String("ccapi-test-client-cert"),
    			Description:          pulumi.String("ccapi-test"),
    			Tags: vpn.SslVpnClientCertTagArray{
    				&vpn.SslVpnClientCertTagArgs{
    					Key:   pulumi.String("env"),
    					Value: pulumi.String("test"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var vPNSslVpnClientCertDemo = new Volcenginecc.Vpn.SslVpnClientCert("VPNSslVpnClientCertDemo", new()
        {
            SslVpnServerId = "vss-xxxx",
            SslVpnClientCertName = "ccapi-test-client-cert",
            Description = "ccapi-test",
            Tags = new[]
            {
                new Volcenginecc.Vpn.Inputs.SslVpnClientCertTagArgs
                {
                    Key = "env",
                    Value = "test",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.vpn.SslVpnClientCert;
    import com.volcengine.volcenginecc.vpn.SslVpnClientCertArgs;
    import com.pulumi.volcenginecc.vpn.inputs.SslVpnClientCertTagArgs;
    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) {
            var vPNSslVpnClientCertDemo = new SslVpnClientCert("vPNSslVpnClientCertDemo", SslVpnClientCertArgs.builder()
                .sslVpnServerId("vss-xxxx")
                .sslVpnClientCertName("ccapi-test-client-cert")
                .description("ccapi-test")
                .tags(SslVpnClientCertTagArgs.builder()
                    .key("env")
                    .value("test")
                    .build())
                .build());
    
        }
    }
    
    resources:
      vPNSslVpnClientCertDemo:
        type: volcenginecc:vpn:SslVpnClientCert
        name: VPNSslVpnClientCertDemo
        properties:
          sslVpnServerId: vss-xxxx
          sslVpnClientCertName: ccapi-test-client-cert
          description: ccapi-test
          tags:
            - key: env
              value: test
    

    Create SslVpnClientCert Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SslVpnClientCert(name: string, args: SslVpnClientCertArgs, opts?: CustomResourceOptions);
    @overload
    def SslVpnClientCert(resource_name: str,
                         args: SslVpnClientCertArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SslVpnClientCert(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         ssl_vpn_server_id: Optional[str] = None,
                         description: Optional[str] = None,
                         ssl_vpn_client_cert_name: Optional[str] = None,
                         tags: Optional[Sequence[SslVpnClientCertTagArgs]] = None)
    func NewSslVpnClientCert(ctx *Context, name string, args SslVpnClientCertArgs, opts ...ResourceOption) (*SslVpnClientCert, error)
    public SslVpnClientCert(string name, SslVpnClientCertArgs args, CustomResourceOptions? opts = null)
    public SslVpnClientCert(String name, SslVpnClientCertArgs args)
    public SslVpnClientCert(String name, SslVpnClientCertArgs args, CustomResourceOptions options)
    
    type: volcenginecc:vpn:SslVpnClientCert
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SslVpnClientCertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SslVpnClientCertArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SslVpnClientCertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SslVpnClientCertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SslVpnClientCertArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var sslVpnClientCertResource = new Volcenginecc.Vpn.SslVpnClientCert("sslVpnClientCertResource", new()
    {
        SslVpnServerId = "string",
        Description = "string",
        SslVpnClientCertName = "string",
        Tags = new[]
        {
            new Volcenginecc.Vpn.Inputs.SslVpnClientCertTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := vpn.NewSslVpnClientCert(ctx, "sslVpnClientCertResource", &vpn.SslVpnClientCertArgs{
    	SslVpnServerId:       pulumi.String("string"),
    	Description:          pulumi.String("string"),
    	SslVpnClientCertName: pulumi.String("string"),
    	Tags: vpn.SslVpnClientCertTagArray{
    		&vpn.SslVpnClientCertTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var sslVpnClientCertResource = new SslVpnClientCert("sslVpnClientCertResource", SslVpnClientCertArgs.builder()
        .sslVpnServerId("string")
        .description("string")
        .sslVpnClientCertName("string")
        .tags(SslVpnClientCertTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    ssl_vpn_client_cert_resource = volcenginecc.vpn.SslVpnClientCert("sslVpnClientCertResource",
        ssl_vpn_server_id="string",
        description="string",
        ssl_vpn_client_cert_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const sslVpnClientCertResource = new volcenginecc.vpn.SslVpnClientCert("sslVpnClientCertResource", {
        sslVpnServerId: "string",
        description: "string",
        sslVpnClientCertName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcenginecc:vpn:SslVpnClientCert
    properties:
        description: string
        sslVpnClientCertName: string
        sslVpnServerId: string
        tags:
            - key: string
              value: string
    

    SslVpnClientCert Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SslVpnClientCert resource accepts the following input properties:

    SslVpnServerId string
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    Description string
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    SslVpnClientCertName string
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    Tags List<Volcengine.SslVpnClientCertTag>
    SslVpnServerId string
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    Description string
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    SslVpnClientCertName string
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    Tags []SslVpnClientCertTagArgs
    sslVpnServerId String
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    description String
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    sslVpnClientCertName String
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    tags List<SslVpnClientCertTag>
    sslVpnServerId string
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    description string
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    sslVpnClientCertName string
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    tags SslVpnClientCertTag[]
    ssl_vpn_server_id str
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    description str
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    ssl_vpn_client_cert_name str
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    tags Sequence[SslVpnClientCertTagArgs]
    sslVpnServerId String
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    description String
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    sslVpnClientCertName String
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    tags List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SslVpnClientCert resource produces the following output properties:

    CaCertificate string
    CA certificate information.
    CertificateStatus string
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    ClientCertificate string
    Client certificate information.
    ClientKey string
    Client key information.
    CreationTime string
    Creation time of the SSL client certificate.
    ExpiredTime string
    Expiration time of the SSL client certificate.
    Id string
    The provider-assigned unique ID for this managed resource.
    OpenVpnClientConfig string
    OpenVPN client configuration.
    SslVpnClientCertId string
    SSL client certificate ID.
    Status string
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    UpdateTime string
    Modification time of the SSL client certificate.
    CaCertificate string
    CA certificate information.
    CertificateStatus string
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    ClientCertificate string
    Client certificate information.
    ClientKey string
    Client key information.
    CreationTime string
    Creation time of the SSL client certificate.
    ExpiredTime string
    Expiration time of the SSL client certificate.
    Id string
    The provider-assigned unique ID for this managed resource.
    OpenVpnClientConfig string
    OpenVPN client configuration.
    SslVpnClientCertId string
    SSL client certificate ID.
    Status string
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    UpdateTime string
    Modification time of the SSL client certificate.
    caCertificate String
    CA certificate information.
    certificateStatus String
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    clientCertificate String
    Client certificate information.
    clientKey String
    Client key information.
    creationTime String
    Creation time of the SSL client certificate.
    expiredTime String
    Expiration time of the SSL client certificate.
    id String
    The provider-assigned unique ID for this managed resource.
    openVpnClientConfig String
    OpenVPN client configuration.
    sslVpnClientCertId String
    SSL client certificate ID.
    status String
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    updateTime String
    Modification time of the SSL client certificate.
    caCertificate string
    CA certificate information.
    certificateStatus string
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    clientCertificate string
    Client certificate information.
    clientKey string
    Client key information.
    creationTime string
    Creation time of the SSL client certificate.
    expiredTime string
    Expiration time of the SSL client certificate.
    id string
    The provider-assigned unique ID for this managed resource.
    openVpnClientConfig string
    OpenVPN client configuration.
    sslVpnClientCertId string
    SSL client certificate ID.
    status string
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    updateTime string
    Modification time of the SSL client certificate.
    ca_certificate str
    CA certificate information.
    certificate_status str
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    client_certificate str
    Client certificate information.
    client_key str
    Client key information.
    creation_time str
    Creation time of the SSL client certificate.
    expired_time str
    Expiration time of the SSL client certificate.
    id str
    The provider-assigned unique ID for this managed resource.
    open_vpn_client_config str
    OpenVPN client configuration.
    ssl_vpn_client_cert_id str
    SSL client certificate ID.
    status str
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    update_time str
    Modification time of the SSL client certificate.
    caCertificate String
    CA certificate information.
    certificateStatus String
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    clientCertificate String
    Client certificate information.
    clientKey String
    Client key information.
    creationTime String
    Creation time of the SSL client certificate.
    expiredTime String
    Expiration time of the SSL client certificate.
    id String
    The provider-assigned unique ID for this managed resource.
    openVpnClientConfig String
    OpenVPN client configuration.
    sslVpnClientCertId String
    SSL client certificate ID.
    status String
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    updateTime String
    Modification time of the SSL client certificate.

    Look up Existing SslVpnClientCert Resource

    Get an existing SslVpnClientCert resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SslVpnClientCertState, opts?: CustomResourceOptions): SslVpnClientCert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ca_certificate: Optional[str] = None,
            certificate_status: Optional[str] = None,
            client_certificate: Optional[str] = None,
            client_key: Optional[str] = None,
            creation_time: Optional[str] = None,
            description: Optional[str] = None,
            expired_time: Optional[str] = None,
            open_vpn_client_config: Optional[str] = None,
            ssl_vpn_client_cert_id: Optional[str] = None,
            ssl_vpn_client_cert_name: Optional[str] = None,
            ssl_vpn_server_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[SslVpnClientCertTagArgs]] = None,
            update_time: Optional[str] = None) -> SslVpnClientCert
    func GetSslVpnClientCert(ctx *Context, name string, id IDInput, state *SslVpnClientCertState, opts ...ResourceOption) (*SslVpnClientCert, error)
    public static SslVpnClientCert Get(string name, Input<string> id, SslVpnClientCertState? state, CustomResourceOptions? opts = null)
    public static SslVpnClientCert get(String name, Output<String> id, SslVpnClientCertState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:vpn:SslVpnClientCert    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CaCertificate string
    CA certificate information.
    CertificateStatus string
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    ClientCertificate string
    Client certificate information.
    ClientKey string
    Client key information.
    CreationTime string
    Creation time of the SSL client certificate.
    Description string
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    ExpiredTime string
    Expiration time of the SSL client certificate.
    OpenVpnClientConfig string
    OpenVPN client configuration.
    SslVpnClientCertId string
    SSL client certificate ID.
    SslVpnClientCertName string
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    SslVpnServerId string
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    Status string
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    Tags List<Volcengine.SslVpnClientCertTag>
    UpdateTime string
    Modification time of the SSL client certificate.
    CaCertificate string
    CA certificate information.
    CertificateStatus string
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    ClientCertificate string
    Client certificate information.
    ClientKey string
    Client key information.
    CreationTime string
    Creation time of the SSL client certificate.
    Description string
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    ExpiredTime string
    Expiration time of the SSL client certificate.
    OpenVpnClientConfig string
    OpenVPN client configuration.
    SslVpnClientCertId string
    SSL client certificate ID.
    SslVpnClientCertName string
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    SslVpnServerId string
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    Status string
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    Tags []SslVpnClientCertTagArgs
    UpdateTime string
    Modification time of the SSL client certificate.
    caCertificate String
    CA certificate information.
    certificateStatus String
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    clientCertificate String
    Client certificate information.
    clientKey String
    Client key information.
    creationTime String
    Creation time of the SSL client certificate.
    description String
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    expiredTime String
    Expiration time of the SSL client certificate.
    openVpnClientConfig String
    OpenVPN client configuration.
    sslVpnClientCertId String
    SSL client certificate ID.
    sslVpnClientCertName String
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    sslVpnServerId String
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    status String
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    tags List<SslVpnClientCertTag>
    updateTime String
    Modification time of the SSL client certificate.
    caCertificate string
    CA certificate information.
    certificateStatus string
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    clientCertificate string
    Client certificate information.
    clientKey string
    Client key information.
    creationTime string
    Creation time of the SSL client certificate.
    description string
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    expiredTime string
    Expiration time of the SSL client certificate.
    openVpnClientConfig string
    OpenVPN client configuration.
    sslVpnClientCertId string
    SSL client certificate ID.
    sslVpnClientCertName string
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    sslVpnServerId string
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    status string
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    tags SslVpnClientCertTag[]
    updateTime string
    Modification time of the SSL client certificate.
    ca_certificate str
    CA certificate information.
    certificate_status str
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    client_certificate str
    Client certificate information.
    client_key str
    Client key information.
    creation_time str
    Creation time of the SSL client certificate.
    description str
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    expired_time str
    Expiration time of the SSL client certificate.
    open_vpn_client_config str
    OpenVPN client configuration.
    ssl_vpn_client_cert_id str
    SSL client certificate ID.
    ssl_vpn_client_cert_name str
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    ssl_vpn_server_id str
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    status str
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    tags Sequence[SslVpnClientCertTagArgs]
    update_time str
    Modification time of the SSL client certificate.
    caCertificate String
    CA certificate information.
    certificateStatus String
    SSL client certificate status. Available: available; Expiring: expiring, displays this status when the expiration time is less than or equal to one week; Expired: expired.
    clientCertificate String
    Client certificate information.
    clientKey String
    Client key information.
    creationTime String
    Creation time of the SSL client certificate.
    description String
    Description of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), space ( ), underscore (_), hyphen (-), equals sign (=), English comma (,), Chinese comma (,), and Chinese period (。). Length must be between 0–255 characters. If not specified, defaults to an empty string.
    expiredTime String
    Expiration time of the SSL client certificate.
    openVpnClientConfig String
    OpenVPN client configuration.
    sslVpnClientCertId String
    SSL client certificate ID.
    sslVpnClientCertName String
    Name of the SSL client certificate. Must start with a Chinese character, letter, or number, and can only contain Chinese characters, letters, numbers, period (.), underscore (_), and hyphen (-). Length must be between 1–128 characters. If not specified, defaults to the SSL client certificate ID.
    sslVpnServerId String
    ID of the SSL server used to create the SSL client certificate. You can call DescribeSslVpnServers to query the SSL server ID information.
    status String
    SSL client status. Creating: being created; Deleting: being deleted; Pending: being configured; Available: available.
    tags List<Property Map>
    updateTime String
    Modification time of the SSL client certificate.

    Supporting Types

    SslVpnClientCertTag, SslVpnClientCertTagArgs

    Key string
    Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
    Value string
    Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
    Key string
    Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
    Value string
    Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
    key String
    Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
    value String
    Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
    key string
    Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
    value string
    Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
    key str
    Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
    value str
    Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.
    key String
    Tag key (Key) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag key, range: 1–20. Multiple tag keys are separated by &. Naming rules: Cannot start with any combination of 'sys:' in any case. Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Length must be between 1–128 characters. Note: Duplicate tag keys are not allowed for the same resource.
    value String
    Tag value (Value) for SSL client certificate tags. Parameter - N: indicates the sequence number of the tag value, range: 1–20. Multiple tag values are separated by &. Naming rules: Can only contain language characters, numbers, spaces, and English symbols '_', '.', ':', '/', '=', '+', '-', '@'. Can be empty, length must be between 0–256 characters. Case-sensitive, cannot start or end with a space. Note: If Tags.N.Value is provided, Tags.N.Key must also be provided.

    Import

    $ pulumi import volcenginecc:vpn/sslVpnClientCert:SslVpnClientCert example "ssl_vpn_client_cert_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.33
    published on Thursday, May 7, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.