0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-04 12:32:59 +00:00

Merge pull request #16 from bpg/lxc-deployment-error

Fix JSON unmarshal error when deploying LCX container
This commit is contained in:
Pavel Boldyrev 2021-09-09 14:43:50 -04:00 committed by GitHub
commit 4fe189b4cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ type VirtualEnvironmentContainerGetStatusResponseData struct {
SwapAllocation *int `json:"maxswap,omitempty"` SwapAllocation *int `json:"maxswap,omitempty"`
Tags *string `json:"tags,omitempty"` Tags *string `json:"tags,omitempty"`
Uptime *int `json:"uptime,omitempty"` Uptime *int `json:"uptime,omitempty"`
VMID string `json:"vmid,omitempty"` VMID *int `json:"vmid,omitempty"`
} }
// VirtualEnvironmentContainerRebootRequestBody contains the body for a container reboot request. // VirtualEnvironmentContainerRebootRequestBody contains the body for a container reboot request.