EncodedTaskStepResponse

data class EncodedTaskStepResponse(val baseImageDependencies: List<BaseImageDependencyResponse>, val contextAccessToken: String? = null, val contextPath: String? = null, val encodedTaskContent: String, val encodedValuesContent: String? = null, val type: String, val values: List<SetValueResponse>? = null)

The properties of a encoded task step.

Constructors

Link copied to clipboard
constructor(baseImageDependencies: List<BaseImageDependencyResponse>, contextAccessToken: String? = null, contextPath: String? = null, encodedTaskContent: String, encodedValuesContent: String? = null, type: String, values: List<SetValueResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of base image dependencies for a step.

Link copied to clipboard

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

Link copied to clipboard
val contextPath: String? = null

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

Link copied to clipboard

Base64 encoded value of the template/definition file content.

Link copied to clipboard

Base64 encoded value of the parameters/values file content.

Link copied to clipboard

The type of the step. Expected value is 'EncodedTask'.

Link copied to clipboard

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