Share via


DeletedCertificateBundle Constructors

Definition

Overloads

DeletedCertificateBundle()

Initializes a new instance of the DeletedCertificateBundle class.

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

Initializes a new instance of the DeletedCertificateBundle class.

DeletedCertificateBundle()

Source:
DeletedCertificateBundle.cs

Initializes a new instance of the DeletedCertificateBundle class.

public DeletedCertificateBundle ();
Public Sub New ()

Applies to

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

Source:
DeletedCertificateBundle.cs

Initializes a new instance of the DeletedCertificateBundle class.

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

Parameters

id
String

The certificate id.

kid
String

The key id.

sid
String

The secret id.

x509Thumbprint
Byte[]

Thumbprint of the certificate.

policy
CertificatePolicy

The management policy.

cer
Byte[]

CER contents of x509 certificate.

contentType
String

The content type of the secret.

attributes
CertificateAttributes

The certificate attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs

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