| | | 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.Resources.Models |
| | | 11 | | { |
| | | 12 | | /// <summary> Resource group information. </summary> |
| | | 13 | | public partial class ResourceGroupPatchable |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of ResourceGroupPatchable. </summary> |
| | 4 | 16 | | public ResourceGroupPatchable() |
| | | 17 | | { |
| | 4 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of ResourceGroupPatchable. </summary> |
| | | 21 | | /// <param name="name"> The name of the resource group. </param> |
| | | 22 | | /// <param name="properties"> The resource group properties. </param> |
| | | 23 | | /// <param name="managedBy"> The ID of the resource that manages this resource group. </param> |
| | | 24 | | /// <param name="tags"> The tags attached to the resource group. </param> |
| | 0 | 25 | | internal ResourceGroupPatchable(string name, ResourceGroupProperties properties, string managedBy, IDictionary<s |
| | | 26 | | { |
| | 0 | 27 | | Name = name; |
| | 0 | 28 | | Properties = properties; |
| | 0 | 29 | | ManagedBy = managedBy; |
| | 0 | 30 | | Tags = tags; |
| | 0 | 31 | | } |
| | | 32 | | |
| | | 33 | | /// <summary> The name of the resource group. </summary> |
| | 12 | 34 | | public string Name { get; set; } |
| | | 35 | | /// <summary> The resource group properties. </summary> |
| | 0 | 36 | | public ResourceGroupProperties Properties { get; set; } |
| | | 37 | | /// <summary> The ID of the resource that manages this resource group. </summary> |
| | 0 | 38 | | public string ManagedBy { get; set; } |
| | | 39 | | /// <summary> The tags attached to the resource group. </summary> |
| | 0 | 40 | | public IDictionary<string, string> Tags { get; set; } |
| | | 41 | | } |
| | | 42 | | } |