Package version:

Interface FileTaskStepUpdateParameters

The properties of updating a task step.

interface FileTaskStepUpdateParameters {
    contextAccessToken?: string;
    contextPath?: string;
    taskFilePath?: string;
    type: "FileTask";
    values?: SetValue[];
    valuesFilePath?: string;
}

Hierarchy (view full)

Properties

contextAccessToken?: string

The token (git PAT or SAS token of storage account blob) associated with the context for a step.

contextPath?: string

The URL(absolute or relative) of the source context for the task step.

taskFilePath?: string

The task template/definition file path relative to the source context.

type

Polymorphic discriminator, which specifies the different types this object can be

values?: SetValue[]

The collection of overridable values that can be passed when running a task.

valuesFilePath?: string

The values/parameters file path relative to the source context.