forked from mindjiver/gopherstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk.go
34 lines (30 loc) · 996 Bytes
/
disk.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package gopherstack
import (
"net/url"
)
func (c CloudstackClient) ListDiskOfferings(domainid string, id string, keyword string, name string, page string, pagesize string) (ListDiskOfferingsResponse, error) {
var resp ListDiskOfferingsResponse
params := url.Values{}
//params.Set("domainid", domainid)
response, err := NewRequest(c, "listDiskOfferings", params)
if err != nil {
return resp, err
}
resp = response.(ListDiskOfferingsResponse)
return resp, err
}
type DiskOffering struct {
Created string `json:"created"`
Disksize float64 `json:"disksize"`
Displaytext string `json:"displaytext"`
ID string `json:"id"`
Iscustomized bool `json:"iscustomized"`
Name string `json:"name"`
Storagetype string `json:"storagetype"`
}
type ListDiskOfferingsResponse struct {
Listdiskofferingsresponse struct {
Count float64 `json:"count"`
Diskoffering []DiskOffering `json:"diskoffering"`
} `json:"listdiskofferingsresponse"`
}