DeletedVaultProperties Constructors

Definition

Overloads

DeletedVaultProperties()

Initializes a new instance of the DeletedVaultProperties class.

DeletedVaultProperties(String, String, Nullable<DateTime>, Nullable<DateTime>, IDictionary<String,String>)

Initializes a new instance of the DeletedVaultProperties class.

DeletedVaultProperties()

Initializes a new instance of the DeletedVaultProperties class.

public DeletedVaultProperties ();
Public Sub New ()

Applies to

DeletedVaultProperties(String, String, Nullable<DateTime>, Nullable<DateTime>, IDictionary<String,String>)

Initializes a new instance of the DeletedVaultProperties class.

public DeletedVaultProperties (string vaultId = default, string location = default, DateTime? deletionDate = default, DateTime? scheduledPurgeDate = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.KeyVault.Models.DeletedVaultProperties : string * string * Nullable<DateTime> * Nullable<DateTime> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.KeyVault.Models.DeletedVaultProperties
Public Sub New (Optional vaultId As String = Nothing, Optional location As String = Nothing, Optional deletionDate As Nullable(Of DateTime) = Nothing, Optional scheduledPurgeDate As Nullable(Of DateTime) = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

vaultId
String

The resource id of the original vault.

location
String

The location of the original vault.

deletionDate
Nullable<DateTime>

The deleted date.

scheduledPurgeDate
Nullable<DateTime>

The scheduled purged date.

tags
IDictionary<String,String>

Tags of the original vault.

Applies to