Package version:

The properties of a overridable value that can be passed to a task template.

interface SetValue {
    isSecret?: boolean;
    name: string;
    value: string;
}

Properties

Properties

isSecret?: boolean

Flag to indicate whether the value represents a secret or not.

name: string

The name of the overridable value.

value: string

The overridable value.