| | 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> Parameters that define the representation of topology. </summary> |
| | 11 | | public partial class TopologyParameters |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of TopologyParameters. </summary> |
| 4 | 14 | | public TopologyParameters() |
| | 15 | | { |
| 4 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of TopologyParameters. </summary> |
| | 19 | | /// <param name="targetResourceGroupName"> The name of the target resource group to perform topology on. </param |
| | 20 | | /// <param name="targetVirtualNetwork"> The reference to the Virtual Network resource. </param> |
| | 21 | | /// <param name="targetSubnet"> The reference to the Subnet resource. </param> |
| 0 | 22 | | internal TopologyParameters(string targetResourceGroupName, SubResource targetVirtualNetwork, SubResource target |
| | 23 | | { |
| 0 | 24 | | TargetResourceGroupName = targetResourceGroupName; |
| 0 | 25 | | TargetVirtualNetwork = targetVirtualNetwork; |
| 0 | 26 | | TargetSubnet = targetSubnet; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The name of the target resource group to perform topology on. </summary> |
| 12 | 30 | | public string TargetResourceGroupName { get; set; } |
| | 31 | | /// <summary> The reference to the Virtual Network resource. </summary> |
| 0 | 32 | | public SubResource TargetVirtualNetwork { get; set; } |
| | 33 | | /// <summary> The reference to the Subnet resource. </summary> |
| 0 | 34 | | public SubResource TargetSubnet { get; set; } |
| | 35 | | } |
| | 36 | | } |