-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitchm_configurationhistory.go
133 lines (120 loc) · 5.15 KB
/
switchm_configurationhistory.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
package bigdog
// API Version: v9_1
import (
"context"
"net/http"
"time"
)
type SwitchMConfigurationHistoryService struct {
apiClient *VSZClient
}
func NewSwitchMConfigurationHistoryService(c *VSZClient) *SwitchMConfigurationHistoryService {
s := new(SwitchMConfigurationHistoryService)
s.apiClient = c
return s
}
func (ss *SwitchMService) SwitchMConfigurationHistoryService() *SwitchMConfigurationHistoryService {
return NewSwitchMConfigurationHistoryService(ss.apiClient)
}
// FindConfigurationHistory
//
// Use this API command to Retrieve Configuration History List.
//
// Operation ID: findConfigurationHistory
// Operation path: /configurationHistory
// Success code: 200 (OK)
func (s *SwitchMConfigurationHistoryService) FindConfigurationHistory(ctx context.Context, mutators ...RequestMutator) (*SwitchMDeployLogConfigurationHistoryQueryResultAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMDeployLogConfigurationHistoryQueryResultAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodGet, RouteSwitchMFindConfigurationHistory, true)
defer recycleAPIRequest(req)
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.(*SwitchMDeployLogConfigurationHistoryQueryResultAPIResponse), err
}
// FindConfigurationHistoryByQueryCriteria
//
// Use this API command to Query Configuration History List.
//
// Operation ID: findConfigurationHistoryByQueryCriteria
// Operation path: /configurationHistory/query
// Success code: 200 (OK)
//
// Request body:
// - body *SwitchMCommonQueryCriteriaSuperSet
func (s *SwitchMConfigurationHistoryService) FindConfigurationHistoryByQueryCriteria(ctx context.Context, body *SwitchMCommonQueryCriteriaSuperSet, mutators ...RequestMutator) (*SwitchMDeployLogConfigurationHistoryQueryResultAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMDeployLogConfigurationHistoryQueryResultAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodPost, RouteSwitchMFindConfigurationHistoryByQueryCriteria, 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.(*SwitchMDeployLogConfigurationHistoryQueryResultAPIResponse), err
}
// FindConfigurationHistoryDetail
//
// Use this API command to Retrieve Configuration History List.
//
// Operation ID: findConfigurationHistoryDetail
// Operation path: /configurationHistory/detail
// Success code: 200 (OK)
func (s *SwitchMConfigurationHistoryService) FindConfigurationHistoryDetail(ctx context.Context, mutators ...RequestMutator) (*SwitchMDeployLogItemConfigurationHistoryDetailQueryResultAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMDeployLogItemConfigurationHistoryDetailQueryResultAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodGet, RouteSwitchMFindConfigurationHistoryDetail, true)
defer recycleAPIRequest(req)
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.(*SwitchMDeployLogItemConfigurationHistoryDetailQueryResultAPIResponse), err
}
// FindConfigurationHistoryDetailByQueryCriteria
//
// Use this API command to Query Configuration History List.
//
// Operation ID: findConfigurationHistoryDetailByQueryCriteria
// Operation path: /configurationHistory/detail/query
// Success code: 200 (OK)
//
// Request body:
// - body *SwitchMCommonQueryCriteriaSuperSet
func (s *SwitchMConfigurationHistoryService) FindConfigurationHistoryDetailByQueryCriteria(ctx context.Context, body *SwitchMCommonQueryCriteriaSuperSet, mutators ...RequestMutator) (*SwitchMDeployLogItemConfigurationHistoryDetailQueryResultAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMDeployLogItemConfigurationHistoryDetailQueryResultAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodPost, RouteSwitchMFindConfigurationHistoryDetailByQueryCriteria, 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.(*SwitchMDeployLogItemConfigurationHistoryDetailQueryResultAPIResponse), err
}