Sdílet prostřednictvím


VpnClientParameters Constructors

Definition

Overloads

VpnClientParameters()

Initializes a new instance of the VpnClientParameters class.

VpnClientParameters(String, String, String, IList<String>)

Initializes a new instance of the VpnClientParameters class.

VpnClientParameters()

Initializes a new instance of the VpnClientParameters class.

public VpnClientParameters ();
Public Sub New ()

Applies to

VpnClientParameters(String, String, String, IList<String>)

Initializes a new instance of the VpnClientParameters class.

public VpnClientParameters (string processorArchitecture = default, string authenticationMethod = default, string radiusServerAuthCertificate = default, System.Collections.Generic.IList<string> clientRootCertificates = default);
new Microsoft.Azure.Management.Network.Models.VpnClientParameters : string * string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Network.Models.VpnClientParameters
Public Sub New (Optional processorArchitecture As String = Nothing, Optional authenticationMethod As String = Nothing, Optional radiusServerAuthCertificate As String = Nothing, Optional clientRootCertificates As IList(Of String) = Nothing)

Parameters

processorArchitecture
String

VPN client Processor Architecture. Possible values include: 'Amd64', 'X86'

authenticationMethod
String

VPN client authentication method. Possible values include: 'EAPTLS', 'EAPMSCHAPv2'

radiusServerAuthCertificate
String

The public certificate data for the radius server authentication certificate as a Base-64 encoded string. Required only if external radius authentication has been configured with EAPTLS authentication.

clientRootCertificates
IList<String>

A list of client root certificates public certificate data encoded as Base-64 strings. Optional parameter for external radius based authentication with EAPTLS.

Applies to