forked from mindjiver/gopherstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasyncjob.go
35 lines (28 loc) · 919 Bytes
/
asyncjob.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
35
package gopherstack
import (
"net/url"
)
type QueryAsyncJobResultResponse struct {
Queryasyncjobresultresponse struct {
Accountid string `json:"accountid"`
Cmd string `json:"cmd"`
Created string `json:"created"`
Jobid string `json:"jobid"`
Jobprocstatus float64 `json:"jobprocstatus"`
Jobresultcode float64 `json:"jobresultcode"`
Jobstatus float64 `json:"jobstatus"`
Userid string `json:"userid"`
} `json:"queryasyncjobresultresponse"`
}
// Query Cloudstack for the state of a scheduled job
func (c CloudstackClient) QueryAsyncJobResult(jobid string) (QueryAsyncJobResultResponse, error) {
var resp QueryAsyncJobResultResponse
params := url.Values{}
params.Set("jobid", jobid)
response, err := NewRequest(c, "queryAsyncJobResult", params)
if err != nil {
return resp, err
}
resp = response.(QueryAsyncJobResultResponse)
return resp, nil
}