| | 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> Collection of SecurityProviders. </summary> |
| | 11 | | public partial class VirtualWanSecurityProvider |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of VirtualWanSecurityProvider. </summary> |
| 0 | 14 | | internal VirtualWanSecurityProvider() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of VirtualWanSecurityProvider. </summary> |
| | 19 | | /// <param name="name"> Name of the security provider. </param> |
| | 20 | | /// <param name="url"> Url of the security provider. </param> |
| | 21 | | /// <param name="type"> Name of the security provider. </param> |
| 0 | 22 | | internal VirtualWanSecurityProvider(string name, string url, VirtualWanSecurityProviderType? type) |
| | 23 | | { |
| 0 | 24 | | Name = name; |
| 0 | 25 | | Url = url; |
| 0 | 26 | | Type = type; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> Name of the security provider. </summary> |
| 0 | 30 | | public string Name { get; } |
| | 31 | | /// <summary> Url of the security provider. </summary> |
| 0 | 32 | | public string Url { get; } |
| | 33 | | /// <summary> Name of the security provider. </summary> |
| 0 | 34 | | public VirtualWanSecurityProviderType? Type { get; } |
| | 35 | | } |
| | 36 | | } |