Package version:

Interface EncodedTaskStepUpdateParameters

The properties for updating encoded task step.

interface EncodedTaskStepUpdateParameters {
    contextAccessToken?: string;
    contextPath?: string;
    encodedTaskContent?: string;
    encodedValuesContent?: string;
    type: "EncodedTask";
    values?: SetValue[];
}

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.

encodedTaskContent?: string

Base64 encoded value of the template/definition file content.

encodedValuesContent?: string

Base64 encoded value of the parameters/values file content.

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.