power_vm
Control VMware Fusion virtual machines by executing power actions such as turning on, off, shutting down, suspending, pausing, or unpausing a specified VM.
Instructions
Perform a power action on a VM. Valid actions are 'on', 'off', 'shutdown', 'suspend', 'pause', 'unpause'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
vm_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"title": "Action",
"type": "string"
},
"vm_id": {
"title": "Vm Id",
"type": "string"
}
},
"required": [
"vm_id",
"action"
],
"type": "object"
}