DeletedSecretBundle コンストラクター

定義

オーバーロード

DeletedSecretBundle()

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

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

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

DeletedSecretBundle()

ソース:
DeletedSecretBundle.cs

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

public DeletedSecretBundle ();
Public Sub New ()

適用対象

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

ソース:
DeletedSecretBundle.cs

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

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

パラメーター

value
String

シークレット値。

id
String

シークレット ID。

contentType
String

シークレットのコンテンツ タイプ。

attributes
SecretAttributes

シークレット管理属性。

tags
IDictionary<String,String>

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

kid
String

これが KV 証明書をバックアップするシークレットの場合、このフィールドは KV 証明書をバッキングする対応するキーを指定します。

managed
Nullable<Boolean>

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

recoveryId
String

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

scheduledPurgeDate
Nullable<DateTime>

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

deletedDate
Nullable<DateTime>

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

適用対象