Package version:

The properties of a encoded task step.

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

Hierarchy (view full)

Properties

baseImageDependencies?: BaseImageDependency[]

List of base image dependencies for a step. NOTE: This property will not be serialized. It can only be populated by the server.

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.