| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System.Collections.Generic; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | 11 | | { |
| | 12 | | /// <summary> The Update Resource model definition. </summary> |
| | 13 | | public partial class UpdateResourceDefinition |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of UpdateResourceDefinition. </summary> |
| 0 | 16 | | public UpdateResourceDefinition() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of UpdateResourceDefinition. </summary> |
| | 21 | | /// <param name="id"> Resource Id. </param> |
| | 22 | | /// <param name="name"> Resource name. </param> |
| | 23 | | /// <param name="type"> Resource type. </param> |
| | 24 | | /// <param name="tags"> Resource tags. </param> |
| 0 | 25 | | internal UpdateResourceDefinition(string id, string name, string type, IDictionary<string, string> tags) |
| | 26 | | { |
| 0 | 27 | | Id = id; |
| 0 | 28 | | Name = name; |
| 0 | 29 | | Type = type; |
| 0 | 30 | | Tags = tags; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> Resource Id. </summary> |
| 0 | 34 | | public string Id { get; } |
| | 35 | | /// <summary> Resource name. </summary> |
| 0 | 36 | | public string Name { get; } |
| | 37 | | /// <summary> Resource type. </summary> |
| 0 | 38 | | public string Type { get; } |
| | 39 | | /// <summary> Resource tags. </summary> |
| 0 | 40 | | public IDictionary<string, string> Tags { get; set; } |
| | 41 | | } |
| | 42 | | } |