github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/cloudstack/compute/compute.go (about) 1 package compute 2 3 import ( 4 defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types" 5 ) 6 7 type Compute struct { 8 Instances []Instance 9 } 10 11 type Instance struct { 12 Metadata defsecTypes.Metadata 13 UserData defsecTypes.StringValue // not b64 encoded pls 14 }