| | 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> Specifies information about the Shared Image Gallery that you want to update. </summary> |
| | 13 | | public partial class GalleryUpdate : UpdateResourceDefinition |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of GalleryUpdate. </summary> |
| 0 | 16 | | public GalleryUpdate() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of GalleryUpdate. </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> |
| | 25 | | /// <param name="description"> The description of this Shared Image Gallery resource. This property is updatable |
| | 26 | | /// <param name="identifier"> Describes the gallery unique name. </param> |
| | 27 | | /// <param name="provisioningState"> The provisioning state, which only appears in the response. </param> |
| 0 | 28 | | internal GalleryUpdate(string id, string name, string type, IDictionary<string, string> tags, string description |
| | 29 | | { |
| 0 | 30 | | Description = description; |
| 0 | 31 | | Identifier = identifier; |
| 0 | 32 | | ProvisioningState = provisioningState; |
| 0 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <summary> The description of this Shared Image Gallery resource. This property is updatable. </summary> |
| 0 | 36 | | public string Description { get; set; } |
| | 37 | | /// <summary> Describes the gallery unique name. </summary> |
| 0 | 38 | | public GalleryIdentifier Identifier { get; set; } |
| | 39 | | /// <summary> The provisioning state, which only appears in the response. </summary> |
| 0 | 40 | | public GalleryPropertiesProvisioningState? ProvisioningState { get; } |
| | 41 | | } |
| | 42 | | } |