Files
proxui/platform/jobs/proxmox_task.go
T
2026-06-11 11:29:29 +02:00

16 lines
477 B
Go

package jobs
const TypeProxmoxTaskPoll = "proxmox.task.poll"
type ProxmoxTaskPollPayload struct {
ClusterID string `json:"cluster_id"`
Node string `json:"node"`
UPID string `json:"upid"`
TargetType string `json:"target_type"`
TargetID string `json:"target_id"`
TenantID string `json:"tenant_id"`
ProfileID string `json:"profile_id,omitempty"`
Action string `json:"action"`
SuccessStatus string `json:"success_status"`
}