Share via


DeletedCertificateItem Constructors

Definition

Overloads

DeletedCertificateItem()

Initializes a new instance of the DeletedCertificateItem class.

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

Initializes a new instance of the DeletedCertificateItem class.

DeletedCertificateItem()

Source:
DeletedCertificateItem.cs

Initializes a new instance of the DeletedCertificateItem class.

public DeletedCertificateItem ();
Public Sub New ()

Applies to

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

Source:
DeletedCertificateItem.cs

Initializes a new instance of the DeletedCertificateItem class.

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)

Parameters

id
String

Certificate identifier.

attributes
CertificateAttributes

The certificate management attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs.

x509Thumbprint
Byte[]

Thumbprint of the certificate.

recoveryId
String

The url of the recovery object, used to identify and recover the deleted certificate.

scheduledPurgeDate
Nullable<DateTime>

The time when the certificate is scheduled to be purged, in UTC

deletedDate
Nullable<DateTime>

The time when the certificate was deleted, in UTC

Applies to