DeletedKeyItem Construtores

Definição

Sobrecargas

DeletedKeyItem()

Inicializa uma nova instância da classe DeletedKeyItem.

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

Inicializa uma nova instância da classe DeletedKeyItem.

DeletedKeyItem()

Origem:
DeletedKeyItem.cs

Inicializa uma nova instância da classe DeletedKeyItem.

public DeletedKeyItem ();
Public Sub New ()

Aplica-se a

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

Origem:
DeletedKeyItem.cs

Inicializa uma nova instância da 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)

Parâmetros

kid
String

Identificador de chave.

attributes
KeyAttributes

Os atributos de gerenciamento de chaves.

tags
IDictionary<String,String>

Metadados específicos do aplicativo na forma de pares chave-valor.

managed
Nullable<Boolean>

True se o tempo de vida da chave for gerenciado pelo cofre de chaves. Se essa for uma chave que dá suporte a um certificado, a opção gerenciada será verdadeira.

recoveryId
String

A URL do objeto de recuperação, usada para identificar e recuperar a chave excluída.

scheduledPurgeDate
Nullable<DateTime>

A hora em que a chave está agendada para ser limpa, em UTC

deletedDate
Nullable<DateTime>

A hora em que a chave foi excluída, em UTC

Aplica-se a