| | | 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 | | using Azure.Core; |
| | | 11 | | |
| | | 12 | | namespace Azure.ResourceManager.KeyVault.Models |
| | | 13 | | { |
| | | 14 | | /// <summary> Properties of the deleted vault. </summary> |
| | | 15 | | public partial class DeletedVaultProperties |
| | | 16 | | { |
| | | 17 | | /// <summary> Initializes a new instance of DeletedVaultProperties. </summary> |
| | 0 | 18 | | internal DeletedVaultProperties() |
| | | 19 | | { |
| | 0 | 20 | | Tags = new ChangeTrackingDictionary<string, string>(); |
| | 0 | 21 | | } |
| | | 22 | | |
| | | 23 | | /// <summary> Initializes a new instance of DeletedVaultProperties. </summary> |
| | | 24 | | /// <param name="vaultId"> The resource id of the original vault. </param> |
| | | 25 | | /// <param name="location"> The location of the original vault. </param> |
| | | 26 | | /// <param name="deletionDate"> The deleted date. </param> |
| | | 27 | | /// <param name="scheduledPurgeDate"> The scheduled purged date. </param> |
| | | 28 | | /// <param name="tags"> Tags of the original vault. </param> |
| | 188 | 29 | | internal DeletedVaultProperties(string vaultId, string location, DateTimeOffset? deletionDate, DateTimeOffset? s |
| | | 30 | | { |
| | 188 | 31 | | VaultId = vaultId; |
| | 188 | 32 | | Location = location; |
| | 188 | 33 | | DeletionDate = deletionDate; |
| | 188 | 34 | | ScheduledPurgeDate = scheduledPurgeDate; |
| | 188 | 35 | | Tags = tags; |
| | 188 | 36 | | } |
| | | 37 | | |
| | | 38 | | /// <summary> The resource id of the original vault. </summary> |
| | 24 | 39 | | public string VaultId { get; } |
| | | 40 | | /// <summary> The location of the original vault. </summary> |
| | 12 | 41 | | public string Location { get; } |
| | | 42 | | /// <summary> The deleted date. </summary> |
| | 12 | 43 | | public DateTimeOffset? DeletionDate { get; } |
| | | 44 | | /// <summary> The scheduled purged date. </summary> |
| | 12 | 45 | | public DateTimeOffset? ScheduledPurgeDate { get; } |
| | | 46 | | /// <summary> Tags of the original vault. </summary> |
| | 12 | 47 | | public IReadOnlyDictionary<string, string> Tags { get; } |
| | | 48 | | } |
| | | 49 | | } |