...
1
9
10 package hcsschema
11
12 type ComputeSystem struct {
13 Owner string `json:"Owner,omitempty"`
14
15 SchemaVersion *Version `json:"SchemaVersion,omitempty"`
16
17 HostingSystemId string `json:"HostingSystemId,omitempty"`
18
19 HostedSystem interface{} `json:"HostedSystem,omitempty"`
20
21 Container *Container `json:"Container,omitempty"`
22
23 VirtualMachine *VirtualMachine `json:"VirtualMachine,omitempty"`
24
25 ShouldTerminateOnLastHandleClosed bool `json:"ShouldTerminateOnLastHandleClosed,omitempty"`
26 }
27
View as plain text