
Proxmox VE GetTaskStatus
CertifiedGet the status of a Proxmox VE async task by UPID
Proxmox VE GetTaskStatus
Get the status of a Proxmox VE async task by UPID
Retrieves the current status of a task from /nodes/{node}/tasks/{upid}/status.
type: io.kestra.plugin.proxmox.task.GetTaskStatusExamples
Get task status
id: get_task_status
namespace: company.team
tasks:
- id: status
type: io.kestra.plugin.proxmox.task.GetTaskStatus
host: "{{ secret('PROXMOX_HOST') }}"
username: "{{ secret('PROXMOX_USERNAME') }}"
password: "{{ secret('PROXMOX_PASSWORD') }}"
node: pve
upid: "UPID:pve:00001234:00000000:65000000:qmstart:100:root@pam:"
Properties
host *Requiredstring
Proxmox host
Hostname or IP address of the Proxmox VE node (no scheme, no port).
node *Requiredstring
Proxmox node name
Name of the cluster node that scopes all API calls (e.g. pve, node1).
upid *Requiredstring
Task UPID
Proxmox Unique Process ID of the task to query.
password string
Password
Password for ticket-based authentication.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
port integerstring
8006API port
Defaults to 8006.
tokenId string
API token ID
Full token identifier in the form user@realm!tokenname (e.g. root@pam!mytoken). Use together with tokenSecret.
tokenSecret string
API token secret
The UUID secret associated with the token ID.
username string
Username
PAM or PVE user in the form user@realm (e.g. root@pam). Required when using ticket-based auth.
verifySsl booleanstring
trueVerify SSL
Validate the server TLS certificate. Defaults to true; set to false only for trusted networks with self-signed Proxmox certificates.