-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitchm_stack.go
398 lines (338 loc) · 11.1 KB
/
switchm_stack.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package bigdog
// API Version: v9_1
import (
"context"
"errors"
"io"
"net/http"
"time"
)
type SwitchMSwitchStackConfigService struct {
apiClient *VSZClient
}
func NewSwitchMSwitchStackConfigService(c *VSZClient) *SwitchMSwitchStackConfigService {
s := new(SwitchMSwitchStackConfigService)
s.apiClient = c
return s
}
func (ss *SwitchMService) SwitchMSwitchStackConfigService() *SwitchMSwitchStackConfigService {
return NewSwitchMSwitchStackConfigService(ss.apiClient)
}
// SwitchMSwitchStackConfigAuditIdList
//
// Definition: stack_auditIdList
type SwitchMSwitchStackConfigAuditIdList struct {
Extra interface{} `json:"extra,omitempty"`
FirstIndex *int `json:"firstIndex,omitempty"`
HasMore *bool `json:"hasMore,omitempty"`
List []*SwitchMSwitchAuditId `json:"list,omitempty"`
RawDataTotalCount *int `json:"rawDataTotalCount,omitempty"`
TotalCount *int `json:"totalCount,omitempty"`
}
type SwitchMSwitchStackConfigAuditIdListAPIResponse struct {
*RawAPIResponse
Data *SwitchMSwitchStackConfigAuditIdList
}
func newSwitchMSwitchStackConfigAuditIdListAPIResponse(src APISource, meta APIResponseMeta, body io.ReadCloser) APIResponse {
r := new(SwitchMSwitchStackConfigAuditIdListAPIResponse)
r.RawAPIResponse = newRawAPIResponse(src, meta, body).(*RawAPIResponse)
return r
}
func (r *SwitchMSwitchStackConfigAuditIdListAPIResponse) Hydrate() (interface{}, error) {
r.mu.Lock()
defer r.mu.Unlock()
if r.err != nil {
if errors.Is(r.err, ErrResponseHydrated) {
return r.Data, nil
}
return nil, r.err
}
data := new(SwitchMSwitchStackConfigAuditIdList)
if err := r.doHydrate(data); err != nil {
return nil, err
}
r.Data = data
return r.Data, nil
}
func NewSwitchMSwitchStackConfigAuditIdList() *SwitchMSwitchStackConfigAuditIdList {
m := new(SwitchMSwitchStackConfigAuditIdList)
return m
}
// SwitchMSwitchStackConfigList
//
// Definition: stack_list
type SwitchMSwitchStackConfigList struct {
// FirstIndex
// Index of the first stack returned out of the complete stack list
FirstIndex *int `json:"firstIndex,omitempty"`
// HasMore
// Indicator of whether there are more stack after the current displayed list
HasMore *bool `json:"hasMore,omitempty"`
// List
// List of stack
List []*SwitchMSwitchStackConfigMember `json:"list,omitempty"`
// RawDataTotalCount
// Stack count
RawDataTotalCount *int `json:"rawDataTotalCount,omitempty"`
// TotalCount
// Total Stack count
TotalCount *int `json:"totalCount,omitempty"`
}
type SwitchMSwitchStackConfigListAPIResponse struct {
*RawAPIResponse
Data *SwitchMSwitchStackConfigList
}
func newSwitchMSwitchStackConfigListAPIResponse(src APISource, meta APIResponseMeta, body io.ReadCloser) APIResponse {
r := new(SwitchMSwitchStackConfigListAPIResponse)
r.RawAPIResponse = newRawAPIResponse(src, meta, body).(*RawAPIResponse)
return r
}
func (r *SwitchMSwitchStackConfigListAPIResponse) Hydrate() (interface{}, error) {
r.mu.Lock()
defer r.mu.Unlock()
if r.err != nil {
if errors.Is(r.err, ErrResponseHydrated) {
return r.Data, nil
}
return nil, r.err
}
data := new(SwitchMSwitchStackConfigList)
if err := r.doHydrate(data); err != nil {
return nil, err
}
r.Data = data
return r.Data, nil
}
func NewSwitchMSwitchStackConfigList() *SwitchMSwitchStackConfigList {
m := new(SwitchMSwitchStackConfigList)
return m
}
// SwitchMSwitchStackConfigMember
//
// Definition: stack_member
type SwitchMSwitchStackConfigMember struct {
// ActiveMode
// Role of stack
ActiveMode *string `json:"activeMode,omitempty"`
// Model
// Switch model of stack
Model *string `json:"model,omitempty"`
// Poe
// Information of PoE
Poe *SwitchMSwitchStackConfigMemberPoeType `json:"poe,omitempty"`
// Ports
// Port count of stack
Ports *int `json:"ports,omitempty"`
// PortStatus
// Port status Information
PortStatus *SwitchMSwitchStackConfigMemberPortStatusType `json:"portStatus,omitempty"`
// SerialNumber
// Serial number of stack
SerialNumber *string `json:"serialNumber,omitempty"`
// SwitchModule
// Switch module of stack
SwitchModule *string `json:"switchModule,omitempty"`
// SwitchName
// Switch name of stack
SwitchName *string `json:"switchName,omitempty"`
// SwitchPorts
// Switch port information of stack
SwitchPorts []*SwitchMSwitchPortDetails `json:"switchPorts,omitempty"`
// SwitchUnit
// Switch unit of stack
SwitchUnit *string `json:"switchUnit,omitempty"`
// SwitchUnitState
// Switch unit state of stack
SwitchUnitState *string `json:"switchUnitState,omitempty"`
}
func NewSwitchMSwitchStackConfigMember() *SwitchMSwitchStackConfigMember {
m := new(SwitchMSwitchStackConfigMember)
return m
}
// SwitchMSwitchStackConfigMemberPoeType
//
// Definition: stack_memberPoeType
//
// Information of PoE
type SwitchMSwitchStackConfigMemberPoeType struct {
// Free
// Free power capacity of a switch unit in stack
Free *int `json:"free,omitempty"`
// Percent
// Percentage of power usage for a switch unit in stack
Percent *float64 `json:"percent,omitempty"`
// Total
// Total power capacity of a switch unit in stack
Total *int `json:"total,omitempty"`
}
func NewSwitchMSwitchStackConfigMemberPoeType() *SwitchMSwitchStackConfigMemberPoeType {
m := new(SwitchMSwitchStackConfigMemberPoeType)
return m
}
// SwitchMSwitchStackConfigMemberPortStatusType
//
// Definition: stack_memberPortStatusType
//
// Port status Information
type SwitchMSwitchStackConfigMemberPortStatusType struct {
// AdminDown
// Count for port status is admin down of stack
AdminDown *int `json:"adminDown,omitempty"`
// Down
// Count for port status is down of stack
Down *int `json:"down,omitempty"`
// Speed
// Port speed of stack
Speed *string `json:"speed,omitempty"`
// Total
// Total port count of stack
Total *int `json:"total,omitempty"`
// Up
// Count for port status is up of stack
Up *int `json:"up,omitempty"`
// Warning
// Count for port status is warring of stack
Warning *int `json:"warning,omitempty"`
}
func NewSwitchMSwitchStackConfigMemberPortStatusType() *SwitchMSwitchStackConfigMemberPortStatusType {
m := new(SwitchMSwitchStackConfigMemberPortStatusType)
return m
}
// SwitchMSwitchStackConfigStackConfig
//
// Definition: stack_stackConfig
type SwitchMSwitchStackConfigStackConfig struct {
// ActiveSwitchId
// Switch Id of Active Unit
ActiveSwitchId *string `json:"activeSwitchId,omitempty"`
// IsActiveRole
// Switch role is Active, True (Active) or False (Standby or Member)
IsActiveRole *bool `json:"isActiveRole,omitempty"`
// SuggestedId
// Suggested switch unit Id in stack, 1 ~ 12
SuggestedId *int `json:"suggestedId,omitempty"`
// SwitchId
// Switch Id
SwitchId *string `json:"switchId,omitempty"`
}
type SwitchMSwitchStackConfigStackConfigAPIResponse struct {
*RawAPIResponse
Data *SwitchMSwitchStackConfigStackConfig
}
func newSwitchMSwitchStackConfigStackConfigAPIResponse(src APISource, meta APIResponseMeta, body io.ReadCloser) APIResponse {
r := new(SwitchMSwitchStackConfigStackConfigAPIResponse)
r.RawAPIResponse = newRawAPIResponse(src, meta, body).(*RawAPIResponse)
return r
}
func (r *SwitchMSwitchStackConfigStackConfigAPIResponse) Hydrate() (interface{}, error) {
r.mu.Lock()
defer r.mu.Unlock()
if r.err != nil {
if errors.Is(r.err, ErrResponseHydrated) {
return r.Data, nil
}
return nil, r.err
}
data := new(SwitchMSwitchStackConfigStackConfig)
if err := r.doHydrate(data); err != nil {
return nil, err
}
r.Data = data
return r.Data, nil
}
func NewSwitchMSwitchStackConfigStackConfig() *SwitchMSwitchStackConfigStackConfig {
m := new(SwitchMSwitchStackConfigStackConfig)
return m
}
// SwitchMSwitchStackConfigStackConfigList
//
// Definition: stack_stackConfigList
type SwitchMSwitchStackConfigStackConfigList []*SwitchMSwitchStackConfigStackConfig
func MakeSwitchMSwitchStackConfigStackConfigList() SwitchMSwitchStackConfigStackConfigList {
m := make(SwitchMSwitchStackConfigStackConfigList, 0)
return m
}
// AddStack
//
// Use this API command to create a stack configuration.
//
// Operation ID: addStack
// Operation path: /stack
// Success code: 200 (OK)
//
// Request body:
// - body SwitchMSwitchStackConfigStackConfigList
func (s *SwitchMSwitchStackConfigService) AddStack(ctx context.Context, body SwitchMSwitchStackConfigStackConfigList, mutators ...RequestMutator) (*SwitchMSwitchStackConfigAuditIdListAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMSwitchStackConfigAuditIdListAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodPost, RouteSwitchMAddStack, 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.(*SwitchMSwitchStackConfigAuditIdListAPIResponse), err
}
// FindStackBySwitchId
//
// Use this API command to retrieve a stack configuration configured via SZ.
//
// Operation ID: findStackBySwitchId
// Operation path: /stack/{switchId}
// Success code: 200 (OK)
//
// Required parameters:
// - switchId string
// - required
func (s *SwitchMSwitchStackConfigService) FindStackBySwitchId(ctx context.Context, switchId string, mutators ...RequestMutator) (*SwitchMSwitchStackConfigStackConfigAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMSwitchStackConfigStackConfigAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodGet, RouteSwitchMFindStackBySwitchId, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyAccept, "*/*")
req.PathParams.Set("switchId", switchId)
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.(*SwitchMSwitchStackConfigStackConfigAPIResponse), err
}
// FindStackMemberBySerialNumber
//
// Use this API command to retrieve the member of switches in a stack.
//
// Operation ID: findStackMemberBySerialNumber
// Operation path: /stack/member/{serialNumber}
// Success code: 200 (OK)
//
// Required parameters:
// - serialNumber string
// - required
func (s *SwitchMSwitchStackConfigService) FindStackMemberBySerialNumber(ctx context.Context, serialNumber string, mutators ...RequestMutator) (*SwitchMSwitchStackConfigListAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSwitchMSwitchStackConfigListAPIResponse
)
req = apiRequestFromPool(APISourceVSZ, http.MethodGet, RouteSwitchMFindStackMemberBySerialNumber, true)
defer recycleAPIRequest(req)
req.Header.Set(headerKeyAccept, "*/*")
req.PathParams.Set("serialNumber", serialNumber)
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.(*SwitchMSwitchStackConfigListAPIResponse), err
}