次の方法で共有


SecretAttributes コンストラクター

定義

オーバーロード

SecretAttributes()

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

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

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

SecretAttributes()

ソース:
SecretAttributes.cs

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

public SecretAttributes ();
Public Sub New ()

適用対象

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

ソース:
SecretAttributes.cs

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

public SecretAttributes (bool? enabled = default, DateTime? notBefore = default, DateTime? expires = default, DateTime? created = default, DateTime? updated = default, string recoveryLevel = default);
new Microsoft.Azure.KeyVault.Models.SecretAttributes : Nullable<bool> * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.KeyVault.Models.SecretAttributes
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional notBefore As Nullable(Of DateTime) = Nothing, Optional expires As Nullable(Of DateTime) = Nothing, Optional created As Nullable(Of DateTime) = Nothing, Optional updated As Nullable(Of DateTime) = Nothing, Optional recoveryLevel As String = Nothing)

パラメーター

enabled
Nullable<Boolean>

オブジェクトが有効かどうかを判断します。

notBefore
Nullable<DateTime>

UTC の日付より前ではありません。

expires
Nullable<DateTime>

有効期限 (UTC)。

created
Nullable<DateTime>

作成時刻 (UTC)。

updated
Nullable<DateTime>

UTC での最終更新時刻。

recoveryLevel
String

現在のコンテナー内のシークレットに対して現在有効になっている削除回復レベルを反映します。 "Purgeable" が含まれている場合は、特権ユーザーによってシークレットを完全に削除できます。それ以外の場合は、保持間隔の最後に、システムのみがシークレットを消去できます。 使用可能な値は、'Purgeable'、'Recoverable+Purgeable'、'Recoverable'、'Recoverable+ProtectedSubscription' です。

適用対象