Package version:

Interface KeyVaultCertificateIdentifier

Represents the segments that compose a Key Vault Certificate Id.

interface KeyVaultCertificateIdentifier {
    name: string;
    sourceId: string;
    vaultUrl: string;
    version?: string;
}

Properties

name: string

The name of the Key Vault Certificate.

sourceId: string

The complete representation of the Key Vault Certificate Id. For example:

https://.vault.azure.net/certificates//

vaultUrl: string

The URL of the Azure Key Vault instance to which the Certificate belongs.

version?: string

The version of Key Vault Certificate. Might be undefined.