A wrapper class for a generic variable.

interface AzureKeyVaultVariableValue {
    contentType?: string;
    enabled?: boolean;
    expires?: Date;
    isReadOnly?: boolean;
    isSecret?: boolean;
    value?: string;
}

Hierarchy (View Summary)

Properties

contentType?: string
enabled?: boolean
expires?: Date
isReadOnly?: boolean

Indicates whether the variable can be changed during script's execution runtime.

isSecret?: boolean

Indicates whether the variable should be encrypted at rest.

value?: string

The value of the variable.