| | | 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> Wrapper resource for tags patch API request only. </summary> |
| | | 11 | | public partial class TagsPatchResource |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of TagsPatchResource. </summary> |
| | 24 | 14 | | public TagsPatchResource() |
| | | 15 | | { |
| | 24 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of TagsPatchResource. </summary> |
| | | 19 | | /// <param name="operation"> The operation type for the patch API. </param> |
| | | 20 | | /// <param name="properties"> The set of tags. </param> |
| | 0 | 21 | | internal TagsPatchResource(TagsPatchResourceOperation? operation, Tags properties) |
| | | 22 | | { |
| | 0 | 23 | | Operation = operation; |
| | 0 | 24 | | Properties = properties; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> The operation type for the patch API. </summary> |
| | 72 | 28 | | public TagsPatchResourceOperation? Operation { get; set; } |
| | | 29 | | /// <summary> The set of tags. </summary> |
| | 72 | 30 | | public Tags Properties { get; set; } |
| | | 31 | | } |
| | | 32 | | } |