| | | 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> Matched rule. </summary> |
| | | 11 | | public partial class MatchedRule |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of MatchedRule. </summary> |
| | 0 | 14 | | internal MatchedRule() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of MatchedRule. </summary> |
| | | 19 | | /// <param name="ruleName"> Name of the matched network security rule. </param> |
| | | 20 | | /// <param name="action"> The network traffic is allowed or denied. Possible values are 'Allow' and &a |
| | 0 | 21 | | internal MatchedRule(string ruleName, string action) |
| | | 22 | | { |
| | 0 | 23 | | RuleName = ruleName; |
| | 0 | 24 | | Action = action; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> Name of the matched network security rule. </summary> |
| | 0 | 28 | | public string RuleName { get; } |
| | | 29 | | /// <summary> The network traffic is allowed or denied. Possible values are 'Allow' and 'Deny&apo |
| | 0 | 30 | | public string Action { get; } |
| | | 31 | | } |
| | | 32 | | } |