You can use the Start workflows in a series and Start workflows in parallel workflows to run a workflow on a selection of objects.

You cannot run the Start workflows in a series and Start workflows in parallel workflows directly. You must include them in another workflow that you create. To use the Start workflows in a series and Start workflows in parallel workflows to run a workflow on a selection of objects, you must obtain the objects on which to run the workflow. You pass these objects and any other input parameters that the workflow requires to the workflow as an array of properties. The Start workflows in a series and Start workflows in parallel workflows emit the results of running the workflow on the selection of objects as an array of WorkflowToken objects.

You implement the Start workflows in a series and Start workflows in parallel workflows in the same way. The Start workflows in a series workflow runs the workflow on each object sequentially. The Start workflows in parallel workflow runs the workflow on all the objects simultaneously.

Open a workflow for editing in the workflow editor.

1

In the workflow schema, add a scriptable task element or an action to obtain a list of objects on which to run the workflow.

For example, to run a workflow on all the virtual machines in a virtual machine folder, you can add the getAllVirtualMachinesByFolder action to the workflow.

2

Link the scripted element or action and bind the input and output of the scripted element or action to workflow inputs or attributes.

For example, you can bind the vmFolder input of the getAllVirtualMachinesByFolder action to a workflow input parameter and the actionResult output to a workflow attribute in the calling workflow.

3

Add a scriptable task element to cast the list of objects into a properties array.

For example, if the objects on which to run the workflow are an array of virtual machines, allVMs, returned by the actionResult output of the getAllVirtualMachinesByFolder action, you can write the following script to cast the objects into a properties array.

propsArray = new Array();

for each (var vm in allVMs) {
 var prop = new Properties();
 prop.put("vm", vm);
 propsArray.push(prop);
}
4

Link the scriptable task element and bind its inputs and outputs to workflow attributes.

In the example scriptable task element in Step 3, you bind the input to the allVMs array of virtual machines and you create the propsArray output attribute as an array of Properties objects.

5

Add a workflow element to the workflow schema.

6

Select either of the Start workflows in a series or Start workflows in parallel workflows and link the workflow element to the other elements.

7

Bind the wf input of the Start workflows in a series or Start workflows in parallel workflow to the workflow to run on the objects.

For example, to remove any snapshots of all the virtual machines returned by the getAllVirtualMachinesByFolder action, select the Remove all snapshots workflow.

8

Bind the parameters input of the Start workflows in a series or Start workflows in parallel workflow to the array of Properties objects that contains the objects on which to run the workflow.

For example, bind the parameters input to the propsArray attribute defined in Step 4.

9

(Optional) Bind the workflowTokens output of the Start workflows in a series or Start workflows in parallel workflow to an attribute in the workflow.

10

Add and link an end element to the workflow, or continue adding more elements that use the results of running the Start workflows in a series or Start workflows in parallel workflow.

You created a workflow that uses either of the Start workflows in a series or Start workflows in parallel workflows to run a workflow on a selection of objects.