次の方法で共有


DeletedSecretItem コンストラクター

定義

オーバーロード

DeletedSecretItem()

DeletedSecretItem クラスの新しいインスタンスを初期化します。

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

DeletedSecretItem クラスの新しいインスタンスを初期化します。

DeletedSecretItem()

ソース:
DeletedSecretItem.cs

DeletedSecretItem クラスの新しいインスタンスを初期化します。

public DeletedSecretItem ();
Public Sub New ()

適用対象

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

ソース:
DeletedSecretItem.cs

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)

パラメーター

id
String

シークレット識別子。

attributes
SecretAttributes

シークレット管理属性。

tags
IDictionary<String,String>

キーと値のペアの形式による、アプリケーション固有のメタデータ。

contentType
String

パスワードなどのシークレット値の種類。

managed
Nullable<Boolean>

True を指定すると、シークレットの有効期間がキー コンテナーによって管理されます。 これが証明書をバックアップするキーの場合、マネージドは true になります。

recoveryId
String

削除されたシークレットを識別して回復するために使用される回復オブジェクトの URL。

scheduledPurgeDate
Nullable<DateTime>

シークレットの消去がスケジュールされている時刻 (UTC)

deletedDate
Nullable<DateTime>

シークレットが削除された時刻 (UTC)

適用対象