Using the Switch element in vRealize Orchestrator
vRealize Orchestrator (v6) contains a switch element that can be used to evaluate a series of values. In scripting and programming languages the switch construct is also named Case or Do Case.
For example if we want to check the status of a VM and there are three possible values then we would have to use three if statements or three decision elements to check what the status is.
if status = poweredOn
if status = poweredOff
if status = suspended