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

DeletedKeyBundle 构造函数

定义

重载

DeletedKeyBundle()

初始化 DeletedKeyBundle 类的新实例。

DeletedKeyBundle(JsonWebKey, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

初始化 DeletedKeyBundle 类的新实例。

DeletedKeyBundle()

Source:
DeletedKeyBundle.cs

初始化 DeletedKeyBundle 类的新实例。

public DeletedKeyBundle ();
Public Sub New ()

适用于

DeletedKeyBundle(JsonWebKey, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedKeyBundle.cs

初始化 DeletedKeyBundle 类的新实例。

public DeletedKeyBundle (Microsoft.Azure.KeyVault.WebKey.JsonWebKey key = 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.DeletedKeyBundle : Microsoft.Azure.KeyVault.WebKey.JsonWebKey * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> * Nullable<bool> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedKeyBundle
Public Sub New (Optional key As JsonWebKey = 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)

参数

key
JsonWebKey

Json Web 密钥。

attributes
KeyAttributes

密钥管理属性。

tags
IDictionary<String,String>

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

managed
Nullable<Boolean>

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

recoveryId
String

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

scheduledPurgeDate
Nullable<DateTime>

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

deletedDate
Nullable<DateTime>

删除密钥的时间(UTC)

适用于