Show / Hide Table of Contents

Class GetSslVpnClientCerts

Inheritance
System.Object
GetSslVpnClientCerts
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.AliCloud.Vpc
Assembly: Pulumi.AliCloud.dll
Syntax
public static class GetSslVpnClientCerts

Methods

View Source

InvokeAsync(GetSslVpnClientCertsArgs, InvokeOptions)

The SSL-VPN client certificates data source lists lots of SSL-VPN client certificates resource information owned by an Alicloud account.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
public MyStack()
{
    var foo = Output.Create(AliCloud.Vpc.GetSslVpnClientCerts.InvokeAsync(new AliCloud.Vpc.GetSslVpnClientCertsArgs
    {
        Ids = 
        {
            "fake-cert-id",
        },
        NameRegex = "^foo",
        OutputFile = "/tmp/clientcert",
        SslVpnServerId = "fake-server-id",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetSslVpnClientCertsResult> InvokeAsync(GetSslVpnClientCertsArgs args = null, InvokeOptions options = null)
Parameters
Type Name Description
GetSslVpnClientCertsArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetSslVpnClientCertsResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.