Show / Hide Table of Contents

Class GetSslVpnServers

Inheritance
System.Object
GetSslVpnServers
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 GetSslVpnServers

Methods

View Source

InvokeAsync(GetSslVpnServersArgs, InvokeOptions)

The SSL-VPN servers data source lists lots of SSL-VPN servers 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.GetSslVpnServers.InvokeAsync(new AliCloud.Vpc.GetSslVpnServersArgs
    {
        Ids = 
        {
            "fake-server-id",
        },
        NameRegex = "^foo",
        OutputFile = "/tmp/sslserver",
        VpnGatewayId = "fake-vpn-id",
    }));
}

}

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

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