| | | 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> Snapshot update resource. </summary> |
| | | 13 | | public partial class SnapshotUpdate |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of SnapshotUpdate. </summary> |
| | 8 | 16 | | public SnapshotUpdate() |
| | | 17 | | { |
| | 8 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of SnapshotUpdate. </summary> |
| | | 21 | | /// <param name="tags"> Resource tags. </param> |
| | | 22 | | /// <param name="sku"> The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. </param> |
| | | 23 | | /// <param name="osType"> the Operating System type. </param> |
| | | 24 | | /// <param name="diskSizeGB"> If creationData.createOption is Empty, this field is mandatory and it indicates th |
| | | 25 | | /// <param name="encryptionSettingsCollection"> Encryption settings collection used be Azure Disk Encryption, ca |
| | | 26 | | /// <param name="encryption"> Encryption property can be used to encrypt data at rest with customer managed keys |
| | 0 | 27 | | internal SnapshotUpdate(IDictionary<string, string> tags, SnapshotSku sku, OperatingSystemTypes? osType, int? di |
| | | 28 | | { |
| | 0 | 29 | | Tags = tags; |
| | 0 | 30 | | Sku = sku; |
| | 0 | 31 | | OsType = osType; |
| | 0 | 32 | | DiskSizeGB = diskSizeGB; |
| | 0 | 33 | | EncryptionSettingsCollection = encryptionSettingsCollection; |
| | 0 | 34 | | Encryption = encryption; |
| | 0 | 35 | | } |
| | | 36 | | |
| | | 37 | | /// <summary> Resource tags. </summary> |
| | 40 | 38 | | public IDictionary<string, string> Tags { get; set; } |
| | | 39 | | /// <summary> The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. </summary> |
| | 0 | 40 | | public SnapshotSku Sku { get; set; } |
| | | 41 | | /// <summary> the Operating System type. </summary> |
| | 0 | 42 | | public OperatingSystemTypes? OsType { get; set; } |
| | | 43 | | /// <summary> If creationData.createOption is Empty, this field is mandatory and it indicates the size of the di |
| | 0 | 44 | | public int? DiskSizeGB { get; set; } |
| | | 45 | | /// <summary> Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption sett |
| | 0 | 46 | | public EncryptionSettingsCollection EncryptionSettingsCollection { get; set; } |
| | | 47 | | /// <summary> Encryption property can be used to encrypt data at rest with customer managed keys or platform man |
| | 0 | 48 | | public Encryption Encryption { get; set; } |
| | | 49 | | } |
| | | 50 | | } |