SecretItem コンストラクター

定義

オーバーロード

SecretItem()

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

SecretItem(String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>)

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

SecretItem()

ソース:
SecretItem.cs

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

public SecretItem ();
Public Sub New ()

適用対象

SecretItem(String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>)

ソース:
SecretItem.cs

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

public SecretItem (string id = default, Microsoft.Azure.KeyVault.Models.SecretAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string contentType = default, bool? managed = default);
new Microsoft.Azure.KeyVault.Models.SecretItem : string * Microsoft.Azure.KeyVault.Models.SecretAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<bool> -> Microsoft.Azure.KeyVault.Models.SecretItem
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)

パラメーター

id
String

シークレット識別子。

attributes
SecretAttributes

シークレット管理属性。

tags
IDictionary<String,String>

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

contentType
String

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

managed
Nullable<Boolean>

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

適用対象