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

DeletedKeyItem 构造函数

定义

重载

DeletedKeyItem()

初始化 DeletedKeyItem 类的新实例。

DeletedKeyItem(String, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

初始化 DeletedKeyItem 类的新实例。

DeletedKeyItem()

Source:
DeletedKeyItem.cs

初始化 DeletedKeyItem 类的新实例。

public DeletedKeyItem ();
Public Sub New ()

适用于

DeletedKeyItem(String, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedKeyItem.cs

初始化 DeletedKeyItem 类的新实例。

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

参数

kid
String

密钥标识符。

attributes
KeyAttributes

密钥管理属性。

tags
IDictionary<String,String>

键/值对形式的应用程序特定元数据。

managed
Nullable<Boolean>

如此 如果密钥的生存期由密钥保管库管理。 如果这是支持证书的密钥,则托管为 true。

recoveryId
String

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

scheduledPurgeDate
Nullable<DateTime>

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

deletedDate
Nullable<DateTime>

删除密钥的时间(UTC)

适用于