FileTaskStepArgs

data class FileTaskStepArgs(val contextAccessToken: Output<String>? = null, val contextPath: Output<String>? = null, val taskFilePath: Output<String>, val type: Output<String>, val values: Output<List<SetValueArgs>>? = null, val valuesFilePath: Output<String>? = null) : ConvertibleToJava<FileTaskStepArgs>

The properties of a task step.

Constructors

Link copied to clipboard
constructor(contextAccessToken: Output<String>? = null, contextPath: Output<String>? = null, taskFilePath: Output<String>, type: Output<String>, values: Output<List<SetValueArgs>>? = null, valuesFilePath: Output<String>? = null)

Properties

Link copied to clipboard
val contextAccessToken: Output<String>? = null

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

Link copied to clipboard
val contextPath: Output<String>? = null

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

Link copied to clipboard
val taskFilePath: Output<String>

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

Link copied to clipboard
val type: Output<String>

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

Link copied to clipboard
val values: Output<List<SetValueArgs>>? = null

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

Link copied to clipboard
val valuesFilePath: Output<String>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): FileTaskStepArgs