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