Package version:

An interface representing a certificate without the certificate's policy

interface KeyVaultCertificate {
    cer?: Uint8Array;
    id?: string;
    keyId?: string;
    name: string;
    properties: CertificateProperties;
    secretId?: string;
}

Hierarchy (view full)

Properties

cer?: Uint8Array

CER contents of x509 certificate.

id?: string

Certificate identifier. NOTE: This property will not be serialized. It can only be populated by the server.

keyId?: string

The key id. NOTE: This property will not be serialized. It can only be populated by the server.

name: string

The name of certificate.

The properties of the certificate

secretId?: string

The secret id. NOTE: This property will not be serialized. It can only be populated by the server.