| | 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; |
| | 9 | | using System.Collections.Generic; |
| | 10 | |
|
| | 11 | | namespace Azure.ResourceManager.Compute.Models |
| | 12 | | { |
| | 13 | | /// <summary> Specifies information about the gallery Image Definition that you want to update. </summary> |
| | 14 | | public partial class GalleryImageUpdate : UpdateResourceDefinition |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of GalleryImageUpdate. </summary> |
| 0 | 17 | | public GalleryImageUpdate() |
| | 18 | | { |
| 0 | 19 | | } |
| | 20 | |
|
| | 21 | | /// <summary> Initializes a new instance of GalleryImageUpdate. </summary> |
| | 22 | | /// <param name="id"> Resource Id. </param> |
| | 23 | | /// <param name="name"> Resource name. </param> |
| | 24 | | /// <param name="type"> Resource type. </param> |
| | 25 | | /// <param name="tags"> Resource tags. </param> |
| | 26 | | /// <param name="description"> The description of this gallery Image Definition resource. This property is updat |
| | 27 | | /// <param name="eula"> The Eula agreement for the gallery Image Definition. </param> |
| | 28 | | /// <param name="privacyStatementUri"> The privacy statement uri. </param> |
| | 29 | | /// <param name="releaseNoteUri"> The release note uri. </param> |
| | 30 | | /// <param name="osType"> This property allows you to specify the type of the OS that is included in the disk wh |
| | 31 | | /// <param name="osState"> This property allows the user to specify whether the virtual machines created under t |
| | 32 | | /// <param name="hyperVGeneration"> The hypervisor generation of the Virtual Machine. Applicable to OS disks onl |
| | 33 | | /// <param name="endOfLifeDate"> The end of life date of the gallery Image Definition. This property can be used |
| | 34 | | /// <param name="identifier"> This is the gallery Image Definition identifier. </param> |
| | 35 | | /// <param name="recommended"> The properties describe the recommended machine configuration for this Image Defi |
| | 36 | | /// <param name="disallowed"> Describes the disallowed disk types. </param> |
| | 37 | | /// <param name="purchasePlan"> Describes the gallery Image Definition purchase plan. This is used by marketplac |
| | 38 | | /// <param name="provisioningState"> The provisioning state, which only appears in the response. </param> |
| 0 | 39 | | internal GalleryImageUpdate(string id, string name, string type, IDictionary<string, string> tags, string descri |
| | 40 | | { |
| 0 | 41 | | Description = description; |
| 0 | 42 | | Eula = eula; |
| 0 | 43 | | PrivacyStatementUri = privacyStatementUri; |
| 0 | 44 | | ReleaseNoteUri = releaseNoteUri; |
| 0 | 45 | | OsType = osType; |
| 0 | 46 | | OsState = osState; |
| 0 | 47 | | HyperVGeneration = hyperVGeneration; |
| 0 | 48 | | EndOfLifeDate = endOfLifeDate; |
| 0 | 49 | | Identifier = identifier; |
| 0 | 50 | | Recommended = recommended; |
| 0 | 51 | | Disallowed = disallowed; |
| 0 | 52 | | PurchasePlan = purchasePlan; |
| 0 | 53 | | ProvisioningState = provisioningState; |
| 0 | 54 | | } |
| | 55 | |
|
| | 56 | | /// <summary> The description of this gallery Image Definition resource. This property is updatable. </summary> |
| 0 | 57 | | public string Description { get; set; } |
| | 58 | | /// <summary> The Eula agreement for the gallery Image Definition. </summary> |
| 0 | 59 | | public string Eula { get; set; } |
| | 60 | | /// <summary> The privacy statement uri. </summary> |
| 0 | 61 | | public string PrivacyStatementUri { get; set; } |
| | 62 | | /// <summary> The release note uri. </summary> |
| 0 | 63 | | public string ReleaseNoteUri { get; set; } |
| | 64 | | /// <summary> This property allows you to specify the type of the OS that is included in the disk when creating |
| 0 | 65 | | public OperatingSystemTypes? OsType { get; set; } |
| | 66 | | /// <summary> This property allows the user to specify whether the virtual machines created under this image are |
| 0 | 67 | | public OperatingSystemStateTypes? OsState { get; set; } |
| | 68 | | /// <summary> The hypervisor generation of the Virtual Machine. Applicable to OS disks only. </summary> |
| 0 | 69 | | public HyperVGeneration? HyperVGeneration { get; set; } |
| | 70 | | /// <summary> The end of life date of the gallery Image Definition. This property can be used for decommissionin |
| 0 | 71 | | public DateTimeOffset? EndOfLifeDate { get; set; } |
| | 72 | | /// <summary> This is the gallery Image Definition identifier. </summary> |
| 0 | 73 | | public GalleryImageIdentifier Identifier { get; set; } |
| | 74 | | /// <summary> The properties describe the recommended machine configuration for this Image Definition. These pro |
| 0 | 75 | | public RecommendedMachineConfiguration Recommended { get; set; } |
| | 76 | | /// <summary> Describes the disallowed disk types. </summary> |
| 0 | 77 | | public Disallowed Disallowed { get; set; } |
| | 78 | | /// <summary> Describes the gallery Image Definition purchase plan. This is used by marketplace images. </summar |
| 0 | 79 | | public ImagePurchasePlan PurchasePlan { get; set; } |
| | 80 | | /// <summary> The provisioning state, which only appears in the response. </summary> |
| 0 | 81 | | public GalleryImagePropertiesProvisioningState? ProvisioningState { get; } |
| | 82 | | } |
| | 83 | | } |