WorkflowRemoteCommandStep Data Type

A workflow remote command step.

Namespace
(Default)
Properties
name data type type namespace min/max occurs description
captureOutput string element 0/1 Will the output from the remote system be captured for this step.
commandLine string element 0/1 Returns the command line this step will attempt to execute on the remote system.
exitCode string element 0/1 Get the exit code returned from the remote system after the command has been executed.
output string element 0/1 Get the resultant output from the command after it has executed.
proceedToNextStepOnFailure string element 0/1 Will the step proceed to the next step if the remote command fails.
timeoutInSeconds int element 1/1 Current timeout before this steps is set to failed.
Properties inherited from WorkflowStep
alreadyActioned string element 0/1 Has this already been completed or skipped?.
completedTimestamp string element 0/1 Gets the completed timestamp.
condition string element 0/1 Gets the condition.
domainCredential ManagedObjectReference element 0/1 Gets the domain credential.
duration string element 0/1 Gets the duration.
error string element 0/1 Gets the error.
guestOSCredential ManagedObjectReference element 0/1 The credential used to access the Guest OS.
id long element 1/1 Gets the id.
name string element 0/1 Gets the name.
runningWorkflowId long element 1/1 Gets the running workflow id.
skipped string element 0/1 Gets the skipped.
startTimestamp string element 0/1 Gets the start timestamp.
stepNumber int element 1/1 Gets the step number.
type WorkflowStepType element 0/1 Gets the type.

Example

<WorkflowRemoteCommandStep>
  <proceedToNextStepOnFailure>...</proceedToNextStepOnFailure>
  <commandLine>...</commandLine>
  <captureOutput>...</captureOutput>
  <timeoutInSeconds>...</timeoutInSeconds>
  <exitCode>...</exitCode>
  <output>...</output>
  <id>...</id>
  <name>...</name>
  <type>...</type>
  <stepNumber>...</stepNumber>
  <runningWorkflowId>...</runningWorkflowId>
  <condition>...</condition>
  <alreadyActioned>...</alreadyActioned>
  <startTimestamp>...</startTimestamp>
  <completedTimestamp>...</completedTimestamp>
  <error>...</error>
  <skipped>...</skipped>
  <duration>...</duration>
  <guestOSCredential>
    <displayName>...</displayName>
    <type>...</type>
    <id>...</id>
  </guestOSCredential>
  <domainCredential>
    <displayName>...</displayName>
    <type>...</type>
    <id>...</id>
  </domainCredential>
</WorkflowRemoteCommandStep>