Documentation
¶
Index ¶
- Constants
- type BaseVmResponse
- type Joke
- type RuntimeInfo
- type SampleMessageItem
- type VirtualDisk
- type VirtualHardware
- type VirtualMachine
- type VirtualUSB
- type VmCreateRequest
- type VmCreateResponse
- type VmDeleteRequest
- type VmListResponse
- type VmPowerOperationRequest
- type VmPowerOperationResponse
- type VmPowerOperationResponseItem
- type VmRef
Constants ¶
View Source
const ( CalendarServiceChan = "calendar-service" PongServiceChan = "services-PongService" SimpleStreamChan = "simple-stream" ServbotServiceChan = "servbot" VmServiceChan = "vm-service" VMWCloudServiceChan = "services-CloudServiceStatus" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BaseVmResponse ¶
type RuntimeInfo ¶
type SampleMessageItem ¶
type VirtualDisk ¶
type VirtualHardware ¶
type VirtualMachine ¶
type VirtualMachine struct {
VmRef VmRef `json:"vmRef"`
Name string `json:"name"`
RuntimeInfo *RuntimeInfo `json:"runtimeInfo"`
Hardware *VirtualHardware `json:"hardware"`
}
type VirtualUSB ¶
type VmCreateRequest ¶
type VmCreateRequest struct {
Name string `json:"name"`
VirtualHardware *VirtualHardware `json:"virtualHardware"`
}
type VmCreateResponse ¶
type VmCreateResponse struct {
Error bool `json:"error"`
ErrorMessage string `json:"errorMessage"`
Vm VirtualMachine `json:"vm"`
}
type VmDeleteRequest ¶
type VmDeleteRequest struct {
Vm VmRef `json:"vm"`
}
type VmListResponse ¶
type VmListResponse struct {
Error bool `json:"error"`
ErrorMessage string `json:"errorMessage"`
VirtualMachines []VirtualMachine `json:"virtualMachines"`
}
type VmPowerOperationRequest ¶
type VmPowerOperationResponse ¶
type VmPowerOperationResponse struct {
Error bool `json:"error"`
ErrorMessage string `json:"errorMessage"`
OpResults []VmPowerOperationResponseItem `json:"opResults"`
}
Click to show internal directories.
Click to hide internal directories.