| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System.Collections.Generic; |
| | | 9 | | |
| | | 10 | | namespace Azure.ResourceManager.Network.Models |
| | | 11 | | { |
| | | 12 | | /// <summary> Vpn Client Parameters for package generation. </summary> |
| | | 13 | | public partial class VpnClientParameters |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of VpnClientParameters. </summary> |
| | 0 | 16 | | public VpnClientParameters() |
| | | 17 | | { |
| | 0 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of VpnClientParameters. </summary> |
| | | 21 | | /// <param name="processorArchitecture"> VPN client Processor Architecture. </param> |
| | | 22 | | /// <param name="authenticationMethod"> VPN client authentication method. </param> |
| | | 23 | | /// <param name="radiusServerAuthCertificate"> The public certificate data for the radius server authentication |
| | | 24 | | /// <param name="clientRootCertificates"> A list of client root certificates public certificate data encoded as |
| | 0 | 25 | | internal VpnClientParameters(ProcessorArchitecture? processorArchitecture, AuthenticationMethod? authenticationM |
| | | 26 | | { |
| | 0 | 27 | | ProcessorArchitecture = processorArchitecture; |
| | 0 | 28 | | AuthenticationMethod = authenticationMethod; |
| | 0 | 29 | | RadiusServerAuthCertificate = radiusServerAuthCertificate; |
| | 0 | 30 | | ClientRootCertificates = clientRootCertificates; |
| | 0 | 31 | | } |
| | | 32 | | |
| | | 33 | | /// <summary> VPN client Processor Architecture. </summary> |
| | 0 | 34 | | public ProcessorArchitecture? ProcessorArchitecture { get; set; } |
| | | 35 | | /// <summary> VPN client authentication method. </summary> |
| | 0 | 36 | | public AuthenticationMethod? AuthenticationMethod { get; set; } |
| | | 37 | | /// <summary> The public certificate data for the radius server authentication certificate as a Base-64 encoded |
| | 0 | 38 | | public string RadiusServerAuthCertificate { get; set; } |
| | | 39 | | /// <summary> A list of client root certificates public certificate data encoded as Base-64 strings. Optional pa |
| | 0 | 40 | | public IList<string> ClientRootCertificates { get; set; } |
| | | 41 | | } |
| | | 42 | | } |