-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitchm_jobandschedule.go
143 lines (130 loc) · 4.46 KB
/
switchm_jobandschedule.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package bigdog
// API Version: v9_1
import (
"context"
"net/http"
"time"
)
type SwitchMJobAndScheduleService struct {
apiClient *VSZClient
}
func NewSwitchMJobAndScheduleService(c *VSZClient) *SwitchMJobAndScheduleService {
s := new(SwitchMJobAndScheduleService)
s.apiClient = c
return s
}
func (ss *SwitchMService) SwitchMJobAndScheduleService() *SwitchMJobAndScheduleService {
return NewSwitchMJobAndScheduleService(ss.apiClient)
}
// AddJob
//
// Use this API command to retrieve a list of jobs.
//
// Operation ID: addJob
// Operation path: /job
// Success code: 200 (OK)
//
// Request body:
// - body *SwitchMCommonQueryCriteriaSuperSet
func (s *SwitchMJobAndScheduleService) AddJob(ctx context.Context, body *SwitchMCommonQueryCriteriaSuperSet, mutators ...RequestMutator) (*SwitchMJobListAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMJobListAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodPost, RouteSwitchMAddJob, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyContentType, headerValueApplicationJSON)
req.Header.Set(headerKeyAccept, "*/*")
req.SetBody(body)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SwitchMJobListAPIResponse), err
}
// DeleteJobSchedule
//
// Use this API command to delete a selected schedule.
//
// Operation ID: deleteJobSchedule
// Operation path: /job/schedule
// Success code: 200 (OK)
func (s *SwitchMJobAndScheduleService) DeleteJobSchedule(ctx context.Context, mutators ...RequestMutator) (*RawAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newRawAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodDelete, RouteSwitchMDeleteJobSchedule, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyContentType, "*/*")
req.Header.Set(headerKeyAccept, "*/*")
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*RawAPIResponse), err
}
// FindJobByJobId
//
// Use this API command to retrieve a given job.
//
// Operation ID: findJobByJobId
// Operation path: /job/{jobId}
// Success code: 200 (OK)
//
// Request body:
// - body *SwitchMCommonQueryCriteriaSuperSet
//
// Required parameters:
// - jobId string
// - required
func (s *SwitchMJobAndScheduleService) FindJobByJobId(ctx context.Context, body *SwitchMCommonQueryCriteriaSuperSet, jobId string, mutators ...RequestMutator) (*SwitchMJobAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMJobAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodGet, RouteSwitchMFindJobByJobId, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyAccept, "*/*")
req.SetBody(body)
req.PathParams.Set("jobId", jobId)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SwitchMJobAPIResponse), err
}
// FindJobScheduleByScheduleId
//
// Use this API command to retrieve a given schedule.
//
// Operation ID: findJobScheduleByScheduleId
// Operation path: /job/schedule/{scheduleId}
// Success code: 200 (OK)
//
// Required parameters:
// - scheduleId string
// - required
func (s *SwitchMJobAndScheduleService) FindJobScheduleByScheduleId(ctx context.Context, scheduleId string, mutators ...RequestMutator) (*SwitchMJobScheduleResponseAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMJobScheduleResponseAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodGet, RouteSwitchMFindJobScheduleByScheduleId, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyAccept, "*/*")
req.PathParams.Set("scheduleId", scheduleId)
httpResp, execDur, err = s.apiClient.Do(ctx, req, mutators...)
resp, err = handleAPIResponse(req, http.StatusOK, httpResp, execDur, respFn, s.apiClient.autoHydrate, s.apiClient.ev, err)
return resp.(*SwitchMJobScheduleResponseAPIResponse), err
}