| | 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 Application Definition that you want to update. </summary> |
| | 14 | | public partial class GalleryApplicationUpdate : UpdateResourceDefinition |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of GalleryApplicationUpdate. </summary> |
| 0 | 17 | | public GalleryApplicationUpdate() |
| | 18 | | { |
| 0 | 19 | | } |
| | 20 | |
|
| | 21 | | /// <summary> Initializes a new instance of GalleryApplicationUpdate. </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 Application Definition resource. This property is |
| | 27 | | /// <param name="eula"> The Eula agreement for the gallery Application Definition. </param> |
| | 28 | | /// <param name="privacyStatementUri"> The privacy statement uri. </param> |
| | 29 | | /// <param name="releaseNoteUri"> The release note uri. </param> |
| | 30 | | /// <param name="endOfLifeDate"> The end of life date of the gallery Application Definition. This property can b |
| | 31 | | /// <param name="supportedOSType"> This property allows you to specify the supported type of the OS that applica |
| 0 | 32 | | internal GalleryApplicationUpdate(string id, string name, string type, IDictionary<string, string> tags, string |
| | 33 | | { |
| 0 | 34 | | Description = description; |
| 0 | 35 | | Eula = eula; |
| 0 | 36 | | PrivacyStatementUri = privacyStatementUri; |
| 0 | 37 | | ReleaseNoteUri = releaseNoteUri; |
| 0 | 38 | | EndOfLifeDate = endOfLifeDate; |
| 0 | 39 | | SupportedOSType = supportedOSType; |
| 0 | 40 | | } |
| | 41 | |
|
| | 42 | | /// <summary> The description of this gallery Application Definition resource. This property is updatable. </sum |
| 0 | 43 | | public string Description { get; set; } |
| | 44 | | /// <summary> The Eula agreement for the gallery Application Definition. </summary> |
| 0 | 45 | | public string Eula { get; set; } |
| | 46 | | /// <summary> The privacy statement uri. </summary> |
| 0 | 47 | | public string PrivacyStatementUri { get; set; } |
| | 48 | | /// <summary> The release note uri. </summary> |
| 0 | 49 | | public string ReleaseNoteUri { get; set; } |
| | 50 | | /// <summary> The end of life date of the gallery Application Definition. This property can be used for decommis |
| 0 | 51 | | public DateTimeOffset? EndOfLifeDate { get; set; } |
| | 52 | | /// <summary> This property allows you to specify the supported type of the OS that application is built for. &l |
| 0 | 53 | | public OperatingSystemTypes? SupportedOSType { get; set; } |
| | 54 | | } |
| | 55 | | } |