Pool Start Task
data class PoolStartTask(val commandLine: String, val commonEnvironmentProperties: Map<String, String>? = null, val containers: List<PoolStartTaskContainer>? = null, val resourceFiles: List<PoolStartTaskResourceFile>? = null, val taskRetryMaximum: Int? = null, val userIdentity: PoolStartTaskUserIdentity, val waitForSuccess: Boolean? = null)
Constructors
Link copied to clipboard
fun PoolStartTask(commandLine: String, commonEnvironmentProperties: Map<String, String>? = null, containers: List<PoolStartTaskContainer>? = null, resourceFiles: List<PoolStartTaskResourceFile>? = null, taskRetryMaximum: Int? = null, userIdentity: PoolStartTaskUserIdentity, waitForSuccess: Boolean? = null)
Types
Properties
Link copied to clipboard
Link copied to clipboard
A container
block is the settings for the container under which the start task runs. When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR
(the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container.
Link copied to clipboard