pve_guest_config_set
Edit a guest's configuration (cores, memory, network, onboot) with a dry-run plan showing per-key diff. Confirm to apply changes; returns prior config for easy revert.
Instructions
MUTATION: edit a guest's config (cores/memory/net/onboot/...). Dry-run by default — the PLAN shows the exact per-key diff; confirm=True to execute. Synchronous — returns {prior_config, applied, deleted}; prior_config is what makes the change revertible via pve_guest_config_revert.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Guest type: `lxc` for a container or `qemu` for a VM. | lxc |
| node | No | PVE node the guest runs on. Omit to resolve it automatically from the cluster. | |
| vmid | Yes | Numeric ID of the guest — VMID for a QEMU VM or CTID for an LXC container. | |
| changes | Yes | Config keys to change, e.g. {'cores': 4, 'memory': 2048, 'onboot': 1}. | |
| confirm | No | Leave `false` (default) to get a dry-run PLAN with the per-key diff; set `true` to execute. | |
| proximo_target | No | Which configured Proxmox target to run this call against — a target name from your multi-target config (a specific PVE/PBS/PMG/PDM box). Omit to use the single/default target from the environment; the selection applies only to this call. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |