| | | 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> Details of PrepareNetworkPolicies for Subnet. </summary> |
| | | 13 | | public partial class PrepareNetworkPoliciesRequest |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of PrepareNetworkPoliciesRequest. </summary> |
| | 0 | 16 | | public PrepareNetworkPoliciesRequest() |
| | | 17 | | { |
| | 0 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of PrepareNetworkPoliciesRequest. </summary> |
| | | 21 | | /// <param name="serviceName"> The name of the service for which subnet is being prepared for. </param> |
| | | 22 | | /// <param name="networkIntentPolicyConfigurations"> A list of NetworkIntentPolicyConfiguration. </param> |
| | 0 | 23 | | internal PrepareNetworkPoliciesRequest(string serviceName, IList<NetworkIntentPolicyConfiguration> networkIntent |
| | | 24 | | { |
| | 0 | 25 | | ServiceName = serviceName; |
| | 0 | 26 | | NetworkIntentPolicyConfigurations = networkIntentPolicyConfigurations; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> The name of the service for which subnet is being prepared for. </summary> |
| | 0 | 30 | | public string ServiceName { get; set; } |
| | | 31 | | /// <summary> A list of NetworkIntentPolicyConfiguration. </summary> |
| | 0 | 32 | | public IList<NetworkIntentPolicyConfiguration> NetworkIntentPolicyConfigurations { get; set; } |
| | | 33 | | } |
| | | 34 | | } |