-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsci_sessionssummaryreport.go
432 lines (377 loc) · 14.3 KB
/
sci_sessionssummaryreport.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
package bigdog
// API Version: 1.0.0
import (
"context"
"encoding/json"
"net/http"
"time"
)
type SCISessionsSummaryReportService struct {
apiClient *SCIClient
}
func NewSCISessionsSummaryReportService(c *SCIClient) *SCISessionsSummaryReportService {
s := new(SCISessionsSummaryReportService)
s.apiClient = c
return s
}
func (ss *SCIService) SCISessionsSummaryReportService() *SCISessionsSummaryReportService {
return NewSCISessionsSummaryReportService(ss.apiClient)
}
// SCISessionsSummaryReport33topTableData
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_33_topTable_Data
type SCISessionsSummaryReport33topTableData []*SCISessionsSummaryReport33topTableDataType
func MakeSCISessionsSummaryReport33topTableData() SCISessionsSummaryReport33topTableData {
m := make(SCISessionsSummaryReport33topTableData, 0)
return m
}
// SCISessionsSummaryReport33topTableDataType
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_33_topTable_DataType
type SCISessionsSummaryReport33topTableDataType struct {
ApMac *string `json:"apMac,omitempty"`
ApName *string `json:"apName,omitempty"`
ApSerial *string `json:"apSerial,omitempty"`
ClientMac *string `json:"clientMac,omitempty"`
DisconnectTime *string `json:"disconnectTime,omitempty"`
FirstConnection *string `json:"firstConnection,omitempty"`
Hostname *string `json:"hostname,omitempty"`
Manufacturer *string `json:"manufacturer,omitempty"`
OsType *string `json:"osType,omitempty"`
RxBytes *float64 `json:"rxBytes,omitempty"`
SessionDuration *float64 `json:"sessionDuration,omitempty"`
SessionId *string `json:"sessionId,omitempty"`
Timestamp *string `json:"timestamp,omitempty"`
TxBytes *float64 `json:"txBytes,omitempty"`
Username *string `json:"username,omitempty"`
XAdditionalProperties map[string]interface{} `json:"-"`
}
func (t *SCISessionsSummaryReport33topTableDataType) UnmarshalJSON(b []byte) error {
type _SCISessionsSummaryReport33topTableDataType SCISessionsSummaryReport33topTableDataType
tmpType := new(_SCISessionsSummaryReport33topTableDataType)
if err := json.Unmarshal(b, tmpType); err != nil {
return err
}
tmpType.XAdditionalProperties = make(map[string]interface{})
if err := json.Unmarshal(b, &tmpType.XAdditionalProperties); err != nil {
return err
}
delete(tmpType.XAdditionalProperties, "apMac")
delete(tmpType.XAdditionalProperties, "apName")
delete(tmpType.XAdditionalProperties, "apSerial")
delete(tmpType.XAdditionalProperties, "clientMac")
delete(tmpType.XAdditionalProperties, "disconnectTime")
delete(tmpType.XAdditionalProperties, "firstConnection")
delete(tmpType.XAdditionalProperties, "hostname")
delete(tmpType.XAdditionalProperties, "manufacturer")
delete(tmpType.XAdditionalProperties, "osType")
delete(tmpType.XAdditionalProperties, "rxBytes")
delete(tmpType.XAdditionalProperties, "sessionDuration")
delete(tmpType.XAdditionalProperties, "sessionId")
delete(tmpType.XAdditionalProperties, "timestamp")
delete(tmpType.XAdditionalProperties, "txBytes")
delete(tmpType.XAdditionalProperties, "username")
*t = SCISessionsSummaryReport33topTableDataType(*tmpType)
return nil
}
func (t *SCISessionsSummaryReport33topTableDataType) MarshalJSON() ([]byte, error) {
if t == nil {
return nil, nil
}
var tmp map[string]interface{}
if t.XAdditionalProperties == nil {
tmp = make(map[string]interface{})
} else {
tmp = t.XAdditionalProperties
}
if t.ApMac != nil {
tmp["apMac"] = t.ApMac
}
if t.ApName != nil {
tmp["apName"] = t.ApName
}
if t.ApSerial != nil {
tmp["apSerial"] = t.ApSerial
}
if t.ClientMac != nil {
tmp["clientMac"] = t.ClientMac
}
if t.DisconnectTime != nil {
tmp["disconnectTime"] = t.DisconnectTime
}
if t.FirstConnection != nil {
tmp["firstConnection"] = t.FirstConnection
}
if t.Hostname != nil {
tmp["hostname"] = t.Hostname
}
if t.Manufacturer != nil {
tmp["manufacturer"] = t.Manufacturer
}
if t.OsType != nil {
tmp["osType"] = t.OsType
}
if t.RxBytes != nil {
tmp["rxBytes"] = t.RxBytes
}
if t.SessionDuration != nil {
tmp["sessionDuration"] = t.SessionDuration
}
if t.SessionId != nil {
tmp["sessionId"] = t.SessionId
}
if t.Timestamp != nil {
tmp["timestamp"] = t.Timestamp
}
if t.TxBytes != nil {
tmp["txBytes"] = t.TxBytes
}
if t.Username != nil {
tmp["username"] = t.Username
}
return json.Marshal(tmp)
}
func NewSCISessionsSummaryReport33topTableDataType() *SCISessionsSummaryReport33topTableDataType {
m := new(SCISessionsSummaryReport33topTableDataType)
return m
}
// SCISessionsSummaryReport33topTableMetaData
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_33_topTable_MetaData
type SCISessionsSummaryReport33topTableMetaData struct {
PagingIdentifiers *SCISessionsSummaryReport33topTableMetaDataPagingIdentifiersType `json:"pagingIdentifiers,omitempty"`
TotalCount *float64 `json:"totalCount,omitempty"`
XAdditionalProperties map[string]interface{} `json:"-"`
}
func (t *SCISessionsSummaryReport33topTableMetaData) UnmarshalJSON(b []byte) error {
type _SCISessionsSummaryReport33topTableMetaData SCISessionsSummaryReport33topTableMetaData
tmpType := new(_SCISessionsSummaryReport33topTableMetaData)
if err := json.Unmarshal(b, tmpType); err != nil {
return err
}
tmpType.XAdditionalProperties = make(map[string]interface{})
if err := json.Unmarshal(b, &tmpType.XAdditionalProperties); err != nil {
return err
}
delete(tmpType.XAdditionalProperties, "pagingIdentifiers")
delete(tmpType.XAdditionalProperties, "totalCount")
*t = SCISessionsSummaryReport33topTableMetaData(*tmpType)
return nil
}
func (t *SCISessionsSummaryReport33topTableMetaData) MarshalJSON() ([]byte, error) {
if t == nil {
return nil, nil
}
var tmp map[string]interface{}
if t.XAdditionalProperties == nil {
tmp = make(map[string]interface{})
} else {
tmp = t.XAdditionalProperties
}
if t.PagingIdentifiers != nil {
tmp["pagingIdentifiers"] = t.PagingIdentifiers
}
if t.TotalCount != nil {
tmp["totalCount"] = t.TotalCount
}
return json.Marshal(tmp)
}
func NewSCISessionsSummaryReport33topTableMetaData() *SCISessionsSummaryReport33topTableMetaData {
m := new(SCISessionsSummaryReport33topTableMetaData)
return m
}
// SCISessionsSummaryReport33topTableMetaDataPagingIdentifiersType
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_33_topTable_MetaDataPagingIdentifiersType
type SCISessionsSummaryReport33topTableMetaDataPagingIdentifiersType struct {
Type *string `json:"type,omitempty"`
}
func NewSCISessionsSummaryReport33topTableMetaDataPagingIdentifiersType() *SCISessionsSummaryReport33topTableMetaDataPagingIdentifiersType {
m := new(SCISessionsSummaryReport33topTableMetaDataPagingIdentifiersType)
return m
}
// SCISessionsSummaryReport34overviewData
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_34_overview_Data
type SCISessionsSummaryReport34overviewData []*SCISessionsSummaryReport34overviewDataType
func MakeSCISessionsSummaryReport34overviewData() SCISessionsSummaryReport34overviewData {
m := make(SCISessionsSummaryReport34overviewData, 0)
return m
}
// SCISessionsSummaryReport34overviewDataType
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_34_overview_DataType
type SCISessionsSummaryReport34overviewDataType struct {
SessionDurationAvg *float64 `json:"sessionDurationAvg,omitempty"`
XAdditionalProperties map[string]interface{} `json:"-"`
}
func (t *SCISessionsSummaryReport34overviewDataType) UnmarshalJSON(b []byte) error {
type _SCISessionsSummaryReport34overviewDataType SCISessionsSummaryReport34overviewDataType
tmpType := new(_SCISessionsSummaryReport34overviewDataType)
if err := json.Unmarshal(b, tmpType); err != nil {
return err
}
tmpType.XAdditionalProperties = make(map[string]interface{})
if err := json.Unmarshal(b, &tmpType.XAdditionalProperties); err != nil {
return err
}
delete(tmpType.XAdditionalProperties, "sessionDurationAvg")
*t = SCISessionsSummaryReport34overviewDataType(*tmpType)
return nil
}
func (t *SCISessionsSummaryReport34overviewDataType) MarshalJSON() ([]byte, error) {
if t == nil {
return nil, nil
}
var tmp map[string]interface{}
if t.XAdditionalProperties == nil {
tmp = make(map[string]interface{})
} else {
tmp = t.XAdditionalProperties
}
if t.SessionDurationAvg != nil {
tmp["sessionDurationAvg"] = t.SessionDurationAvg
}
return json.Marshal(tmp)
}
func NewSCISessionsSummaryReport34overviewDataType() *SCISessionsSummaryReport34overviewDataType {
m := new(SCISessionsSummaryReport34overviewDataType)
return m
}
// SCISessionsSummaryReport42durationPercentileData
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_42_durationPercentile_Data
type SCISessionsSummaryReport42durationPercentileData []*SCISessionsSummaryReport42durationPercentileDataType
func MakeSCISessionsSummaryReport42durationPercentileData() SCISessionsSummaryReport42durationPercentileData {
m := make(SCISessionsSummaryReport42durationPercentileData, 0)
return m
}
// SCISessionsSummaryReport42durationPercentileDataType
//
// Definition: SessionsSummaryReport_SessionsSummaryReport_42_durationPercentile_DataType
type SCISessionsSummaryReport42durationPercentileDataType struct {
Duration *float64 `json:"duration,omitempty"`
PercentRank *float64 `json:"percentRank,omitempty"`
XAdditionalProperties map[string]interface{} `json:"-"`
}
func (t *SCISessionsSummaryReport42durationPercentileDataType) UnmarshalJSON(b []byte) error {
type _SCISessionsSummaryReport42durationPercentileDataType SCISessionsSummaryReport42durationPercentileDataType
tmpType := new(_SCISessionsSummaryReport42durationPercentileDataType)
if err := json.Unmarshal(b, tmpType); err != nil {
return err
}
tmpType.XAdditionalProperties = make(map[string]interface{})
if err := json.Unmarshal(b, &tmpType.XAdditionalProperties); err != nil {
return err
}
delete(tmpType.XAdditionalProperties, "duration")
delete(tmpType.XAdditionalProperties, "percentRank")
*t = SCISessionsSummaryReport42durationPercentileDataType(*tmpType)
return nil
}
func (t *SCISessionsSummaryReport42durationPercentileDataType) MarshalJSON() ([]byte, error) {
if t == nil {
return nil, nil
}
var tmp map[string]interface{}
if t.XAdditionalProperties == nil {
tmp = make(map[string]interface{})
} else {
tmp = t.XAdditionalProperties
}
if t.Duration != nil {
tmp["duration"] = t.Duration
}
if t.PercentRank != nil {
tmp["percentRank"] = t.PercentRank
}
return json.Marshal(tmp)
}
func NewSCISessionsSummaryReport42durationPercentileDataType() *SCISessionsSummaryReport42durationPercentileDataType {
m := new(SCISessionsSummaryReport42durationPercentileDataType)
return m
}
// ReportSessionsSummaryReport33TopTable
//
// Sessions Summary Report - Top Sessions Summary
//
// Operation ID: report_SessionsSummaryReport_33_topTable
// Operation path: /reports/6/sections/33/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCISessionsSummaryReportService) ReportSessionsSummaryReport33TopTable(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportSessionsSummaryReport33topTable200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportSessionsSummaryReport33topTable200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportSessionsSummaryReport33TopTable, 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.(*SCIReportSessionsSummaryReport33topTable200ResponseTypeAPIResponse), err
}
// ReportSessionsSummaryReport34Overview
//
// Sessions Summary Report - Average Durations
//
// Operation ID: report_SessionsSummaryReport_34_overview
// Operation path: /reports/6/sections/34/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCISessionsSummaryReportService) ReportSessionsSummaryReport34Overview(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportSessionsSummaryReport34overview200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportSessionsSummaryReport34overview200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportSessionsSummaryReport34Overview, 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.(*SCIReportSessionsSummaryReport34overview200ResponseTypeAPIResponse), err
}
// ReportSessionsSummaryReport42DurationPercentile
//
// Sessions Summary Report - Session Duration Percentiles
//
// Operation ID: report_SessionsSummaryReport_42_durationPercentile
// Operation path: /reports/6/sections/42/data
// Success code: 200 (OK)
//
// Request body:
// - body *SCICommonReportQueryBody
func (s *SCISessionsSummaryReportService) ReportSessionsSummaryReport42DurationPercentile(ctx context.Context, body *SCICommonReportQueryBody, mutators ...RequestMutator) (*SCIReportSessionsSummaryReport42durationPercentile200ResponseTypeAPIResponse, error) {
var (
req *APIRequest
httpResp *http.Response
execDur time.Duration
resp APIResponse
err error
respFn = newSCIReportSessionsSummaryReport42durationPercentile200ResponseTypeAPIResponse
)
req = apiRequestFromPool(APISourceSCI, http.MethodPost, RouteSCIReportSessionsSummaryReport42DurationPercentile, 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.(*SCIReportSessionsSummaryReport42durationPercentile200ResponseTypeAPIResponse), err
}