mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-21 16:49:03 +01:00
Updates VMID parameter and field types from int to uint64 throughout the Proxmox provider implementation, including API request structures, provider structs, client methods, and LXC-related functions. Also updates string conversion calls from strconv.Itoa to strconv.FormatUint.
7 lines
172 B
Go
7 lines
172 B
Go
package proxmoxapi
|
|
|
|
type ActionRequest struct {
|
|
Node string `uri:"node" binding:"required"`
|
|
VMID uint64 `uri:"vmid" binding:"required"`
|
|
} // @name ProxmoxVMActionRequest
|