| | | 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> Results of IP flow verification on the target resource. </summary> |
| | | 11 | | public partial class VerificationIPFlowResult |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of VerificationIPFlowResult. </summary> |
| | 0 | 14 | | internal VerificationIPFlowResult() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of VerificationIPFlowResult. </summary> |
| | | 19 | | /// <param name="access"> Indicates whether the traffic is allowed or denied. </param> |
| | | 20 | | /// <param name="ruleName"> Name of the rule. If input is not matched against any security rule, it is not displ |
| | 0 | 21 | | internal VerificationIPFlowResult(Access? access, string ruleName) |
| | | 22 | | { |
| | 0 | 23 | | Access = access; |
| | 0 | 24 | | RuleName = ruleName; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> Indicates whether the traffic is allowed or denied. </summary> |
| | 0 | 28 | | public Access? Access { get; } |
| | | 29 | | /// <summary> Name of the rule. If input is not matched against any security rule, it is not displayed. </summar |
| | 0 | 30 | | public string RuleName { get; } |
| | | 31 | | } |
| | | 32 | | } |