| | 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> disk encryption set update resource. </summary> |
| | 13 | | public partial class DiskEncryptionSetUpdate |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of DiskEncryptionSetUpdate. </summary> |
| 4 | 16 | | public DiskEncryptionSetUpdate() |
| | 17 | | { |
| 4 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of DiskEncryptionSetUpdate. </summary> |
| | 21 | | /// <param name="tags"> Resource tags. </param> |
| | 22 | | /// <param name="activeKey"> Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to |
| 0 | 23 | | internal DiskEncryptionSetUpdate(IDictionary<string, string> tags, KeyVaultAndKeyReference activeKey) |
| | 24 | | { |
| 0 | 25 | | Tags = tags; |
| 0 | 26 | | ActiveKey = activeKey; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> Resource tags. </summary> |
| 20 | 30 | | public IDictionary<string, string> Tags { get; set; } |
| | 31 | | /// <summary> Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to unwrap the enc |
| 0 | 32 | | public KeyVaultAndKeyReference ActiveKey { get; set; } |
| | 33 | | } |
| | 34 | | } |