From 05519694e1a19c9555114dffdf8f5610f46b54cd Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 7 Jul 2026 16:42:07 +0000 Subject: [PATCH] add vmid to instance --- resource-types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/resource-types.go b/resource-types.go index a426b3d..55808e5 100644 --- a/resource-types.go +++ b/resource-types.go @@ -21,6 +21,7 @@ const VM InstanceType = "VM" const CT InstanceType = "CT" type Instance struct { + VMID InstanceID `json:"vmid" mapstructure:"vmid"` Type InstanceType `json:"type" mapstructure:"type"` Name string `json:"name" mapstructure:"name"` Proctype string `json:"cpu" mapstructure:"cpu"`