Partager via


DeletedKeyItem Constructeurs

Définition

Surcharges

DeletedKeyItem()

Initialise une nouvelle instance de la classe DeletedKeyItem.

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

Initialise une nouvelle instance de la classe DeletedKeyItem.

DeletedKeyItem()

Source:
DeletedKeyItem.cs

Initialise une nouvelle instance de la classe DeletedKeyItem.

public DeletedKeyItem ();
Public Sub New ()

S’applique à

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

Source:
DeletedKeyItem.cs

Initialise une nouvelle instance de la classe DeletedKeyItem.

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)

Paramètres

kid
String

Identificateur de clé.

attributes
KeyAttributes

Attributs de gestion des clés.

tags
IDictionary<String,String>

Métadonnées spécifiques d’application sous la forme de paires clé/valeur.

managed
Nullable<Boolean>

True si la durée de vie de la clé est gérée par le coffre de clés. S’il s’agit d’une clé qui sauvegarde un certificat, la valeur managée est true.

recoveryId
String

URL de l’objet de récupération, utilisée pour identifier et récupérer la clé supprimée.

scheduledPurgeDate
Nullable<DateTime>

Heure à laquelle la clé est planifiée pour être vidée, en UTC

deletedDate
Nullable<DateTime>

Heure à laquelle la clé a été supprimée, en UTC

S’applique à