| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.ResourceManager.KeyVault.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Deleted vault information with extended details. </summary> |
| | | 11 | | public partial class DeletedVault |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of DeletedVault. </summary> |
| | 0 | 14 | | internal DeletedVault() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of DeletedVault. </summary> |
| | | 19 | | /// <param name="id"> The resource ID for the deleted key vault. </param> |
| | | 20 | | /// <param name="name"> The name of the key vault. </param> |
| | | 21 | | /// <param name="type"> The resource type of the key vault. </param> |
| | | 22 | | /// <param name="properties"> Properties of the vault. </param> |
| | 188 | 23 | | internal DeletedVault(string id, string name, string type, DeletedVaultProperties properties) |
| | | 24 | | { |
| | 188 | 25 | | Id = id; |
| | 188 | 26 | | Name = name; |
| | 188 | 27 | | Type = type; |
| | 188 | 28 | | Properties = properties; |
| | 188 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> The resource ID for the deleted key vault. </summary> |
| | 12 | 32 | | public string Id { get; } |
| | | 33 | | /// <summary> The name of the key vault. </summary> |
| | 36 | 34 | | public string Name { get; } |
| | | 35 | | /// <summary> The resource type of the key vault. </summary> |
| | 12 | 36 | | public string Type { get; } |
| | | 37 | | /// <summary> Properties of the vault. </summary> |
| | 72 | 38 | | public DeletedVaultProperties Properties { get; } |
| | | 39 | | } |
| | | 40 | | } |