|
|
|
@ -1,205 +1,208 @@
|
|
|
|
|
package egoscale
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
|
client *http.Client
|
|
|
|
|
endpoint string
|
|
|
|
|
apiKey string
|
|
|
|
|
client *http.Client
|
|
|
|
|
endpoint string
|
|
|
|
|
apiKey string
|
|
|
|
|
apiSecret string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type Error struct {
|
|
|
|
|
ErrorCode int `json:"errorcode"`
|
|
|
|
|
CSErrorCode int `json:"cserrorcode"`
|
|
|
|
|
ErrorText string `json:"errortext"`
|
|
|
|
|
ErrorCode int `json:"errorcode"`
|
|
|
|
|
CSErrorCode int `json:"cserrorcode"`
|
|
|
|
|
ErrorText string `json:"errortext"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type StandardResponse struct {
|
|
|
|
|
Success string `json:"success"`
|
|
|
|
|
DisplayText string `json:"displaytext"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Topology struct {
|
|
|
|
|
Zones map[string]string
|
|
|
|
|
Images map[string]map[int]string
|
|
|
|
|
Profiles map[string]string
|
|
|
|
|
Keypairs []string
|
|
|
|
|
Zones map[string]string
|
|
|
|
|
Images map[string]map[int]string
|
|
|
|
|
Profiles map[string]string
|
|
|
|
|
Keypairs []string
|
|
|
|
|
SecurityGroups map[string]string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SecurityGroupRule struct {
|
|
|
|
|
Cidr string
|
|
|
|
|
IcmpType int
|
|
|
|
|
IcmpCode int
|
|
|
|
|
Port int
|
|
|
|
|
Protocol string
|
|
|
|
|
Cidr string
|
|
|
|
|
IcmpType int
|
|
|
|
|
IcmpCode int
|
|
|
|
|
Port int
|
|
|
|
|
Protocol string
|
|
|
|
|
SecurityGroupId string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MachineProfile struct {
|
|
|
|
|
Name string
|
|
|
|
|
SecurityGroups []string
|
|
|
|
|
Keypair string
|
|
|
|
|
Userdata string
|
|
|
|
|
Name string
|
|
|
|
|
SecurityGroups []string
|
|
|
|
|
Keypair string
|
|
|
|
|
Userdata string
|
|
|
|
|
ServiceOffering string
|
|
|
|
|
Template string
|
|
|
|
|
Zone string
|
|
|
|
|
Template string
|
|
|
|
|
Zone string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ListZonesResponse struct {
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Zones []*Zone `json:"zone"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Zone struct {
|
|
|
|
|
Allocationstate string `json:"allocationstate,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Displaytext string `json:"displaytext,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Domainname string `json:"domainname,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Internaldns1 string `json:"internaldns1,omitempty"`
|
|
|
|
|
Internaldns2 string `json:"internaldns2,omitempty"`
|
|
|
|
|
Ip6dns1 string `json:"ip6dns1,omitempty"`
|
|
|
|
|
Ip6dns2 string `json:"ip6dns2,omitempty"`
|
|
|
|
|
Localstorageenabled bool `json:"localstorageenabled,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networktype string `json:"networktype,omitempty"`
|
|
|
|
|
Resourcedetails map[string]string `json:"resourcedetails,omitempty"`
|
|
|
|
|
Securitygroupsenabled bool `json:"securitygroupsenabled,omitempty"`
|
|
|
|
|
Vlan string `json:"vlan,omitempty"`
|
|
|
|
|
Zonetoken string `json:"zonetoken,omitempty"`
|
|
|
|
|
Allocationstate string `json:"allocationstate,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Displaytext string `json:"displaytext,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Domainname string `json:"domainname,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Internaldns1 string `json:"internaldns1,omitempty"`
|
|
|
|
|
Internaldns2 string `json:"internaldns2,omitempty"`
|
|
|
|
|
Ip6dns1 string `json:"ip6dns1,omitempty"`
|
|
|
|
|
Ip6dns2 string `json:"ip6dns2,omitempty"`
|
|
|
|
|
Localstorageenabled bool `json:"localstorageenabled,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networktype string `json:"networktype,omitempty"`
|
|
|
|
|
Resourcedetails map[string]string `json:"resourcedetails,omitempty"`
|
|
|
|
|
Securitygroupsenabled bool `json:"securitygroupsenabled,omitempty"`
|
|
|
|
|
Vlan string `json:"vlan,omitempty"`
|
|
|
|
|
Zonetoken string `json:"zonetoken,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ListServiceOfferingsResponse struct {
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
ServiceOfferings []*ServiceOffering `json:"serviceoffering"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ServiceOffering struct {
|
|
|
|
|
Cpunumber int `json:"cpunumber,omitempty"`
|
|
|
|
|
Cpuspeed int `json:"cpuspeed,omitempty"`
|
|
|
|
|
Displaytext string `json:"displaytext,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Hosttags string `json:"hosttags,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Iscustomized bool `json:"iscustomized,omitempty"`
|
|
|
|
|
Issystem bool `json:"issystem,omitempty"`
|
|
|
|
|
Isvolatile bool `json:"isvolatile,omitempty"`
|
|
|
|
|
Memory int `json:"memory,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networkrate int `json:"networkrate,omitempty"`
|
|
|
|
|
Cpunumber int `json:"cpunumber,omitempty"`
|
|
|
|
|
Cpuspeed int `json:"cpuspeed,omitempty"`
|
|
|
|
|
Displaytext string `json:"displaytext,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Hosttags string `json:"hosttags,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Iscustomized bool `json:"iscustomized,omitempty"`
|
|
|
|
|
Issystem bool `json:"issystem,omitempty"`
|
|
|
|
|
Isvolatile bool `json:"isvolatile,omitempty"`
|
|
|
|
|
Memory int `json:"memory,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networkrate int `json:"networkrate,omitempty"`
|
|
|
|
|
Serviceofferingdetails map[string]string `json:"serviceofferingdetails,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ListTemplatesResponse struct {
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Templates []*Template `json:"template"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Template struct {
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Accountid string `json:"accountid,omitempty"`
|
|
|
|
|
Bootable bool `json:"bootable,omitempty"`
|
|
|
|
|
Checksum string `json:"checksum,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
CrossZones bool `json:"crossZones,omitempty"`
|
|
|
|
|
Details map[string]string `json:"details,omitempty"`
|
|
|
|
|
Displaytext string `json:"displaytext,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Format string `json:"format,omitempty"`
|
|
|
|
|
Hostid string `json:"hostid,omitempty"`
|
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
|
Hypervisor string `json:"hypervisor,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Isdynamicallyscalable bool `json:"isdynamicallyscalable,omitempty"`
|
|
|
|
|
Isextractable bool `json:"isextractable,omitempty"`
|
|
|
|
|
Isfeatured bool `json:"isfeatured,omitempty"`
|
|
|
|
|
Ispublic bool `json:"ispublic,omitempty"`
|
|
|
|
|
Isready bool `json:"isready,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Ostypeid string `json:"ostypeid,omitempty"`
|
|
|
|
|
Ostypename string `json:"ostypename,omitempty"`
|
|
|
|
|
Passwordenabled bool `json:"passwordenabled,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Removed string `json:"removed,omitempty"`
|
|
|
|
|
Size int `json:"size,omitempty"`
|
|
|
|
|
Sourcetemplateid string `json:"sourcetemplateid,omitempty"`
|
|
|
|
|
Sshkeyenabled bool `json:"sshkeyenabled,omitempty"`
|
|
|
|
|
Status string `json:"status,omitempty"`
|
|
|
|
|
Zoneid string `json:"zoneid,omitempty"`
|
|
|
|
|
Zonename string `json:"zonename,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Accountid string `json:"accountid,omitempty"`
|
|
|
|
|
Bootable bool `json:"bootable,omitempty"`
|
|
|
|
|
Checksum string `json:"checksum,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
CrossZones bool `json:"crossZones,omitempty"`
|
|
|
|
|
Details map[string]string `json:"details,omitempty"`
|
|
|
|
|
Displaytext string `json:"displaytext,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Format string `json:"format,omitempty"`
|
|
|
|
|
Hostid string `json:"hostid,omitempty"`
|
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
|
Hypervisor string `json:"hypervisor,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Isdynamicallyscalable bool `json:"isdynamicallyscalable,omitempty"`
|
|
|
|
|
Isextractable bool `json:"isextractable,omitempty"`
|
|
|
|
|
Isfeatured bool `json:"isfeatured,omitempty"`
|
|
|
|
|
Ispublic bool `json:"ispublic,omitempty"`
|
|
|
|
|
Isready bool `json:"isready,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Ostypeid string `json:"ostypeid,omitempty"`
|
|
|
|
|
Ostypename string `json:"ostypename,omitempty"`
|
|
|
|
|
Passwordenabled bool `json:"passwordenabled,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Removed string `json:"removed,omitempty"`
|
|
|
|
|
Size int `json:"size,omitempty"`
|
|
|
|
|
Sourcetemplateid string `json:"sourcetemplateid,omitempty"`
|
|
|
|
|
Sshkeyenabled bool `json:"sshkeyenabled,omitempty"`
|
|
|
|
|
Status string `json:"status,omitempty"`
|
|
|
|
|
Zoneid string `json:"zoneid,omitempty"`
|
|
|
|
|
Zonename string `json:"zonename,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ListSSHKeyPairsResponse struct {
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
SSHKeyPairs []*SSHKeyPair `json:"sshkeypair"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SSHKeyPair struct {
|
|
|
|
|
Fingerprint string `json:"fingerprint,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type ListSecurityGroupsResponse struct {
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
SecurityGroups []*SecurityGroup `json:"securitygroup"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SecurityGroup struct {
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CreateSecurityGroupResponseWrapper struct {
|
|
|
|
|
Wrapped CreateSecurityGroupResponse `json:"securitygroup"`
|
|
|
|
|
}
|
|
|
|
|
type CreateSecurityGroupResponse struct {
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AuthorizeSecurityGroupIngressResponse struct {
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Cidr string `json:"cidr,omitempty"`
|
|
|
|
|
Endport int `json:"endport,omitempty"`
|
|
|
|
|
Icmpcode int `json:"icmpcode,omitempty"`
|
|
|
|
|
Icmptype int `json:"icmptype,omitempty"`
|
|
|
|
|
Protocol string `json:"protocol,omitempty"`
|
|
|
|
|
Ruleid string `json:"ruleid,omitempty"`
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Cidr string `json:"cidr,omitempty"`
|
|
|
|
|
Endport int `json:"endport,omitempty"`
|
|
|
|
|
Icmpcode int `json:"icmpcode,omitempty"`
|
|
|
|
|
Icmptype int `json:"icmptype,omitempty"`
|
|
|
|
|
Protocol string `json:"protocol,omitempty"`
|
|
|
|
|
Ruleid string `json:"ruleid,omitempty"`
|
|
|
|
|
Securitygroupname string `json:"securitygroupname,omitempty"`
|
|
|
|
|
Startport int `json:"startport,omitempty"`
|
|
|
|
|
Startport int `json:"startport,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AuthorizeSecurityGroupEgressResponse struct {
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Cidr string `json:"cidr,omitempty"`
|
|
|
|
|
Endport int `json:"endport,omitempty"`
|
|
|
|
|
Icmpcode int `json:"icmpcode,omitempty"`
|
|
|
|
|
Icmptype int `json:"icmptype,omitempty"`
|
|
|
|
|
Protocol string `json:"protocol,omitempty"`
|
|
|
|
|
Ruleid string `json:"ruleid,omitempty"`
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Cidr string `json:"cidr,omitempty"`
|
|
|
|
|
Endport int `json:"endport,omitempty"`
|
|
|
|
|
Icmpcode int `json:"icmpcode,omitempty"`
|
|
|
|
|
Icmptype int `json:"icmptype,omitempty"`
|
|
|
|
|
Protocol string `json:"protocol,omitempty"`
|
|
|
|
|
Ruleid string `json:"ruleid,omitempty"`
|
|
|
|
|
Securitygroupname string `json:"securitygroupname,omitempty"`
|
|
|
|
|
Startport int `json:"startport,omitempty"`
|
|
|
|
|
Startport int `json:"startport,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeployVirtualMachineWrappedResponse struct {
|
|
|
|
@ -207,177 +210,174 @@ type DeployVirtualMachineWrappedResponse struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeployVirtualMachineResponse struct {
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Affinitygroup []struct {
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
|
VirtualmachineIds []string `json:"virtualmachineIds,omitempty"`
|
|
|
|
|
|
|
|
|
|
} `json:"affinitygroup,omitempty"`
|
|
|
|
|
Cpunumber int `json:"cpunumber,omitempty"`
|
|
|
|
|
Cpuspeed int `json:"cpuspeed,omitempty"`
|
|
|
|
|
Cpuused string `json:"cpuused,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
Details map[string]string `json:"details,omitempty"`
|
|
|
|
|
Diskioread int `json:"diskioread,omitempty"`
|
|
|
|
|
Diskiowrite int `json:"diskiowrite,omitempty"`
|
|
|
|
|
Diskkbsread int `json:"diskkbsread,omitempty"`
|
|
|
|
|
Diskkbswrite int `json:"diskkbswrite,omitempty"`
|
|
|
|
|
Displayname string `json:"displayname,omitempty"`
|
|
|
|
|
Displayvm bool `json:"displayvm,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Forvirtualnetwork bool `json:"forvirtualnetwork,omitempty"`
|
|
|
|
|
Group string `json:"group,omitempty"`
|
|
|
|
|
Groupid string `json:"groupid,omitempty"`
|
|
|
|
|
Guestosid string `json:"guestosid,omitempty"`
|
|
|
|
|
Haenable bool `json:"haenable,omitempty"`
|
|
|
|
|
Hostid string `json:"hostid,omitempty"`
|
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
|
Hypervisor string `json:"hypervisor,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Instancename string `json:"instancename,omitempty"`
|
|
|
|
|
Isdynamicallyscalable bool `json:"isdynamicallyscalable,omitempty"`
|
|
|
|
|
Isodisplaytext string `json:"isodisplaytext,omitempty"`
|
|
|
|
|
Isoid string `json:"isoid,omitempty"`
|
|
|
|
|
Isoname string `json:"isoname,omitempty"`
|
|
|
|
|
Keypair string `json:"keypair,omitempty"`
|
|
|
|
|
Memory int `json:"memory,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networkkbsread int `json:"networkkbsread,omitempty"`
|
|
|
|
|
Networkkbswrite int `json:"networkkbswrite,omitempty"`
|
|
|
|
|
Nic []struct {
|
|
|
|
|
Broadcasturi string `json:"broadcasturi,omitempty"`
|
|
|
|
|
Gateway string `json:"gateway,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Ipaddress string `json:"ipaddress,omitempty"`
|
|
|
|
|
Isdefault bool `json:"isdefault,omitempty"`
|
|
|
|
|
Isolationuri string `json:"isolationuri,omitempty"`
|
|
|
|
|
Macaddress string `json:"macaddress,omitempty"`
|
|
|
|
|
Netmask string `json:"netmask,omitempty"`
|
|
|
|
|
Networkid string `json:"networkid,omitempty"`
|
|
|
|
|
Networkname string `json:"networkname,omitempty"`
|
|
|
|
|
Secondaryip []string `json:"secondaryip,omitempty"`
|
|
|
|
|
Traffictype string `json:"traffictype,omitempty"`
|
|
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
|
Cpunumber int `json:"cpunumber,omitempty"`
|
|
|
|
|
Cpuspeed int `json:"cpuspeed,omitempty"`
|
|
|
|
|
Cpuused string `json:"cpuused,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
Details map[string]string `json:"details,omitempty"`
|
|
|
|
|
Diskioread int `json:"diskioread,omitempty"`
|
|
|
|
|
Diskiowrite int `json:"diskiowrite,omitempty"`
|
|
|
|
|
Diskkbsread int `json:"diskkbsread,omitempty"`
|
|
|
|
|
Diskkbswrite int `json:"diskkbswrite,omitempty"`
|
|
|
|
|
Displayname string `json:"displayname,omitempty"`
|
|
|
|
|
Displayvm bool `json:"displayvm,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Forvirtualnetwork bool `json:"forvirtualnetwork,omitempty"`
|
|
|
|
|
Group string `json:"group,omitempty"`
|
|
|
|
|
Groupid string `json:"groupid,omitempty"`
|
|
|
|
|
Guestosid string `json:"guestosid,omitempty"`
|
|
|
|
|
Haenable bool `json:"haenable,omitempty"`
|
|
|
|
|
Hostid string `json:"hostid,omitempty"`
|
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
|
Hypervisor string `json:"hypervisor,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Instancename string `json:"instancename,omitempty"`
|
|
|
|
|
Isdynamicallyscalable bool `json:"isdynamicallyscalable,omitempty"`
|
|
|
|
|
Isodisplaytext string `json:"isodisplaytext,omitempty"`
|
|
|
|
|
Isoid string `json:"isoid,omitempty"`
|
|
|
|
|
Isoname string `json:"isoname,omitempty"`
|
|
|
|
|
Keypair string `json:"keypair,omitempty"`
|
|
|
|
|
Memory int `json:"memory,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networkkbsread int `json:"networkkbsread,omitempty"`
|
|
|
|
|
Networkkbswrite int `json:"networkkbswrite,omitempty"`
|
|
|
|
|
Nic []struct {
|
|
|
|
|
Broadcasturi string `json:"broadcasturi,omitempty"`
|
|
|
|
|
Gateway string `json:"gateway,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Ipaddress string `json:"ipaddress,omitempty"`
|
|
|
|
|
Isdefault bool `json:"isdefault,omitempty"`
|
|
|
|
|
Isolationuri string `json:"isolationuri,omitempty"`
|
|
|
|
|
Macaddress string `json:"macaddress,omitempty"`
|
|
|
|
|
Netmask string `json:"netmask,omitempty"`
|
|
|
|
|
Networkid string `json:"networkid,omitempty"`
|
|
|
|
|
Networkname string `json:"networkname,omitempty"`
|
|
|
|
|
Secondaryip []string `json:"secondaryip,omitempty"`
|
|
|
|
|
Traffictype string `json:"traffictype,omitempty"`
|
|
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
|
} `json:"nic,omitempty"`
|
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
|
Passwordenabled bool `json:"passwordenabled,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Publicip string `json:"publicip,omitempty"`
|
|
|
|
|
Publicipid string `json:"publicipid,omitempty"`
|
|
|
|
|
Rootdeviceid int `json:"rootdeviceid,omitempty"`
|
|
|
|
|
Rootdevicetype string `json:"rootdevicetype,omitempty"`
|
|
|
|
|
Serviceofferingid string `json:"serviceofferingid,omitempty"`
|
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
|
Passwordenabled bool `json:"passwordenabled,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Publicip string `json:"publicip,omitempty"`
|
|
|
|
|
Publicipid string `json:"publicipid,omitempty"`
|
|
|
|
|
Rootdeviceid int `json:"rootdeviceid,omitempty"`
|
|
|
|
|
Rootdevicetype string `json:"rootdevicetype,omitempty"`
|
|
|
|
|
Serviceofferingid string `json:"serviceofferingid,omitempty"`
|
|
|
|
|
Serviceofferingname string `json:"serviceofferingname,omitempty"`
|
|
|
|
|
Servicestate string `json:"servicestate,omitempty"`
|
|
|
|
|
State string `json:"state,omitempty"`
|
|
|
|
|
Servicestate string `json:"servicestate,omitempty"`
|
|
|
|
|
State string `json:"state,omitempty"`
|
|
|
|
|
Templatedisplaytext string `json:"templatedisplaytext,omitempty"`
|
|
|
|
|
Templateid string `json:"templateid,omitempty"`
|
|
|
|
|
Templatename string `json:"templatename,omitempty"`
|
|
|
|
|
Zoneid string `json:"zoneid,omitempty"`
|
|
|
|
|
Zonename string `json:"zonename,omitempty"`
|
|
|
|
|
Templateid string `json:"templateid,omitempty"`
|
|
|
|
|
Templatename string `json:"templatename,omitempty"`
|
|
|
|
|
Zoneid string `json:"zoneid,omitempty"`
|
|
|
|
|
Zonename string `json:"zonename,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type QueryAsyncJobResultResponse struct {
|
|
|
|
|
Accountid string `json:"accountid,omitempty"`
|
|
|
|
|
Cmd string `json:"cmd,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
Jobinstanceid string `json:"jobinstanceid,omitempty"`
|
|
|
|
|
Jobinstancetype string `json:"jobinstancetype,omitempty"`
|
|
|
|
|
Jobprocstatus int `json:"jobprocstatus,omitempty"`
|
|
|
|
|
Jobresult json.RawMessage `json:"jobresult,omitempty"`
|
|
|
|
|
Jobresultcode int `json:"jobresultcode,omitempty"`
|
|
|
|
|
Jobresulttype string `json:"jobresulttype,omitempty"`
|
|
|
|
|
Jobstatus int `json:"jobstatus,omitempty"`
|
|
|
|
|
Userid string `json:"userid,omitempty"`
|
|
|
|
|
Accountid string `json:"accountid,omitempty"`
|
|
|
|
|
Cmd string `json:"cmd,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
Jobinstanceid string `json:"jobinstanceid,omitempty"`
|
|
|
|
|
Jobinstancetype string `json:"jobinstancetype,omitempty"`
|
|
|
|
|
Jobprocstatus int `json:"jobprocstatus,omitempty"`
|
|
|
|
|
Jobresult json.RawMessage `json:"jobresult,omitempty"`
|
|
|
|
|
Jobresultcode int `json:"jobresultcode,omitempty"`
|
|
|
|
|
Jobresulttype string `json:"jobresulttype,omitempty"`
|
|
|
|
|
Jobstatus int `json:"jobstatus,omitempty"`
|
|
|
|
|
Userid string `json:"userid,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ListVirtualMachinesResponse struct {
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
VirtualMachines []*VirtualMachine `json:"virtualmachine"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type VirtualMachine struct {
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Cpunumber int `json:"cpunumber,omitempty"`
|
|
|
|
|
Cpuspeed int `json:"cpuspeed,omitempty"`
|
|
|
|
|
Cpuused string `json:"cpuused,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
Details map[string]string `json:"details,omitempty"`
|
|
|
|
|
Diskioread int `json:"diskioread,omitempty"`
|
|
|
|
|
Diskiowrite int `json:"diskiowrite,omitempty"`
|
|
|
|
|
Diskkbsread int `json:"diskkbsread,omitempty"`
|
|
|
|
|
Diskkbswrite int `json:"diskkbswrite,omitempty"`
|
|
|
|
|
Displayname string `json:"displayname,omitempty"`
|
|
|
|
|
Displayvm bool `json:"displayvm,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Forvirtualnetwork bool `json:"forvirtualnetwork,omitempty"`
|
|
|
|
|
Group string `json:"group,omitempty"`
|
|
|
|
|
Groupid string `json:"groupid,omitempty"`
|
|
|
|
|
Guestosid string `json:"guestosid,omitempty"`
|
|
|
|
|
Haenable bool `json:"haenable,omitempty"`
|
|
|
|
|
Hostid string `json:"hostid,omitempty"`
|
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
|
Hypervisor string `json:"hypervisor,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Instancename string `json:"instancename,omitempty"`
|
|
|
|
|
Isdynamicallyscalable bool `json:"isdynamicallyscalable,omitempty"`
|
|
|
|
|
Isodisplaytext string `json:"isodisplaytext,omitempty"`
|
|
|
|
|
Isoid string `json:"isoid,omitempty"`
|
|
|
|
|
Isoname string `json:"isoname,omitempty"`
|
|
|
|
|
Keypair string `json:"keypair,omitempty"`
|
|
|
|
|
Memory int `json:"memory,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networkkbsread int `json:"networkkbsread,omitempty"`
|
|
|
|
|
Networkkbswrite int `json:"networkkbswrite,omitempty"`
|
|
|
|
|
Nic []struct {
|
|
|
|
|
Broadcasturi string `json:"broadcasturi,omitempty"`
|
|
|
|
|
Gateway string `json:"gateway,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Ip6address string `json:"ip6address,omitempty"`
|
|
|
|
|
Ip6cidr string `json:"ip6cidr,omitempty"`
|
|
|
|
|
Ip6gateway string `json:"ip6gateway,omitempty"`
|
|
|
|
|
Ipaddress string `json:"ipaddress,omitempty"`
|
|
|
|
|
Isdefault bool `json:"isdefault,omitempty"`
|
|
|
|
|
Isolationuri string `json:"isolationuri,omitempty"`
|
|
|
|
|
Macaddress string `json:"macaddress,omitempty"`
|
|
|
|
|
Netmask string `json:"netmask,omitempty"`
|
|
|
|
|
Networkid string `json:"networkid,omitempty"`
|
|
|
|
|
Networkname string `json:"networkname,omitempty"`
|
|
|
|
|
Secondaryip []string `json:"secondaryip,omitempty"`
|
|
|
|
|
Traffictype string `json:"traffictype,omitempty"`
|
|
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
|
|
|
|
|
|
Account string `json:"account,omitempty"`
|
|
|
|
|
Cpunumber int `json:"cpunumber,omitempty"`
|
|
|
|
|
Cpuspeed int `json:"cpuspeed,omitempty"`
|
|
|
|
|
Cpuused string `json:"cpuused,omitempty"`
|
|
|
|
|
Created string `json:"created,omitempty"`
|
|
|
|
|
Details map[string]string `json:"details,omitempty"`
|
|
|
|
|
Diskioread int `json:"diskioread,omitempty"`
|
|
|
|
|
Diskiowrite int `json:"diskiowrite,omitempty"`
|
|
|
|
|
Diskkbsread int `json:"diskkbsread,omitempty"`
|
|
|
|
|
Diskkbswrite int `json:"diskkbswrite,omitempty"`
|
|
|
|
|
Displayname string `json:"displayname,omitempty"`
|
|
|
|
|
Displayvm bool `json:"displayvm,omitempty"`
|
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
|
Domainid string `json:"domainid,omitempty"`
|
|
|
|
|
Forvirtualnetwork bool `json:"forvirtualnetwork,omitempty"`
|
|
|
|
|
Group string `json:"group,omitempty"`
|
|
|
|
|
Groupid string `json:"groupid,omitempty"`
|
|
|
|
|
Guestosid string `json:"guestosid,omitempty"`
|
|
|
|
|
Haenable bool `json:"haenable,omitempty"`
|
|
|
|
|
Hostid string `json:"hostid,omitempty"`
|
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
|
Hypervisor string `json:"hypervisor,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Instancename string `json:"instancename,omitempty"`
|
|
|
|
|
Isdynamicallyscalable bool `json:"isdynamicallyscalable,omitempty"`
|
|
|
|
|
Isodisplaytext string `json:"isodisplaytext,omitempty"`
|
|
|
|
|
Isoid string `json:"isoid,omitempty"`
|
|
|
|
|
Isoname string `json:"isoname,omitempty"`
|
|
|
|
|
Keypair string `json:"keypair,omitempty"`
|
|
|
|
|
Memory int `json:"memory,omitempty"`
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
|
Networkkbsread int `json:"networkkbsread,omitempty"`
|
|
|
|
|
Networkkbswrite int `json:"networkkbswrite,omitempty"`
|
|
|
|
|
Nic []struct {
|
|
|
|
|
Broadcasturi string `json:"broadcasturi,omitempty"`
|
|
|
|
|
Gateway string `json:"gateway,omitempty"`
|
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
|
Ip6address string `json:"ip6address,omitempty"`
|
|
|
|
|
Ip6cidr string `json:"ip6cidr,omitempty"`
|
|
|
|
|
Ip6gateway string `json:"ip6gateway,omitempty"`
|
|
|
|
|
Ipaddress string `json:"ipaddress,omitempty"`
|
|
|
|
|
Isdefault bool `json:"isdefault,omitempty"`
|
|
|
|
|
Isolationuri string `json:"isolationuri,omitempty"`
|
|
|
|
|
Macaddress string `json:"macaddress,omitempty"`
|
|
|
|
|
Netmask string `json:"netmask,omitempty"`
|
|
|
|
|
Networkid string `json:"networkid,omitempty"`
|
|
|
|
|
Networkname string `json:"networkname,omitempty"`
|
|
|
|
|
Secondaryip []string `json:"secondaryip,omitempty"`
|
|
|
|
|
Traffictype string `json:"traffictype,omitempty"`
|
|
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
|
} `json:"nic,omitempty"`
|
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
|
Passwordenabled bool `json:"passwordenabled,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Publicip string `json:"publicip,omitempty"`
|
|
|
|
|
Publicipid string `json:"publicipid,omitempty"`
|
|
|
|
|
Rootdeviceid int `json:"rootdeviceid,omitempty"`
|
|
|
|
|
Rootdevicetype string `json:"rootdevicetype,omitempty"`
|
|
|
|
|
Serviceofferingid string `json:"serviceofferingid,omitempty"`
|
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
|
Passwordenabled bool `json:"passwordenabled,omitempty"`
|
|
|
|
|
Project string `json:"project,omitempty"`
|
|
|
|
|
Projectid string `json:"projectid,omitempty"`
|
|
|
|
|
Publicip string `json:"publicip,omitempty"`
|
|
|
|
|
Publicipid string `json:"publicipid,omitempty"`
|
|
|
|
|
Rootdeviceid int `json:"rootdeviceid,omitempty"`
|
|
|
|
|
Rootdevicetype string `json:"rootdevicetype,omitempty"`
|
|
|
|
|
Serviceofferingid string `json:"serviceofferingid,omitempty"`
|
|
|
|
|
Serviceofferingname string `json:"serviceofferingname,omitempty"`
|
|
|
|
|
Servicestate string `json:"servicestate,omitempty"`
|
|
|
|
|
State string `json:"state,omitempty"`
|
|
|
|
|
Servicestate string `json:"servicestate,omitempty"`
|
|
|
|
|
State string `json:"state,omitempty"`
|
|
|
|
|
Templatedisplaytext string `json:"templatedisplaytext,omitempty"`
|
|
|
|
|
Templateid string `json:"templateid,omitempty"`
|
|
|
|
|
Templatename string `json:"templatename,omitempty"`
|
|
|
|
|
Zoneid string `json:"zoneid,omitempty"`
|
|
|
|
|
Zonename string `json:"zonename,omitempty"`
|
|
|
|
|
Templateid string `json:"templateid,omitempty"`
|
|
|
|
|
Templatename string `json:"templatename,omitempty"`
|
|
|
|
|
Zoneid string `json:"zoneid,omitempty"`
|
|
|
|
|
Zonename string `json:"zonename,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type StartVirtualMachineResponse struct {
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
}
|
|
|
|
@ -390,7 +390,6 @@ type DestroyVirtualMachineResponse struct {
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type RebootVirtualMachineResponse struct {
|
|
|
|
|
JobID string `json:"jobid,omitempty"`
|
|
|
|
|
}
|
|
|
|
@ -402,3 +401,7 @@ type CreateSSHKeyPairWrappedResponse struct {
|
|
|
|
|
type CreateSSHKeyPairResponse struct {
|
|
|
|
|
Privatekey string `json:"privatekey,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeleteSSHKeyPairResponse struct {
|
|
|
|
|
Privatekey string `json:"privatekey,omitempty"`
|
|
|
|
|
}
|
|
|
|
|