Represents a variable used by a build definition.

interface BuildDefinitionVariable {
    allowOverride?: boolean;
    isSecret?: boolean;
    value?: string;
}

Properties

allowOverride?: boolean

Indicates whether the value can be set at queue time.

isSecret?: boolean

Indicates whether the variable's value is a secret.

value?: string

The value of the variable.