| | 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> Network security rules evaluation result. </summary> |
| | 11 | | public partial class NetworkSecurityRulesEvaluationResult |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of NetworkSecurityRulesEvaluationResult. </summary> |
| 0 | 14 | | internal NetworkSecurityRulesEvaluationResult() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of NetworkSecurityRulesEvaluationResult. </summary> |
| | 19 | | /// <param name="name"> Name of the network security rule. </param> |
| | 20 | | /// <param name="protocolMatched"> Value indicating whether protocol is matched. </param> |
| | 21 | | /// <param name="sourceMatched"> Value indicating whether source is matched. </param> |
| | 22 | | /// <param name="sourcePortMatched"> Value indicating whether source port is matched. </param> |
| | 23 | | /// <param name="destinationMatched"> Value indicating whether destination is matched. </param> |
| | 24 | | /// <param name="destinationPortMatched"> Value indicating whether destination port is matched. </param> |
| 0 | 25 | | internal NetworkSecurityRulesEvaluationResult(string name, bool? protocolMatched, bool? sourceMatched, bool? sou |
| | 26 | | { |
| 0 | 27 | | Name = name; |
| 0 | 28 | | ProtocolMatched = protocolMatched; |
| 0 | 29 | | SourceMatched = sourceMatched; |
| 0 | 30 | | SourcePortMatched = sourcePortMatched; |
| 0 | 31 | | DestinationMatched = destinationMatched; |
| 0 | 32 | | DestinationPortMatched = destinationPortMatched; |
| 0 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <summary> Name of the network security rule. </summary> |
| 0 | 36 | | public string Name { get; } |
| | 37 | | /// <summary> Value indicating whether protocol is matched. </summary> |
| 0 | 38 | | public bool? ProtocolMatched { get; } |
| | 39 | | /// <summary> Value indicating whether source is matched. </summary> |
| 0 | 40 | | public bool? SourceMatched { get; } |
| | 41 | | /// <summary> Value indicating whether source port is matched. </summary> |
| 0 | 42 | | public bool? SourcePortMatched { get; } |
| | 43 | | /// <summary> Value indicating whether destination is matched. </summary> |
| 0 | 44 | | public bool? DestinationMatched { get; } |
| | 45 | | /// <summary> Value indicating whether destination port is matched. </summary> |
| 0 | 46 | | public bool? DestinationPortMatched { get; } |
| | 47 | | } |
| | 48 | | } |