The operation configuration file is required for menu operation workflows. It specifies the aspects of the custom menu option in the vCloud Automation Center console such as the display text, which roles have access to the option, and the machine states for which the option is available.
The following is an example of a complete operation configuration file:
<?xml version="1.0" encoding="utf-8" ?> <customOperations xmlns="http://www.dynamicops.com/schemas/2009/OperationConfig/"> <operation name="WFMachineMenu1" displayName="Execute Machine Menu task"> <authorizedTasks> <task>VRM User Custom Event</task> <task>VRM Support Custom Event</task> <task>Group Administrator Custom Event</task> <task>Enterprise Administrator Custom Event</task> <task>VRM Administrator Custom Event</task> </authorizedTasks> <machineStates> <state>On</state> <state>Off</state> </machineStates> </operation> </customOperations>