| | 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.Resources.Models |
| | 9 | | { |
| | 10 | | /// <summary> Resource filter. </summary> |
| | 11 | | internal partial class GenericResourceFilter |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of GenericResourceFilter. </summary> |
| 0 | 14 | | internal GenericResourceFilter() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of GenericResourceFilter. </summary> |
| | 19 | | /// <param name="resourceType"> The resource type. </param> |
| | 20 | | /// <param name="tagname"> The tag name. </param> |
| | 21 | | /// <param name="tagvalue"> The tag value. </param> |
| 0 | 22 | | internal GenericResourceFilter(string resourceType, string tagname, string tagvalue) |
| | 23 | | { |
| 0 | 24 | | ResourceType = resourceType; |
| 0 | 25 | | Tagname = tagname; |
| 0 | 26 | | Tagvalue = tagvalue; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The resource type. </summary> |
| 0 | 30 | | public string ResourceType { get; } |
| | 31 | | /// <summary> The tag name. </summary> |
| 0 | 32 | | public string Tagname { get; } |
| | 33 | | /// <summary> The tag value. </summary> |
| 0 | 34 | | public string Tagvalue { get; } |
| | 35 | | } |
| | 36 | | } |