Package version:

Interface KeyVaultCertificateWithPolicy

An interface representing a certificate with its policy

interface KeyVaultCertificateWithPolicy {
    cer?: Uint8Array;
    id?: string;
    keyId?: string;
    name: string;
    policy?: any;
    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.

policy?: any

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

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.