Share via


VpnClientConnectionHealth Constructors

Definition

Overloads

VpnClientConnectionHealth()

Initializes a new instance of the VpnClientConnectionHealth class.

VpnClientConnectionHealth(Nullable<Int64>, Nullable<Int64>, Nullable<Int32>, IList<String>)

Initializes a new instance of the VpnClientConnectionHealth class.

VpnClientConnectionHealth()

Initializes a new instance of the VpnClientConnectionHealth class.

public VpnClientConnectionHealth ();
Public Sub New ()

Applies to

VpnClientConnectionHealth(Nullable<Int64>, Nullable<Int64>, Nullable<Int32>, IList<String>)

Initializes a new instance of the VpnClientConnectionHealth class.

public VpnClientConnectionHealth (long? totalIngressBytesTransferred = default, long? totalEgressBytesTransferred = default, int? vpnClientConnectionsCount = default, System.Collections.Generic.IList<string> allocatedIpAddresses = default);
new Microsoft.Azure.Management.Network.Fluent.Models.VpnClientConnectionHealth : Nullable<int64> * Nullable<int64> * Nullable<int> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Network.Fluent.Models.VpnClientConnectionHealth
Public Sub New (Optional totalIngressBytesTransferred As Nullable(Of Long) = Nothing, Optional totalEgressBytesTransferred As Nullable(Of Long) = Nothing, Optional vpnClientConnectionsCount As Nullable(Of Integer) = Nothing, Optional allocatedIpAddresses As IList(Of String) = Nothing)

Parameters

totalIngressBytesTransferred
Nullable<Int64>

Total of the Ingress Bytes Transferred in this P2S Vpn connection.

totalEgressBytesTransferred
Nullable<Int64>

Total of the Egress Bytes Transferred in this connection.

vpnClientConnectionsCount
Nullable<Int32>

The total of p2s vpn clients connected at this time to this P2SVpnGateway.

allocatedIpAddresses
IList<String>

List of allocated ip addresses to the connected p2s vpn clients.

Applies to