modifyJobStep

Back to index

Summary

Transitions an externally managed job step through its lifecycle (pending, runnable, running, or complete) by setting the step's status property.
jobStepId
UUIDrequired
The primary key of the job step.
status
Stringoptional
The starting status for the step.
Possible values: "pending", "runnable", "scheduled", "running", "completed"

Usage

Perl

$cmdr->modifyJobStep( "test-jobStepId" # jobStepId # optionals );

ectool

ectool modifyJobStep \ "test-jobStepId" `# jobStepId` \ # optionals

Examples

Perl

$cmdr->modifyJobStep("4fa765dd-73f1-11e3-b67e-b0a420524153", {status => "running"});

ectool

ectool modifyJobStep 4fa765dd-73f1-11e3-b67e-b0a420524153 --status "running"