| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.ResourceManager.Network.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> VPN client connection health detail. </summary> |
| | | 11 | | public partial class VpnClientConnectionHealthDetail |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of VpnClientConnectionHealthDetail. </summary> |
| | 0 | 14 | | internal VpnClientConnectionHealthDetail() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of VpnClientConnectionHealthDetail. </summary> |
| | | 19 | | /// <param name="vpnConnectionId"> The vpn client Id. </param> |
| | | 20 | | /// <param name="vpnConnectionDuration"> The duration time of a connected vpn client. </param> |
| | | 21 | | /// <param name="vpnConnectionTime"> The start time of a connected vpn client. </param> |
| | | 22 | | /// <param name="publicIpAddress"> The public Ip of a connected vpn client. </param> |
| | | 23 | | /// <param name="privateIpAddress"> The assigned private Ip of a connected vpn client. </param> |
| | | 24 | | /// <param name="vpnUserName"> The user name of a connected vpn client. </param> |
| | | 25 | | /// <param name="maxBandwidth"> The max band width. </param> |
| | | 26 | | /// <param name="egressPacketsTransferred"> The egress packets per second. </param> |
| | | 27 | | /// <param name="egressBytesTransferred"> The egress bytes per second. </param> |
| | | 28 | | /// <param name="ingressPacketsTransferred"> The ingress packets per second. </param> |
| | | 29 | | /// <param name="ingressBytesTransferred"> The ingress bytes per second. </param> |
| | | 30 | | /// <param name="maxPacketsPerSecond"> The max packets transferred per second. </param> |
| | 0 | 31 | | internal VpnClientConnectionHealthDetail(string vpnConnectionId, long? vpnConnectionDuration, string vpnConnecti |
| | | 32 | | { |
| | 0 | 33 | | VpnConnectionId = vpnConnectionId; |
| | 0 | 34 | | VpnConnectionDuration = vpnConnectionDuration; |
| | 0 | 35 | | VpnConnectionTime = vpnConnectionTime; |
| | 0 | 36 | | PublicIpAddress = publicIpAddress; |
| | 0 | 37 | | PrivateIpAddress = privateIpAddress; |
| | 0 | 38 | | VpnUserName = vpnUserName; |
| | 0 | 39 | | MaxBandwidth = maxBandwidth; |
| | 0 | 40 | | EgressPacketsTransferred = egressPacketsTransferred; |
| | 0 | 41 | | EgressBytesTransferred = egressBytesTransferred; |
| | 0 | 42 | | IngressPacketsTransferred = ingressPacketsTransferred; |
| | 0 | 43 | | IngressBytesTransferred = ingressBytesTransferred; |
| | 0 | 44 | | MaxPacketsPerSecond = maxPacketsPerSecond; |
| | 0 | 45 | | } |
| | | 46 | | |
| | | 47 | | /// <summary> The vpn client Id. </summary> |
| | 0 | 48 | | public string VpnConnectionId { get; } |
| | | 49 | | /// <summary> The duration time of a connected vpn client. </summary> |
| | 0 | 50 | | public long? VpnConnectionDuration { get; } |
| | | 51 | | /// <summary> The start time of a connected vpn client. </summary> |
| | 0 | 52 | | public string VpnConnectionTime { get; } |
| | | 53 | | /// <summary> The public Ip of a connected vpn client. </summary> |
| | 0 | 54 | | public string PublicIpAddress { get; } |
| | | 55 | | /// <summary> The assigned private Ip of a connected vpn client. </summary> |
| | 0 | 56 | | public string PrivateIpAddress { get; } |
| | | 57 | | /// <summary> The user name of a connected vpn client. </summary> |
| | 0 | 58 | | public string VpnUserName { get; } |
| | | 59 | | /// <summary> The max band width. </summary> |
| | 0 | 60 | | public long? MaxBandwidth { get; } |
| | | 61 | | /// <summary> The egress packets per second. </summary> |
| | 0 | 62 | | public long? EgressPacketsTransferred { get; } |
| | | 63 | | /// <summary> The egress bytes per second. </summary> |
| | 0 | 64 | | public long? EgressBytesTransferred { get; } |
| | | 65 | | /// <summary> The ingress packets per second. </summary> |
| | 0 | 66 | | public long? IngressPacketsTransferred { get; } |
| | | 67 | | /// <summary> The ingress bytes per second. </summary> |
| | 0 | 68 | | public long? IngressBytesTransferred { get; } |
| | | 69 | | /// <summary> The max packets transferred per second. </summary> |
| | 0 | 70 | | public long? MaxPacketsPerSecond { get; } |
| | | 71 | | } |
| | | 72 | | } |