Share via


DeletedKeyBundle Constructors

Definition

Overloads

DeletedKeyBundle()

Initializes a new instance of the DeletedKeyBundle class.

DeletedKeyBundle(JsonWebKey, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the DeletedKeyBundle class.

DeletedKeyBundle()

Source:
DeletedKeyBundle.cs

Initializes a new instance of the DeletedKeyBundle class.

public DeletedKeyBundle ();
Public Sub New ()

Applies to

DeletedKeyBundle(JsonWebKey, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedKeyBundle.cs

Initializes a new instance of the DeletedKeyBundle class.

public DeletedKeyBundle (Microsoft.Azure.KeyVault.WebKey.JsonWebKey key = default, Microsoft.Azure.KeyVault.Models.KeyAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, bool? managed = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedKeyBundle : Microsoft.Azure.KeyVault.WebKey.JsonWebKey * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> * Nullable<bool> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedKeyBundle
Public Sub New (Optional key As JsonWebKey = Nothing, Optional attributes As KeyAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional managed As Nullable(Of Boolean) = Nothing, Optional recoveryId As String = Nothing, Optional scheduledPurgeDate As Nullable(Of DateTime) = Nothing, Optional deletedDate As Nullable(Of DateTime) = Nothing)

Parameters

key
JsonWebKey

The Json web key.

attributes
KeyAttributes

The key management attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs.

managed
Nullable<Boolean>

True if the key's lifetime is managed by key vault. If this is a key backing a certificate, then managed will be true.

recoveryId
String

The url of the recovery object, used to identify and recover the deleted key.

scheduledPurgeDate
Nullable<DateTime>

The time when the key is scheduled to be purged, in UTC

deletedDate
Nullable<DateTime>

The time when the key was deleted, in UTC

Applies to