@itentialopensource/adapter-clearcable_noms 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/changelogs/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +835 -0
- package/report/adapter-openapi.yaml +712 -0
|
@@ -0,0 +1,835 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.3",
|
|
3
|
+
"info": {
|
|
4
|
+
"contact": {},
|
|
5
|
+
"license": {
|
|
6
|
+
"name": "Apache 2.0",
|
|
7
|
+
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
|
|
8
|
+
},
|
|
9
|
+
"description": "Clearcable NOMS (Nomad Management System) http://clearcable.ca/",
|
|
10
|
+
"version": "1.0.0",
|
|
11
|
+
"title": "Clearcable NOMS",
|
|
12
|
+
"termsOfService": "http://swagger.io/terms/"
|
|
13
|
+
},
|
|
14
|
+
"servers": [
|
|
15
|
+
{
|
|
16
|
+
"url": "https://localhost/"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"security": [],
|
|
20
|
+
"paths": {
|
|
21
|
+
"/read/realtimedata/{macAddress}": {
|
|
22
|
+
"get": {
|
|
23
|
+
"parameters": [
|
|
24
|
+
{
|
|
25
|
+
"name": "macAddress",
|
|
26
|
+
"in": "path",
|
|
27
|
+
"description": "MAC Address has to contain 12 hex characters",
|
|
28
|
+
"required": true,
|
|
29
|
+
"schema": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"tags": [
|
|
35
|
+
"default"
|
|
36
|
+
],
|
|
37
|
+
"operationId": "getCableModemRealTimeData",
|
|
38
|
+
"summary": "Get Cable Modem Real Time Data",
|
|
39
|
+
"description": "CableModem Real Time Data",
|
|
40
|
+
"responses": {
|
|
41
|
+
"200": {
|
|
42
|
+
"description": "successful operation"
|
|
43
|
+
},
|
|
44
|
+
"400": {
|
|
45
|
+
"description": "failed operation"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"/read/cablemodem_transfer/v0.1/list_macs/hourly": {
|
|
51
|
+
"get": {
|
|
52
|
+
"parameters": [],
|
|
53
|
+
"tags": [
|
|
54
|
+
"default"
|
|
55
|
+
],
|
|
56
|
+
"operationId": "getMacsWithHourlyData",
|
|
57
|
+
"summary": "Get All MACs with Hourly Data",
|
|
58
|
+
"description": "Load List of Macs with Hourly Data Available",
|
|
59
|
+
"responses": {
|
|
60
|
+
"200": {
|
|
61
|
+
"description": "successful operation"
|
|
62
|
+
},
|
|
63
|
+
"400": {
|
|
64
|
+
"description": "failed operation"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"/read/cablemodem_transfer/v0.1/hourly/mac/{macAddress}": {
|
|
70
|
+
"get": {
|
|
71
|
+
"parameters": [
|
|
72
|
+
{
|
|
73
|
+
"name": "macAddress",
|
|
74
|
+
"in": "path",
|
|
75
|
+
"required": true,
|
|
76
|
+
"description": "MAC Address",
|
|
77
|
+
"schema": {
|
|
78
|
+
"type": "string"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"tags": [
|
|
83
|
+
"default"
|
|
84
|
+
],
|
|
85
|
+
"operationId": "getMacWithHourlyData",
|
|
86
|
+
"summary": "Get MAC with Hourly Data",
|
|
87
|
+
"description": "Load Hourly Data For A Single Mac",
|
|
88
|
+
"responses": {
|
|
89
|
+
"200": {
|
|
90
|
+
"description": "successful operation"
|
|
91
|
+
},
|
|
92
|
+
"400": {
|
|
93
|
+
"description": "failed operation"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"/read/cablemodem_transfer/v0.1/monthly/mac/{macAddress}": {
|
|
99
|
+
"get": {
|
|
100
|
+
"parameters": [
|
|
101
|
+
{
|
|
102
|
+
"name": "macAddress",
|
|
103
|
+
"in": "path",
|
|
104
|
+
"description": "MAC Address",
|
|
105
|
+
"required": true,
|
|
106
|
+
"schema": {
|
|
107
|
+
"type": "string"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"tags": [
|
|
112
|
+
"default"
|
|
113
|
+
],
|
|
114
|
+
"operationId": "getMacWithMonthlyData",
|
|
115
|
+
"summary": "Get MAC with Monthly Data",
|
|
116
|
+
"description": "Load Monthly Data For A Single Mac",
|
|
117
|
+
"responses": {
|
|
118
|
+
"200": {
|
|
119
|
+
"description": "successful operation"
|
|
120
|
+
},
|
|
121
|
+
"400": {
|
|
122
|
+
"description": "failed operation"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"/read/cablemodem_transfer/v0.1/this_month_sum/mac/{macAddress}": {
|
|
128
|
+
"get": {
|
|
129
|
+
"parameters": [
|
|
130
|
+
{
|
|
131
|
+
"name": "macAddress",
|
|
132
|
+
"in": "path",
|
|
133
|
+
"description": "MAC Address",
|
|
134
|
+
"required": true,
|
|
135
|
+
"schema": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"tags": [
|
|
141
|
+
"default"
|
|
142
|
+
],
|
|
143
|
+
"operationId": "getSumOfTransfersInCurrentMonth",
|
|
144
|
+
"summary": "Get Sum of Transfers Current Month",
|
|
145
|
+
"description": "Load Sum of Transfers In Current Month For A Single Mac",
|
|
146
|
+
"responses": {
|
|
147
|
+
"200": {
|
|
148
|
+
"description": "successful operation"
|
|
149
|
+
},
|
|
150
|
+
"400": {
|
|
151
|
+
"description": "failed operation"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"/read/cablemodem_transfer/v0.1/top_this_month/{limit}": {
|
|
157
|
+
"get": {
|
|
158
|
+
"parameters": [
|
|
159
|
+
{
|
|
160
|
+
"name": "limit",
|
|
161
|
+
"in": "path",
|
|
162
|
+
"description": "Limit Integer of the amount they transferred.",
|
|
163
|
+
"required": true,
|
|
164
|
+
"schema": {
|
|
165
|
+
"type": "string"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"tags": [
|
|
170
|
+
"default"
|
|
171
|
+
],
|
|
172
|
+
"operationId": "getMACsTransferredMostCurrentMonth",
|
|
173
|
+
"summary": "Get MACs Transferred Most Current Month",
|
|
174
|
+
"description": "Load List of Macs Which Transferred Most In Current Month",
|
|
175
|
+
"responses": {
|
|
176
|
+
"200": {
|
|
177
|
+
"description": "successful operation"
|
|
178
|
+
},
|
|
179
|
+
"400": {
|
|
180
|
+
"description": "failed operation"
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"/read/cablemodem_transfer/v0.1/sum_per_mac_in_month/{date}": {
|
|
186
|
+
"get": {
|
|
187
|
+
"parameters": [
|
|
188
|
+
{
|
|
189
|
+
"name": "date",
|
|
190
|
+
"in": "path",
|
|
191
|
+
"description": "Date in YYYY-mm",
|
|
192
|
+
"required": true,
|
|
193
|
+
"schema": {
|
|
194
|
+
"type": "string"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"tags": [
|
|
199
|
+
"default"
|
|
200
|
+
],
|
|
201
|
+
"operationId": "getSumTransfersInMonthForEachMac",
|
|
202
|
+
"summary": "Get Sum of Transfers by Month",
|
|
203
|
+
"description": "Load Sum of Transfers In Month For Each Mac",
|
|
204
|
+
"responses": {
|
|
205
|
+
"200": {
|
|
206
|
+
"description": "successful operation"
|
|
207
|
+
},
|
|
208
|
+
"400": {
|
|
209
|
+
"description": "failed operation"
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"/read/cablemodem_transfer/v0.1/sum_per_mac_in_month/{date}/count": {
|
|
215
|
+
"get": {
|
|
216
|
+
"parameters": [
|
|
217
|
+
{
|
|
218
|
+
"name": "date",
|
|
219
|
+
"in": "path",
|
|
220
|
+
"description": "Date in YYYY-mm",
|
|
221
|
+
"required": true,
|
|
222
|
+
"schema": {
|
|
223
|
+
"type": "string"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"tags": [
|
|
228
|
+
"default"
|
|
229
|
+
],
|
|
230
|
+
"operationId": "getSumTransfersInMonthForEachMacCount",
|
|
231
|
+
"summary": "Get Sum of Transfers by Month Count",
|
|
232
|
+
"description": "Load Sum of Transfers In Month For Each Mac Count Only",
|
|
233
|
+
"responses": {
|
|
234
|
+
"200": {
|
|
235
|
+
"description": "successful operation"
|
|
236
|
+
},
|
|
237
|
+
"400": {
|
|
238
|
+
"description": "failed operation"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"/read/cablemodem_transfer/v0.1/sum_per_mac_in_month/{date}/sort/total": {
|
|
244
|
+
"get": {
|
|
245
|
+
"parameters": [
|
|
246
|
+
{
|
|
247
|
+
"name": "date",
|
|
248
|
+
"in": "path",
|
|
249
|
+
"description": "Date in YYYY-mm",
|
|
250
|
+
"required": true,
|
|
251
|
+
"schema": {
|
|
252
|
+
"type": "string"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"tags": [
|
|
257
|
+
"default"
|
|
258
|
+
],
|
|
259
|
+
"operationId": "getSumTransfersInMonthForEachMacSortTotal",
|
|
260
|
+
"summary": "Get Sum of Transfers by Month Sort Total",
|
|
261
|
+
"description": "Load Sum of Transfers In Month For Each Mac Sort Total",
|
|
262
|
+
"responses": {
|
|
263
|
+
"200": {
|
|
264
|
+
"description": "successful operation"
|
|
265
|
+
},
|
|
266
|
+
"400": {
|
|
267
|
+
"description": "failed operation"
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"/read/cablemodem_transfer/v0.1/sum_per_mac_in_month/{date}/sort/upload": {
|
|
273
|
+
"get": {
|
|
274
|
+
"parameters": [
|
|
275
|
+
{
|
|
276
|
+
"name": "date",
|
|
277
|
+
"in": "path",
|
|
278
|
+
"description": "Date in YYYY-mm",
|
|
279
|
+
"required": true,
|
|
280
|
+
"schema": {
|
|
281
|
+
"type": "string"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
"tags": [
|
|
286
|
+
"default"
|
|
287
|
+
],
|
|
288
|
+
"operationId": "getSumTransfersInMonthForEachMacSortUpload",
|
|
289
|
+
"summary": "Get Sum of Transfers by Month Sort Upload",
|
|
290
|
+
"description": "Load Sum of Transfers In Month For Each Mac Sort Upload",
|
|
291
|
+
"responses": {
|
|
292
|
+
"200": {
|
|
293
|
+
"description": "successful operation"
|
|
294
|
+
},
|
|
295
|
+
"400": {
|
|
296
|
+
"description": "failed operation"
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"/read/cablemodem_transfer/v0.1/sum_per_mac_in_month/{date}/sort/download": {
|
|
302
|
+
"get": {
|
|
303
|
+
"parameters": [
|
|
304
|
+
{
|
|
305
|
+
"name": "date",
|
|
306
|
+
"in": "path",
|
|
307
|
+
"description": "Date in YYYY-mm",
|
|
308
|
+
"required": true,
|
|
309
|
+
"schema": {
|
|
310
|
+
"type": "string"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"tags": [
|
|
315
|
+
"default"
|
|
316
|
+
],
|
|
317
|
+
"operationId": "getSumTransfersInMonthForEachMacSortDownload",
|
|
318
|
+
"summary": "Get Sum of Transfers by Month Sort Download",
|
|
319
|
+
"description": "Load Sum of Transfers In Month For Each Mac Sort Download",
|
|
320
|
+
"responses": {
|
|
321
|
+
"200": {
|
|
322
|
+
"description": "successful operation"
|
|
323
|
+
},
|
|
324
|
+
"400": {
|
|
325
|
+
"description": "failed operation"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"/read/cablemodem_transfer/v0.1/sum_per_mac_in_month/{date}/limit/{limitStart}/{limitCount}": {
|
|
331
|
+
"get": {
|
|
332
|
+
"parameters": [
|
|
333
|
+
{
|
|
334
|
+
"name": "date",
|
|
335
|
+
"in": "path",
|
|
336
|
+
"description": "Date in YYYY-mm",
|
|
337
|
+
"required": true,
|
|
338
|
+
"schema": {
|
|
339
|
+
"type": "string"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "limitStart",
|
|
344
|
+
"in": "path",
|
|
345
|
+
"description": "Limit Start Rows Returned",
|
|
346
|
+
"required": true,
|
|
347
|
+
"schema": {
|
|
348
|
+
"type": "integer"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "limitCount",
|
|
353
|
+
"in": "path",
|
|
354
|
+
"description": "Limit Count of Rows Returned",
|
|
355
|
+
"required": true,
|
|
356
|
+
"schema": {
|
|
357
|
+
"type": "integer"
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
],
|
|
361
|
+
"tags": [
|
|
362
|
+
"default"
|
|
363
|
+
],
|
|
364
|
+
"operationId": "getSumTransfersInMonthForEachMacLimit",
|
|
365
|
+
"summary": "Get Sum of Transfers by Month Limit",
|
|
366
|
+
"description": "Load Sum of Transfers In Month For Each Mac Limit",
|
|
367
|
+
"responses": {
|
|
368
|
+
"200": {
|
|
369
|
+
"description": "successful operation"
|
|
370
|
+
},
|
|
371
|
+
"400": {
|
|
372
|
+
"description": "failed operation"
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"/read/cablemodem_transfer/v0.1/list_services_in_month/{date}": {
|
|
378
|
+
"get": {
|
|
379
|
+
"parameters": [
|
|
380
|
+
{
|
|
381
|
+
"name": "date",
|
|
382
|
+
"in": "path",
|
|
383
|
+
"description": "Date in YYYY-mm",
|
|
384
|
+
"required": true,
|
|
385
|
+
"schema": {
|
|
386
|
+
"type": "string"
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"tags": [
|
|
391
|
+
"default"
|
|
392
|
+
],
|
|
393
|
+
"operationId": "getSumServices",
|
|
394
|
+
"summary": "Get Services by Month",
|
|
395
|
+
"description": "Get Services by Month for MACs",
|
|
396
|
+
"responses": {
|
|
397
|
+
"200": {
|
|
398
|
+
"description": "successful operation"
|
|
399
|
+
},
|
|
400
|
+
"400": {
|
|
401
|
+
"description": "failed operation"
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"/read/cablemodem_rf/v0.1/list_macs/hourly": {
|
|
407
|
+
"get": {
|
|
408
|
+
"parameters": [],
|
|
409
|
+
"tags": [
|
|
410
|
+
"default"
|
|
411
|
+
],
|
|
412
|
+
"operationId": "getAllCableModemHourly",
|
|
413
|
+
"summary": "Get All Cable Modems Hourly",
|
|
414
|
+
"description": "Load List of Macs with Hourly Data Available",
|
|
415
|
+
"responses": {
|
|
416
|
+
"200": {
|
|
417
|
+
"description": "successful operation"
|
|
418
|
+
},
|
|
419
|
+
"400": {
|
|
420
|
+
"description": "failed operation"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"/read/cablemodem_rf/v0.1/hourly/mac/{macAddress}": {
|
|
426
|
+
"get": {
|
|
427
|
+
"parameters": [
|
|
428
|
+
{
|
|
429
|
+
"name": "macAddress",
|
|
430
|
+
"in": "path",
|
|
431
|
+
"description": "MAC Address",
|
|
432
|
+
"required": true,
|
|
433
|
+
"schema": {
|
|
434
|
+
"type": "string"
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
],
|
|
438
|
+
"tags": [
|
|
439
|
+
"default"
|
|
440
|
+
],
|
|
441
|
+
"operationId": "getCableModemHourly",
|
|
442
|
+
"summary": "Get Cable Modem Hourly",
|
|
443
|
+
"description": " Load Hourly Data For A Single Mac",
|
|
444
|
+
"responses": {
|
|
445
|
+
"200": {
|
|
446
|
+
"description": "successful operation"
|
|
447
|
+
},
|
|
448
|
+
"400": {
|
|
449
|
+
"description": "failed operation"
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"/read/cablemodem_rf/v0.1/daily/mac/{macAddress}": {
|
|
455
|
+
"get": {
|
|
456
|
+
"parameters": [
|
|
457
|
+
{
|
|
458
|
+
"name": "macAddress",
|
|
459
|
+
"in": "path",
|
|
460
|
+
"description": "MAC Address",
|
|
461
|
+
"required": true,
|
|
462
|
+
"schema": {
|
|
463
|
+
"type": "string"
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
"tags": [
|
|
468
|
+
"default"
|
|
469
|
+
],
|
|
470
|
+
"operationId": "getCableModemDailyMac",
|
|
471
|
+
"summary": "Get Cable Modem Daily",
|
|
472
|
+
"description": "Load Daily Data For A Single Mac",
|
|
473
|
+
"responses": {
|
|
474
|
+
"200": {
|
|
475
|
+
"description": "successful operation"
|
|
476
|
+
},
|
|
477
|
+
"400": {
|
|
478
|
+
"description": "failed operation"
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"/read/cablemodem_rf/v0.1/monthly/mac/{macAddress}": {
|
|
484
|
+
"get": {
|
|
485
|
+
"parameters": [
|
|
486
|
+
{
|
|
487
|
+
"name": "macAddress",
|
|
488
|
+
"in": "path",
|
|
489
|
+
"description": "MAC Address",
|
|
490
|
+
"schema": {
|
|
491
|
+
"type": "string"
|
|
492
|
+
},
|
|
493
|
+
"required": true
|
|
494
|
+
}
|
|
495
|
+
],
|
|
496
|
+
"tags": [
|
|
497
|
+
"default"
|
|
498
|
+
],
|
|
499
|
+
"operationId": "getCableModemMonthly",
|
|
500
|
+
"summary": "Get Cable Modem Monthly",
|
|
501
|
+
"description": "Load Monthly Data For A Single Mac",
|
|
502
|
+
"responses": {
|
|
503
|
+
"200": {
|
|
504
|
+
"description": "successful operation"
|
|
505
|
+
},
|
|
506
|
+
"400": {
|
|
507
|
+
"description": "failed operation"
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
"/read/cablemodem_rf/v0.1/this_month_average/mac/{macAddress}": {
|
|
513
|
+
"get": {
|
|
514
|
+
"parameters": [
|
|
515
|
+
{
|
|
516
|
+
"name": "macAddress",
|
|
517
|
+
"in": "path",
|
|
518
|
+
"description": "MAC Address",
|
|
519
|
+
"required": true,
|
|
520
|
+
"schema": {
|
|
521
|
+
"type": "string"
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
"tags": [
|
|
526
|
+
"default"
|
|
527
|
+
],
|
|
528
|
+
"operationId": "getCableModemCurrentMonthAverage",
|
|
529
|
+
"summary": "Get Cable Modem Current Month Average",
|
|
530
|
+
"description": "Load Cable Modem Current Month Average",
|
|
531
|
+
"responses": {
|
|
532
|
+
"200": {
|
|
533
|
+
"description": "successful operation"
|
|
534
|
+
},
|
|
535
|
+
"400": {
|
|
536
|
+
"description": "failed operation"
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"/read/cablemodem_transfer/v0.1/average_per_mac_in_month/{date}": {
|
|
542
|
+
"get": {
|
|
543
|
+
"parameters": [
|
|
544
|
+
{
|
|
545
|
+
"name": "date",
|
|
546
|
+
"in": "path",
|
|
547
|
+
"description": "Date in YYYY-mm",
|
|
548
|
+
"required": true,
|
|
549
|
+
"schema": {
|
|
550
|
+
"type": "string"
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
"tags": [
|
|
555
|
+
"default"
|
|
556
|
+
],
|
|
557
|
+
"operationId": "getCableModemAverageMac",
|
|
558
|
+
"summary": "Get Cable Modem Average MAC",
|
|
559
|
+
"description": "Load Average of Rf In Current Month For A Single Mac",
|
|
560
|
+
"responses": {
|
|
561
|
+
"200": {
|
|
562
|
+
"description": "successful operation"
|
|
563
|
+
},
|
|
564
|
+
"400": {
|
|
565
|
+
"description": "failed operation"
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"/read/cablemodem_flap/v0.1/list_macs/hourly": {
|
|
571
|
+
"get": {
|
|
572
|
+
"parameters": [],
|
|
573
|
+
"tags": [
|
|
574
|
+
"default"
|
|
575
|
+
],
|
|
576
|
+
"operationId": "getAllCableModemFlapHourly",
|
|
577
|
+
"summary": "Get All Cable Modem Flaps Hourly",
|
|
578
|
+
"description": "Load List of Macs with Hourly Data Available",
|
|
579
|
+
"responses": {
|
|
580
|
+
"200": {
|
|
581
|
+
"description": "successful operation"
|
|
582
|
+
},
|
|
583
|
+
"400": {
|
|
584
|
+
"description": "failed operation"
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"/read/cablemodem_flap/v0.1/list_macs/hourly/{macAddress}": {
|
|
590
|
+
"get": {
|
|
591
|
+
"parameters": [
|
|
592
|
+
{
|
|
593
|
+
"name": "macAddress",
|
|
594
|
+
"in": "path",
|
|
595
|
+
"description": "MAC Address",
|
|
596
|
+
"required": true,
|
|
597
|
+
"schema": {
|
|
598
|
+
"type": "string"
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
"tags": [
|
|
603
|
+
"default"
|
|
604
|
+
],
|
|
605
|
+
"operationId": "getCableModemFlapHourly",
|
|
606
|
+
"summary": "Get Cable Modem Flaps Hourly",
|
|
607
|
+
"description": "Load Hourly Data For A Single Mac",
|
|
608
|
+
"responses": {
|
|
609
|
+
"200": {
|
|
610
|
+
"description": "successful operation"
|
|
611
|
+
},
|
|
612
|
+
"400": {
|
|
613
|
+
"description": "failed operation"
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"/read/cablemodem_flap/v0.1/daily/mac/{macAddress}": {
|
|
619
|
+
"get": {
|
|
620
|
+
"parameters": [
|
|
621
|
+
{
|
|
622
|
+
"name": "macAddress",
|
|
623
|
+
"in": "path",
|
|
624
|
+
"description": "MAC Address",
|
|
625
|
+
"schema": {
|
|
626
|
+
"type": "string"
|
|
627
|
+
},
|
|
628
|
+
"required": true
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"tags": [
|
|
632
|
+
"default"
|
|
633
|
+
],
|
|
634
|
+
"operationId": "getCableModemFlapDaily",
|
|
635
|
+
"summary": "Get Cable Modem Flaps Daily",
|
|
636
|
+
"description": "Load Daily Data For A Single Mac",
|
|
637
|
+
"responses": {
|
|
638
|
+
"200": {
|
|
639
|
+
"description": "successful operation"
|
|
640
|
+
},
|
|
641
|
+
"400": {
|
|
642
|
+
"description": "failed operation"
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"/read/cablemodem_flap/v0.1/monthly/mac/{macAddress}": {
|
|
648
|
+
"get": {
|
|
649
|
+
"parameters": [
|
|
650
|
+
{
|
|
651
|
+
"name": "macAddress",
|
|
652
|
+
"in": "path",
|
|
653
|
+
"description": "MAC Address",
|
|
654
|
+
"required": true,
|
|
655
|
+
"schema": {
|
|
656
|
+
"type": "string"
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
],
|
|
660
|
+
"tags": [
|
|
661
|
+
"default"
|
|
662
|
+
],
|
|
663
|
+
"operationId": "getCableModemFlapMonthly",
|
|
664
|
+
"summary": "Get Cable Modem Flaps Monthly",
|
|
665
|
+
"description": "Load Monthly Data For A Single Mac",
|
|
666
|
+
"responses": {
|
|
667
|
+
"200": {
|
|
668
|
+
"description": "successful operation"
|
|
669
|
+
},
|
|
670
|
+
"400": {
|
|
671
|
+
"description": "failed operation"
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"/read/cablemodem_flap/v0.1/this_day_sum/mac/{macAddress}": {
|
|
677
|
+
"get": {
|
|
678
|
+
"parameters": [
|
|
679
|
+
{
|
|
680
|
+
"name": "macAddress",
|
|
681
|
+
"in": "path",
|
|
682
|
+
"description": "MAC Address",
|
|
683
|
+
"required": true,
|
|
684
|
+
"schema": {
|
|
685
|
+
"type": "string"
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"tags": [
|
|
690
|
+
"default"
|
|
691
|
+
],
|
|
692
|
+
"operationId": "getCableModemFlapCurrentDay",
|
|
693
|
+
"summary": "Get Cable Modem Flaps Current Day",
|
|
694
|
+
"description": "Load Monthly Data For A Single Mac Current Day",
|
|
695
|
+
"responses": {
|
|
696
|
+
"200": {
|
|
697
|
+
"description": "successful operation"
|
|
698
|
+
},
|
|
699
|
+
"400": {
|
|
700
|
+
"description": "failed operation"
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"/read/cablemodem_flap/v0.1/this_month_sum/mac/{macAddress}": {
|
|
706
|
+
"get": {
|
|
707
|
+
"parameters": [
|
|
708
|
+
{
|
|
709
|
+
"name": "macAddress",
|
|
710
|
+
"in": "path",
|
|
711
|
+
"description": "MAC Address",
|
|
712
|
+
"required": true,
|
|
713
|
+
"schema": {
|
|
714
|
+
"type": "string"
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"tags": [
|
|
719
|
+
"default"
|
|
720
|
+
],
|
|
721
|
+
"operationId": "getCableModemFlapCurrentMonth",
|
|
722
|
+
"summary": "Get Cable Modem Flaps Current Month",
|
|
723
|
+
"description": "Load Monthly Data For A Single Mac Current Month",
|
|
724
|
+
"responses": {
|
|
725
|
+
"200": {
|
|
726
|
+
"description": "successful operation"
|
|
727
|
+
},
|
|
728
|
+
"400": {
|
|
729
|
+
"description": "failed operation"
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
"/read/cablemodem_flap/v0.1/last_month_sum/mac/{macAddress}": {
|
|
735
|
+
"get": {
|
|
736
|
+
"parameters": [
|
|
737
|
+
{
|
|
738
|
+
"name": "macAddress",
|
|
739
|
+
"in": "path",
|
|
740
|
+
"description": "MAC Address",
|
|
741
|
+
"required": true,
|
|
742
|
+
"schema": {
|
|
743
|
+
"type": "string"
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
],
|
|
747
|
+
"tags": [
|
|
748
|
+
"default"
|
|
749
|
+
],
|
|
750
|
+
"operationId": "getCableModemFlapLastMonth",
|
|
751
|
+
"summary": "Get Cable Modem Flaps Last Month",
|
|
752
|
+
"description": "Load Monthly Data For A Single Mac Last Month",
|
|
753
|
+
"responses": {
|
|
754
|
+
"200": {
|
|
755
|
+
"description": "successful operation"
|
|
756
|
+
},
|
|
757
|
+
"400": {
|
|
758
|
+
"description": "failed operation"
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"/read/cablemodem_flap/v0.1/top_this_hour/{limit}": {
|
|
764
|
+
"get": {
|
|
765
|
+
"parameters": [
|
|
766
|
+
{
|
|
767
|
+
"name": "limit",
|
|
768
|
+
"in": "path",
|
|
769
|
+
"description": "limit amount transferred",
|
|
770
|
+
"required": true,
|
|
771
|
+
"schema": {
|
|
772
|
+
"type": "integer"
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"tags": [
|
|
777
|
+
"default"
|
|
778
|
+
],
|
|
779
|
+
"operationId": "getCableModemFlapCurrentMonthMost",
|
|
780
|
+
"summary": "Get Cable Modem Flaps Current Month Most",
|
|
781
|
+
"description": "Load List of Macs Which Had the Most Flaps In Current Month",
|
|
782
|
+
"responses": {
|
|
783
|
+
"200": {
|
|
784
|
+
"description": "successful operation"
|
|
785
|
+
},
|
|
786
|
+
"400": {
|
|
787
|
+
"description": "failed operation"
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
"/read/cablemodem_status/v0.1/mac/{macAddress}": {
|
|
793
|
+
"get": {
|
|
794
|
+
"parameters": [
|
|
795
|
+
{
|
|
796
|
+
"name": "macAddress",
|
|
797
|
+
"in": "path",
|
|
798
|
+
"description": "MAC Address",
|
|
799
|
+
"required": true,
|
|
800
|
+
"schema": {
|
|
801
|
+
"type": "string"
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
],
|
|
805
|
+
"tags": [
|
|
806
|
+
"default"
|
|
807
|
+
],
|
|
808
|
+
"operationId": "getCableModemStatus",
|
|
809
|
+
"summary": "Get Cable Modem Status",
|
|
810
|
+
"description": "Cable Modem Status Stats v0.1",
|
|
811
|
+
"responses": {
|
|
812
|
+
"200": {
|
|
813
|
+
"description": "successful operation"
|
|
814
|
+
},
|
|
815
|
+
"400": {
|
|
816
|
+
"description": "failed operation"
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"externalDocs": {
|
|
823
|
+
"description": "Find out more about the OpenAPI Initiative",
|
|
824
|
+
"url": "https://www.openapis.org/"
|
|
825
|
+
},
|
|
826
|
+
"tags": [
|
|
827
|
+
{
|
|
828
|
+
"name": "default",
|
|
829
|
+
"description": ""
|
|
830
|
+
}
|
|
831
|
+
],
|
|
832
|
+
"components": {
|
|
833
|
+
"securitySchemes": {}
|
|
834
|
+
}
|
|
835
|
+
}
|