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

DeletedSecretItem 构造函数

定义

重载

DeletedSecretItem()

初始化 DeletedSecretItem 类的新实例。

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

初始化 DeletedSecretItem 类的新实例。

DeletedSecretItem()

Source:
DeletedSecretItem.cs

初始化 DeletedSecretItem 类的新实例。

public DeletedSecretItem ();
Public Sub New ()

适用于

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

Source:
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。

recoveryId
String

恢复对象的 URL,用于标识和恢复已删除的机密。

scheduledPurgeDate
Nullable<DateTime>

计划清除机密的时间(UTC)

deletedDate
Nullable<DateTime>

删除机密的时间(UTC)

适用于