Package version:

The parameters for updating a task.

interface TaskUpdateParameters {
    agentConfiguration?: AgentProperties;
    agentPoolName?: string;
    credentials?: Credentials;
    identity?: IdentityProperties;
    logTemplate?: string;
    platform?: PlatformUpdateParameters;
    status?: string;
    step?: TaskStepUpdateParametersUnion;
    tags?: {
        [propertyName: string]: string;
    };
    timeout?: number;
    trigger?: TriggerUpdateParameters;
}

Properties

agentConfiguration?: AgentProperties

The machine configuration of the run agent.

agentPoolName?: string

The dedicated agent pool for the task.

credentials?: Credentials

The parameters that describes a set of credentials that will be used when this run is invoked.

Identity for the resource.

logTemplate?: string

The template that describes the repository and tag information for run log artifact.

The platform properties against which the run has to happen.

status?: string

The current status of task.

The properties for updating a task step.

tags?: {
    [propertyName: string]: string;
}

The ARM resource tags.

timeout?: number

Run timeout in seconds.

The properties for updating trigger properties.