你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

SecretAttributes 构造函数

定义

重载

SecretAttributes()

初始化 SecretAttributes 类的新实例。

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

初始化 SecretAttributes 类的新实例。

SecretAttributes()

Source:
SecretAttributes.cs

初始化 SecretAttributes 类的新实例。

public SecretAttributes ();
Public Sub New ()

适用于

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

Source:
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”、“Recoverable+Purgeable”、“Recoverable”、“Recoverable+ProtectedSubscription”

适用于