| | | 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 device configuration script generation parameters. </summary> |
| | | 11 | | public partial class VpnDeviceScriptParameters |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of VpnDeviceScriptParameters. </summary> |
| | 0 | 14 | | public VpnDeviceScriptParameters() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of VpnDeviceScriptParameters. </summary> |
| | | 19 | | /// <param name="vendor"> The vendor for the vpn device. </param> |
| | | 20 | | /// <param name="deviceFamily"> The device family for the vpn device. </param> |
| | | 21 | | /// <param name="firmwareVersion"> The firmware version for the vpn device. </param> |
| | 0 | 22 | | internal VpnDeviceScriptParameters(string vendor, string deviceFamily, string firmwareVersion) |
| | | 23 | | { |
| | 0 | 24 | | Vendor = vendor; |
| | 0 | 25 | | DeviceFamily = deviceFamily; |
| | 0 | 26 | | FirmwareVersion = firmwareVersion; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> The vendor for the vpn device. </summary> |
| | 0 | 30 | | public string Vendor { get; set; } |
| | | 31 | | /// <summary> The device family for the vpn device. </summary> |
| | 0 | 32 | | public string DeviceFamily { get; set; } |
| | | 33 | | /// <summary> The firmware version for the vpn device. </summary> |
| | 0 | 34 | | public string FirmwareVersion { get; set; } |
| | | 35 | | } |
| | | 36 | | } |