DeletedSecretItem Construtores

Definição

Sobrecargas

DeletedSecretItem()

Inicializa uma nova instância da classe DeletedSecretItem.

DeletedSecretItem(String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Inicializa uma nova instância da classe DeletedSecretItem.

DeletedSecretItem()

Origem:
DeletedSecretItem.cs

Inicializa uma nova instância da classe DeletedSecretItem.

public DeletedSecretItem ();
Public Sub New ()

Aplica-se a

DeletedSecretItem(String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Origem:
DeletedSecretItem.cs

Inicializa uma nova instância da classe DeletedSecretItem.

public DeletedSecretItem (string id = default, Microsoft.Azure.KeyVault.Models.SecretAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string contentType = default, bool? managed = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedSecretItem : string * Microsoft.Azure.KeyVault.Models.SecretAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<bool> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedSecretItem
Public Sub New (Optional id As String = Nothing, Optional attributes As SecretAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional contentType As 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

id
String

Identificador de segredo.

attributes
SecretAttributes

Os atributos de gerenciamento de segredos.

tags
IDictionary<String,String>

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

contentType
String

Tipo do valor do segredo, como uma senha.

managed
Nullable<Boolean>

True se o tempo de vida do segredo for gerenciado pelo cofre de chaves. Se essa for uma chave que faz backup de um certificado, a gerenciada será verdadeira.

recoveryId
String

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

scheduledPurgeDate
Nullable<DateTime>

A hora em que o segredo está agendado para ser limpo, em UTC

deletedDate
Nullable<DateTime>

A hora em que o segredo foi excluído, em UTC

Aplica-se a