...
1
9
10 package hcsschema
11
12 type VirtualMachine struct {
13
14
15 StopOnReset bool `json:"StopOnReset,omitempty"`
16
17 Chipset *Chipset `json:"Chipset,omitempty"`
18
19 ComputeTopology *Topology `json:"ComputeTopology,omitempty"`
20
21 Devices *Devices `json:"Devices,omitempty"`
22
23 GuestState *GuestState `json:"GuestState,omitempty"`
24
25 RestoreState *RestoreState `json:"RestoreState,omitempty"`
26
27 RegistryChanges *RegistryChanges `json:"RegistryChanges,omitempty"`
28
29 StorageQoS *StorageQoS `json:"StorageQoS,omitempty"`
30
31 GuestConnection *GuestConnection `json:"GuestConnection,omitempty"`
32
33 SecuritySettings *SecuritySettings `json:"SecuritySettings,omitempty"`
34
35 DebugOptions *DebugOptions `json:"DebugOptions,omitempty"`
36 }
37
View as plain text