feat(proxmox): add Proxmox CLI auto-detection and interactive action setup improvements

This commit is contained in:
2026-04-02 08:29:16 +00:00
parent 0d863a1028
commit 067a7666e4
8 changed files with 564 additions and 145 deletions

View File

@@ -116,6 +116,8 @@ export interface IActionConfig {
proxmoxForceStop?: boolean;
/** Skip TLS verification for self-signed certificates (default: true) */
proxmoxInsecure?: boolean;
/** Proxmox operation mode: 'auto' detects CLI tools, 'cli' forces CLI, 'api' forces REST API (default: 'auto') */
proxmoxMode?: 'auto' | 'api' | 'cli';
}
/**