| | | 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; |
| | | 9 | | using System.Collections.Generic; |
| | | 10 | | |
| | | 11 | | namespace Azure.ResourceManager.Network.Models |
| | | 12 | | { |
| | | 13 | | /// <summary> List of Vpn-Sites. </summary> |
| | | 14 | | public partial class GetVpnSitesConfigurationRequest |
| | | 15 | | { |
| | | 16 | | /// <summary> Initializes a new instance of GetVpnSitesConfigurationRequest. </summary> |
| | | 17 | | /// <param name="outputBlobSasUrl"> The sas-url to download the configurations for vpn-sites. </param> |
| | 0 | 18 | | public GetVpnSitesConfigurationRequest(string outputBlobSasUrl) |
| | | 19 | | { |
| | 0 | 20 | | if (outputBlobSasUrl == null) |
| | | 21 | | { |
| | 0 | 22 | | throw new ArgumentNullException(nameof(outputBlobSasUrl)); |
| | | 23 | | } |
| | | 24 | | |
| | 0 | 25 | | OutputBlobSasUrl = outputBlobSasUrl; |
| | 0 | 26 | | } |
| | | 27 | | |
| | | 28 | | /// <summary> Initializes a new instance of GetVpnSitesConfigurationRequest. </summary> |
| | | 29 | | /// <param name="vpnSites"> List of resource-ids of the vpn-sites for which config is to be downloaded. </param> |
| | | 30 | | /// <param name="outputBlobSasUrl"> The sas-url to download the configurations for vpn-sites. </param> |
| | 0 | 31 | | internal GetVpnSitesConfigurationRequest(IList<string> vpnSites, string outputBlobSasUrl) |
| | | 32 | | { |
| | 0 | 33 | | VpnSites = vpnSites; |
| | 0 | 34 | | OutputBlobSasUrl = outputBlobSasUrl; |
| | 0 | 35 | | } |
| | | 36 | | |
| | | 37 | | /// <summary> List of resource-ids of the vpn-sites for which config is to be downloaded. </summary> |
| | 0 | 38 | | public IList<string> VpnSites { get; set; } |
| | | 39 | | /// <summary> The sas-url to download the configurations for vpn-sites. </summary> |
| | 0 | 40 | | public string OutputBlobSasUrl { get; } |
| | | 41 | | } |
| | | 42 | | } |