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

DeletedCertificateItem 构造函数

定义

重载

DeletedCertificateItem()

初始化 DeletedCertificateItem 类的新实例。

DeletedCertificateItem(String, CertificateAttributes, IDictionary<String,String>, Byte[], String, Nullable<DateTime>, Nullable<DateTime>)

初始化 DeletedCertificateItem 类的新实例。

DeletedCertificateItem()

Source:
DeletedCertificateItem.cs

初始化 DeletedCertificateItem 类的新实例。

public DeletedCertificateItem ();
Public Sub New ()

适用于

DeletedCertificateItem(String, CertificateAttributes, IDictionary<String,String>, Byte[], String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedCertificateItem.cs

初始化 DeletedCertificateItem 类的新实例。

public DeletedCertificateItem (string id = default, Microsoft.Azure.KeyVault.Models.CertificateAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, byte[] x509Thumbprint = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedCertificateItem : string * Microsoft.Azure.KeyVault.Models.CertificateAttributes * System.Collections.Generic.IDictionary<string, string> * byte[] * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedCertificateItem
Public Sub New (Optional id As String = Nothing, Optional attributes As CertificateAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional x509Thumbprint As Byte() = Nothing, Optional recoveryId As String = Nothing, Optional scheduledPurgeDate As Nullable(Of DateTime) = Nothing, Optional deletedDate As Nullable(Of DateTime) = Nothing)

参数

id
String

证书标识符。

attributes
CertificateAttributes

证书管理属性。

tags
IDictionary<String,String>

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

x509Thumbprint
Byte[]

证书的指纹。

recoveryId
String

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

scheduledPurgeDate
Nullable<DateTime>

计划清除证书的时间(UTC)

deletedDate
Nullable<DateTime>

删除证书的时间(UTC)

适用于