Bagikan melalui


DeletedSecretItem Constructors

Definition

Overloads

DeletedSecretItem()

Initializes a new instance of the DeletedSecretItem class.

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

Initializes a new instance of the DeletedSecretItem class.

DeletedSecretItem()

Source:
DeletedSecretItem.cs

Initializes a new instance of the DeletedSecretItem class.

public DeletedSecretItem ();
Public Sub New ()

Applies to

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

Source:
DeletedSecretItem.cs

Initializes a new instance of the DeletedSecretItem class.

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)

Parameters

id
String

Secret identifier.

attributes
SecretAttributes

The secret management attributes.

tags
IDictionary<String,String>

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

contentType
String

Type of the secret value such as a password.

managed
Nullable<Boolean>

True if the secret'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 secret.

scheduledPurgeDate
Nullable<DateTime>

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

deletedDate
Nullable<DateTime>

The time when the secret was deleted, in UTC

Applies to