| | | 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> Virtual Wan Vpn profile parameters Vpn profile generation. </summary> |
| | | 11 | | public partial class VirtualWanVpnProfileParameters |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of VirtualWanVpnProfileParameters. </summary> |
| | 0 | 14 | | public VirtualWanVpnProfileParameters() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of VirtualWanVpnProfileParameters. </summary> |
| | | 19 | | /// <param name="vpnServerConfigurationResourceId"> VpnServerConfiguration partial resource uri with which Virtu |
| | | 20 | | /// <param name="authenticationMethod"> VPN client authentication method. </param> |
| | 0 | 21 | | internal VirtualWanVpnProfileParameters(string vpnServerConfigurationResourceId, AuthenticationMethod? authentic |
| | | 22 | | { |
| | 0 | 23 | | VpnServerConfigurationResourceId = vpnServerConfigurationResourceId; |
| | 0 | 24 | | AuthenticationMethod = authenticationMethod; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> VpnServerConfiguration partial resource uri with which VirtualWan is associated to. </summary> |
| | 0 | 28 | | public string VpnServerConfigurationResourceId { get; set; } |
| | | 29 | | /// <summary> VPN client authentication method. </summary> |
| | 0 | 30 | | public AuthenticationMethod? AuthenticationMethod { get; set; } |
| | | 31 | | } |
| | | 32 | | } |