共用方式為


DeletedKeyItem Constructors

Definition

Overloads

DeletedKeyItem()

Initializes a new instance of the DeletedKeyItem class.

DeletedKeyItem(String, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the DeletedKeyItem class.

DeletedKeyItem()

Source:
DeletedKeyItem.cs

Initializes a new instance of the DeletedKeyItem class.

public DeletedKeyItem ();
Public Sub New ()

Applies to

DeletedKeyItem(String, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedKeyItem.cs

Initializes a new instance of the DeletedKeyItem class.

public DeletedKeyItem (string kid = 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.DeletedKeyItem : string * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> * Nullable<bool> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedKeyItem
Public Sub New (Optional kid As String = 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

kid
String

Key identifier.

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