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

Hierarchy (View Summary)

Properties

contentType?: string

Gets or sets the content type of key vault variable value.

enabled?: boolean

Indicates the vault variable value enabled or not.

expires?: Date

Gets or sets the expire time of key vault variable value.

isReadOnly?: boolean

Gets or sets if the variable is read only or not.

isSecret?: boolean

Gets or sets as the variable is secret or not.

value?: string

Gets or sets the value.