Package version:

An interface representing a KeyVault Secret, with its name, value and SecretProperties.

interface KeyVaultSecret {
    name: string;
    properties: SecretProperties;
    value?: string;
}

Properties

name: string

The name of the secret.

properties: SecretProperties

The properties of the secret.

value?: string

The value of the secret.