@itentialopensource/adapter-nokia_nsp_device_administrator 0.1.4 → 0.2.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.
Files changed (42) hide show
  1. package/CALLS.md +26 -26
  2. package/CHANGELOG.md +16 -0
  3. package/CONTRIBUTING.md +1 -160
  4. package/ENHANCE.md +2 -2
  5. package/README.md +31 -22
  6. package/adapter.js +159 -330
  7. package/adapterBase.js +538 -873
  8. package/changelogs/changelog.md +40 -0
  9. package/metadata.json +47 -0
  10. package/package.json +22 -25
  11. package/pronghorn.json +474 -142
  12. package/propertiesSchema.json +453 -40
  13. package/refs?service=git-upload-pack +0 -0
  14. package/report/adapter-openapi.json +1358 -0
  15. package/report/adapter-openapi.yaml +870 -0
  16. package/report/adapterInfo.json +8 -8
  17. package/report/updateReport1691505785664.json +120 -0
  18. package/report/updateReport1692203065644.json +120 -0
  19. package/report/updateReport1694458393320.json +120 -0
  20. package/report/updateReport1694467358688.json +120 -0
  21. package/report/updateReport1698422242868.json +120 -0
  22. package/sampleProperties.json +63 -2
  23. package/test/integration/adapterTestBasicGet.js +1 -1
  24. package/test/integration/adapterTestConnectivity.js +91 -42
  25. package/test/integration/adapterTestIntegration.js +130 -2
  26. package/test/unit/adapterBaseTestUnit.js +388 -313
  27. package/test/unit/adapterTestUnit.js +306 -109
  28. package/utils/adapterInfo.js +1 -1
  29. package/utils/addAuth.js +1 -1
  30. package/utils/artifactize.js +1 -1
  31. package/utils/checkMigrate.js +1 -1
  32. package/utils/entitiesToDB.js +1 -0
  33. package/utils/findPath.js +1 -1
  34. package/utils/methodDocumentor.js +71 -23
  35. package/utils/modify.js +13 -15
  36. package/utils/packModificationScript.js +1 -1
  37. package/utils/taskMover.js +309 -0
  38. package/utils/tbScript.js +3 -10
  39. package/utils/tbUtils.js +2 -3
  40. package/utils/testRunner.js +1 -1
  41. package/utils/troubleshootingAdapter.js +1 -3
  42. package/workflows/README.md +0 -3
@@ -0,0 +1,870 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: 'Device Administrator API Reference '
4
+ description: '[A brief sandbox description of the NSP Application and its REST interfaces]<br /><br />For access authorization and authentication for sandbox, see <a href="auth.html">REST API Authentication</a>.<br />'
5
+ contact: {}
6
+ version: '1.0'
7
+ servers:
8
+ - url: https://145.40.97.58:8548/mdm-necontrol-rest-api-app/api
9
+ variables: {}
10
+ paths:
11
+ /neControl/discover/alarmDictionaryChecker/{alarmDictName}:
12
+ post:
13
+ tags:
14
+ - ne-control-discovery
15
+ summary: alarmDictionaryCheckerUsingPOST
16
+ description: alarmDictionaryChecker
17
+ operationId: alarmDictionaryCheckerUsingPOST
18
+ parameters:
19
+ - name: alarmDictName
20
+ in: path
21
+ description: alarmDictName
22
+ required: true
23
+ style: simple
24
+ schema:
25
+ type: string
26
+ requestBody:
27
+ description: aInAlarmDictionaryCheckerInfo
28
+ content:
29
+ application/json:
30
+ schema:
31
+ type: string
32
+ description: aInAlarmDictionaryCheckerInfo
33
+ required: true
34
+ responses:
35
+ '200':
36
+ description: OK
37
+ headers: {}
38
+ content:
39
+ '*/*':
40
+ schema: {}
41
+ deprecated: false
42
+ security:
43
+ - RESTToken:
44
+ - global
45
+ /neControl/discover/discoverNes:
46
+ post:
47
+ tags:
48
+ - ne-control-discovery
49
+ summary: discoverNesUsingPOST
50
+ description: discoverNes
51
+ operationId: discoverNesUsingPOST
52
+ parameters: []
53
+ requestBody:
54
+ description: discRuleJson
55
+ content:
56
+ application/json:
57
+ schema:
58
+ type: object
59
+ description: discRuleJson
60
+ required: true
61
+ responses:
62
+ '200':
63
+ description: OK
64
+ headers: {}
65
+ content:
66
+ application/json:
67
+ schema:
68
+ $ref: '#/components/schemas/ResponseDatastring'
69
+ deprecated: false
70
+ security:
71
+ - RESTToken:
72
+ - global
73
+ /neControl/discover/listNes:
74
+ get:
75
+ tags:
76
+ - ne-control-discovery
77
+ summary: listDiscoveredNesUsingGET
78
+ description: listDiscoveredNes
79
+ operationId: listDiscoveredNesUsingGET
80
+ parameters: []
81
+ responses:
82
+ '200':
83
+ description: OK
84
+ headers: {}
85
+ content:
86
+ '*/*':
87
+ schema: {}
88
+ deprecated: false
89
+ security:
90
+ - RESTToken:
91
+ - global
92
+ /neControl/discover/{fdn}/fullresync/:
93
+ put:
94
+ tags:
95
+ - ne-control-discovery
96
+ summary: fullNeResyncUsingPUT
97
+ description: fullNeResync
98
+ operationId: fullNeResyncUsingPUT
99
+ parameters:
100
+ - name: fdn
101
+ in: path
102
+ description: fdn
103
+ required: true
104
+ style: simple
105
+ schema:
106
+ type: string
107
+ - name: Content-Type
108
+ in: header
109
+ description: ''
110
+ required: true
111
+ style: simple
112
+ schema:
113
+ $ref: '#/components/schemas/Content-Type'
114
+ responses:
115
+ '200':
116
+ description: OK
117
+ headers: {}
118
+ content:
119
+ application/json:
120
+ schema:
121
+ $ref: '#/components/schemas/ResponseDatastring'
122
+ deprecated: false
123
+ security:
124
+ - RESTToken:
125
+ - global
126
+ /neControl/discover/{fdn}/nes/:
127
+ post:
128
+ tags:
129
+ - ne-control-discovery
130
+ summary: discoverNesUsingPOST_1
131
+ description: discoverNes
132
+ operationId: discoverNesUsingPOST_1
133
+ parameters:
134
+ - name: fdn
135
+ in: path
136
+ description: fdn
137
+ required: true
138
+ style: simple
139
+ schema:
140
+ type: string
141
+ - name: Content-Type
142
+ in: header
143
+ description: ''
144
+ required: true
145
+ style: simple
146
+ schema:
147
+ $ref: '#/components/schemas/Content-Type'
148
+ responses:
149
+ '200':
150
+ description: OK
151
+ headers: {}
152
+ content:
153
+ application/json:
154
+ schema:
155
+ $ref: '#/components/schemas/ResponseDataJsonNode'
156
+ deprecated: false
157
+ security:
158
+ - RESTToken:
159
+ - global
160
+ /neControl/discover/{fdn}/unmanage/:
161
+ put:
162
+ tags:
163
+ - ne-control-discovery
164
+ summary: unmanageNesUsingPUT
165
+ description: unmanageNes
166
+ operationId: unmanageNesUsingPUT
167
+ parameters:
168
+ - name: fdn
169
+ in: path
170
+ description: fdn
171
+ required: true
172
+ style: simple
173
+ schema:
174
+ type: string
175
+ - name: Content-Type
176
+ in: header
177
+ description: ''
178
+ required: true
179
+ style: simple
180
+ schema:
181
+ $ref: '#/components/schemas/Content-Type'
182
+ responses:
183
+ '200':
184
+ description: OK
185
+ headers: {}
186
+ content:
187
+ application/json:
188
+ schema:
189
+ $ref: '#/components/schemas/ResponseDatastring'
190
+ deprecated: false
191
+ security:
192
+ - RESTToken:
193
+ - global
194
+ /neControl/discoveryrule:
195
+ post:
196
+ tags:
197
+ - ne-control-discovery-rule
198
+ summary: createUsingPOST
199
+ description: create
200
+ operationId: createUsingPOST
201
+ parameters: []
202
+ requestBody:
203
+ description: aInJson
204
+ content:
205
+ application/json:
206
+ schema:
207
+ type: object
208
+ description: aInJson
209
+ required: true
210
+ responses:
211
+ '200':
212
+ description: OK
213
+ headers: {}
214
+ content:
215
+ application/json:
216
+ schema:
217
+ $ref: '#/components/schemas/ResponseDataJsonNode'
218
+ deprecated: false
219
+ security:
220
+ - RESTToken:
221
+ - global
222
+ /neControl/discoveryrule/addAll/{fdn}/:
223
+ put:
224
+ tags:
225
+ - ne-control-discovery-rule
226
+ summary: addAllUsingPUT
227
+ description: addAll
228
+ operationId: addAllUsingPUT
229
+ parameters:
230
+ - name: fdn
231
+ in: path
232
+ description: fdn
233
+ required: true
234
+ style: simple
235
+ schema:
236
+ type: string
237
+ requestBody:
238
+ description: aInJson
239
+ content:
240
+ application/json:
241
+ schema:
242
+ type: object
243
+ description: aInJson
244
+ required: true
245
+ responses:
246
+ '200':
247
+ description: OK
248
+ headers: {}
249
+ content:
250
+ application/json:
251
+ schema:
252
+ $ref: '#/components/schemas/ResponseDataJsonNode'
253
+ deprecated: false
254
+ security:
255
+ - RESTToken:
256
+ - global
257
+ /neControl/discoveryrule/allDiscoveredNes:
258
+ get:
259
+ tags:
260
+ - ne-control-discovery-rule
261
+ summary: getAllDiscoveredNesUsingGET
262
+ description: getAllDiscoveredNes
263
+ operationId: getAllDiscoveredNesUsingGET
264
+ parameters: []
265
+ responses:
266
+ '200':
267
+ description: OK
268
+ headers: {}
269
+ content:
270
+ '*/*':
271
+ schema: {}
272
+ deprecated: false
273
+ security:
274
+ - RESTToken:
275
+ - global
276
+ /neControl/discoveryrule/detail/:
277
+ get:
278
+ tags:
279
+ - ne-control-discovery-rule
280
+ summary: findNeDiscoveryRuleByFDNUsingGET
281
+ description: findNeDiscoveryRuleByFDN
282
+ operationId: findNeDiscoveryRuleByFDNUsingGET
283
+ parameters:
284
+ - name: fdn
285
+ in: query
286
+ description: fdn
287
+ required: true
288
+ style: form
289
+ explode: true
290
+ schema:
291
+ type: string
292
+ responses:
293
+ '200':
294
+ description: OK
295
+ headers: {}
296
+ content:
297
+ '*/*':
298
+ schema: {}
299
+ deprecated: false
300
+ security:
301
+ - RESTToken:
302
+ - global
303
+ /neControl/discoveryrule/removeAll/{fdn}/:
304
+ put:
305
+ tags:
306
+ - ne-control-discovery-rule
307
+ summary: removeAllUsingPUT
308
+ description: removeAll
309
+ operationId: removeAllUsingPUT
310
+ parameters:
311
+ - name: fdn
312
+ in: path
313
+ description: fdn
314
+ required: true
315
+ style: simple
316
+ schema:
317
+ type: string
318
+ requestBody:
319
+ description: aInJson
320
+ content:
321
+ application/json:
322
+ schema:
323
+ type: object
324
+ description: aInJson
325
+ required: true
326
+ responses:
327
+ '200':
328
+ description: OK
329
+ headers: {}
330
+ content:
331
+ application/json:
332
+ schema:
333
+ $ref: '#/components/schemas/ResponseDataJsonNode'
334
+ deprecated: false
335
+ security:
336
+ - RESTToken:
337
+ - global
338
+ /neControl/discoveryrule/{fdn}:
339
+ put:
340
+ tags:
341
+ - ne-control-discovery-rule
342
+ summary: updateUsingPUT
343
+ description: update
344
+ operationId: updateUsingPUT
345
+ parameters:
346
+ - name: fdn
347
+ in: path
348
+ description: fdn
349
+ required: true
350
+ style: simple
351
+ schema:
352
+ type: string
353
+ requestBody:
354
+ description: aInJson
355
+ content:
356
+ application/json:
357
+ schema:
358
+ type: object
359
+ description: aInJson
360
+ required: true
361
+ responses:
362
+ '200':
363
+ description: OK
364
+ headers: {}
365
+ content:
366
+ application/json:
367
+ schema:
368
+ $ref: '#/components/schemas/ResponseDataJsonNode'
369
+ deprecated: false
370
+ security:
371
+ - RESTToken:
372
+ - global
373
+ delete:
374
+ tags:
375
+ - ne-control-discovery-rule
376
+ summary: deleteUsingDELETE
377
+ description: delete
378
+ operationId: deleteUsingDELETE
379
+ parameters:
380
+ - name: fdn
381
+ in: path
382
+ description: fdn
383
+ required: true
384
+ style: simple
385
+ schema:
386
+ type: string
387
+ responses:
388
+ '200':
389
+ description: OK
390
+ headers: {}
391
+ content:
392
+ application/json:
393
+ schema:
394
+ $ref: '#/components/schemas/ResponseDataJsonNode'
395
+ deprecated: false
396
+ security:
397
+ - RESTToken:
398
+ - global
399
+ /neControl/discoveryrule/{fdn}/{requestType}/:
400
+ get:
401
+ tags:
402
+ - ne-control-discovery-rule
403
+ summary: getDataUsingGET
404
+ description: getData
405
+ operationId: getDataUsingGET
406
+ parameters:
407
+ - name: fdn
408
+ in: path
409
+ description: fdn
410
+ required: true
411
+ style: simple
412
+ schema:
413
+ type: string
414
+ - name: requestType
415
+ in: path
416
+ description: requestType
417
+ required: true
418
+ style: simple
419
+ schema:
420
+ type: string
421
+ responses:
422
+ '200':
423
+ description: OK
424
+ headers: {}
425
+ content:
426
+ '*/*':
427
+ schema: {}
428
+ deprecated: false
429
+ security:
430
+ - RESTToken:
431
+ - global
432
+ /nemediationpolicy:
433
+ post:
434
+ tags:
435
+ - ne-mediation-policy
436
+ summary: addPolicyUsingPOST
437
+ description: addPolicy
438
+ operationId: addPolicyUsingPOST
439
+ parameters: []
440
+ requestBody:
441
+ description: nePolicyJson
442
+ content:
443
+ application/json:
444
+ schema:
445
+ type: object
446
+ description: nePolicyJson
447
+ required: true
448
+ responses:
449
+ '200':
450
+ description: OK
451
+ headers: {}
452
+ content:
453
+ application/json:
454
+ schema:
455
+ $ref: '#/components/schemas/ResponseDataJsonNode'
456
+ deprecated: false
457
+ security:
458
+ - RESTToken:
459
+ - global
460
+ /nemediationpolicy/{fdn}:
461
+ put:
462
+ tags:
463
+ - ne-mediation-policy
464
+ summary: updatePolicyUsingPUT
465
+ description: updatePolicy
466
+ operationId: updatePolicyUsingPUT
467
+ parameters:
468
+ - name: fdn
469
+ in: path
470
+ description: fdn
471
+ required: true
472
+ style: simple
473
+ schema:
474
+ type: string
475
+ requestBody:
476
+ description: nePolicyJson
477
+ content:
478
+ application/json:
479
+ schema:
480
+ type: object
481
+ description: nePolicyJson
482
+ required: true
483
+ responses:
484
+ '200':
485
+ description: OK
486
+ headers: {}
487
+ content:
488
+ application/json:
489
+ schema:
490
+ $ref: '#/components/schemas/ResponseDataJsonNode'
491
+ deprecated: false
492
+ security:
493
+ - RESTToken:
494
+ - global
495
+ delete:
496
+ tags:
497
+ - ne-mediation-policy
498
+ summary: deletePolicyUsingDELETE
499
+ description: deletePolicy
500
+ operationId: deletePolicyUsingDELETE
501
+ parameters:
502
+ - name: fdn
503
+ in: path
504
+ description: fdn
505
+ required: true
506
+ style: simple
507
+ schema:
508
+ type: string
509
+ responses:
510
+ '200':
511
+ description: OK
512
+ headers: {}
513
+ content:
514
+ application/json:
515
+ schema:
516
+ $ref: '#/components/schemas/ResponseDataJsonNode'
517
+ deprecated: false
518
+ security:
519
+ - RESTToken:
520
+ - global
521
+ /nemediationpolicy/{fdn}/detail/:
522
+ get:
523
+ tags:
524
+ - ne-mediation-policy
525
+ summary: getNesUsingGET
526
+ description: getNes
527
+ operationId: getNesUsingGET
528
+ parameters:
529
+ - name: fdn
530
+ in: path
531
+ description: fdn
532
+ required: true
533
+ style: simple
534
+ schema:
535
+ type: string
536
+ responses:
537
+ '200':
538
+ description: OK
539
+ headers: {}
540
+ content:
541
+ '*/*':
542
+ schema: {}
543
+ deprecated: false
544
+ security:
545
+ - RESTToken:
546
+ - global
547
+ /nemediationpolicy/{fdn}/getNes/{accessType}/:
548
+ get:
549
+ tags:
550
+ - ne-mediation-policy
551
+ summary: getNesUsingGET_1
552
+ description: getNes
553
+ operationId: getNesUsingGET_1
554
+ parameters:
555
+ - name: accessType
556
+ in: path
557
+ description: accessType
558
+ required: true
559
+ style: simple
560
+ schema:
561
+ type: string
562
+ - name: fdn
563
+ in: path
564
+ description: fdn
565
+ required: true
566
+ style: simple
567
+ schema:
568
+ type: string
569
+ responses:
570
+ '200':
571
+ description: OK
572
+ headers: {}
573
+ content:
574
+ '*/*':
575
+ schema: {}
576
+ deprecated: false
577
+ security:
578
+ - RESTToken:
579
+ - global
580
+ /nemediationpolicy/{neid}/policies:
581
+ get:
582
+ tags:
583
+ - ne-mediation-policy
584
+ summary: getPoliciesForReadOnlyNeUsingGET
585
+ description: getPoliciesForReadOnlyNe
586
+ operationId: getPoliciesForReadOnlyNeUsingGET
587
+ parameters:
588
+ - name: neid
589
+ in: path
590
+ description: neid
591
+ required: true
592
+ style: simple
593
+ schema:
594
+ type: string
595
+ - name: type
596
+ in: query
597
+ description: type
598
+ style: form
599
+ explode: true
600
+ schema:
601
+ type: string
602
+ responses:
603
+ '200':
604
+ description: OK
605
+ headers: {}
606
+ content:
607
+ '*/*':
608
+ schema: {}
609
+ deprecated: false
610
+ security:
611
+ - RESTToken:
612
+ - global
613
+ /neprotocol:
614
+ post:
615
+ tags:
616
+ - ne-protocol
617
+ summary: addNeProtocolUsingPOST
618
+ description: addNeProtocol
619
+ operationId: addNeProtocolUsingPOST
620
+ parameters: []
621
+ requestBody:
622
+ description: neUserJson
623
+ content:
624
+ application/json:
625
+ schema:
626
+ type: object
627
+ description: neUserJson
628
+ required: true
629
+ responses:
630
+ '200':
631
+ description: OK
632
+ headers: {}
633
+ content:
634
+ application/json:
635
+ schema:
636
+ $ref: '#/components/schemas/ResponseDataJsonNode'
637
+ deprecated: false
638
+ security:
639
+ - RESTToken:
640
+ - global
641
+ put:
642
+ tags:
643
+ - ne-protocol
644
+ summary: updateProtocolUsingPUT
645
+ description: updateProtocol
646
+ operationId: updateProtocolUsingPUT
647
+ parameters: []
648
+ requestBody:
649
+ description: neProtocolJson
650
+ content:
651
+ application/json:
652
+ schema:
653
+ type: object
654
+ description: neProtocolJson
655
+ required: true
656
+ responses:
657
+ '200':
658
+ description: OK
659
+ headers: {}
660
+ content:
661
+ application/json:
662
+ schema:
663
+ $ref: '#/components/schemas/ResponseDataJsonNode'
664
+ deprecated: false
665
+ security:
666
+ - RESTToken:
667
+ - global
668
+ /neprotocol/{fdn}/:
669
+ delete:
670
+ tags:
671
+ - ne-protocol
672
+ summary: deletePolicyUsingDELETE_1
673
+ description: deletePolicy
674
+ operationId: deletePolicyUsingDELETE_1
675
+ parameters:
676
+ - name: fdn
677
+ in: path
678
+ description: fdn
679
+ required: true
680
+ style: simple
681
+ schema:
682
+ type: string
683
+ responses:
684
+ '200':
685
+ description: OK
686
+ headers: {}
687
+ content:
688
+ application/json:
689
+ schema:
690
+ $ref: '#/components/schemas/ResponseDataJsonNode'
691
+ deprecated: false
692
+ security:
693
+ - RESTToken:
694
+ - global
695
+ /neuser:
696
+ post:
697
+ tags:
698
+ - ne-user
699
+ summary: addNeUserUsingPOST
700
+ description: Add NE User
701
+ operationId: addNeUserUsingPOST
702
+ parameters: []
703
+ requestBody:
704
+ description: neUserJson
705
+ content:
706
+ application/json:
707
+ schema:
708
+ type: object
709
+ description: neUserJson
710
+ required: true
711
+ responses:
712
+ '200':
713
+ description: Ne User created successfully
714
+ headers: {}
715
+ content:
716
+ application/json:
717
+ schema:
718
+ $ref: '#/components/schemas/ResponseDataJsonNode'
719
+ deprecated: false
720
+ security:
721
+ - RESTToken:
722
+ - global
723
+ put:
724
+ tags:
725
+ - ne-user
726
+ summary: updateNeUserUsingPUT
727
+ description: Update NE User
728
+ operationId: updateNeUserUsingPUT
729
+ parameters: []
730
+ requestBody:
731
+ description: neUserJson
732
+ content:
733
+ application/json:
734
+ schema:
735
+ type: object
736
+ description: neUserJson
737
+ required: true
738
+ responses:
739
+ '200':
740
+ description: Ne User Updated successfully
741
+ headers: {}
742
+ content:
743
+ application/json:
744
+ schema:
745
+ $ref: '#/components/schemas/ResponseDataJsonNode'
746
+ deprecated: false
747
+ security:
748
+ - RESTToken:
749
+ - global
750
+ /neuser/{fdn}/:
751
+ delete:
752
+ tags:
753
+ - ne-user
754
+ summary: deletePolicyUsingDELETE_2
755
+ description: Delete NE User
756
+ operationId: deletePolicyUsingDELETE_2
757
+ parameters:
758
+ - name: fdn
759
+ in: path
760
+ description: fdn
761
+ required: true
762
+ style: simple
763
+ schema:
764
+ type: string
765
+ responses:
766
+ '200':
767
+ description: Ne User Deleted successfully
768
+ headers: {}
769
+ content:
770
+ application/json:
771
+ schema:
772
+ $ref: '#/components/schemas/ResponseDataJsonNode'
773
+ deprecated: false
774
+ security:
775
+ - RESTToken:
776
+ - global
777
+ components:
778
+ schemas:
779
+ ResponseDataJsonNode:
780
+ title: ResponseDataJsonNode
781
+ type: object
782
+ properties:
783
+ response:
784
+ $ref: '#/components/schemas/ResponseJsonNode'
785
+ ResponseDatastring:
786
+ title: ResponseDatastring
787
+ type: object
788
+ properties:
789
+ response:
790
+ $ref: '#/components/schemas/Responsestring'
791
+ ResponseJsonNode:
792
+ title: ResponseJsonNode
793
+ type: object
794
+ properties:
795
+ data:
796
+ type: object
797
+ endRow:
798
+ type: integer
799
+ format: int64
800
+ errors:
801
+ type: array
802
+ items:
803
+ type: object
804
+ description: ''
805
+ nextPage:
806
+ type: string
807
+ description: (Optional) A paged URL request pointing to the next page of data, or "null" if there is no next page.
808
+ previousPage:
809
+ type: string
810
+ description: (Optional) A paged URL request pointing to the previous page of data, or "null" if there is no previous page.
811
+ startRow:
812
+ type: integer
813
+ format: int64
814
+ status:
815
+ type: integer
816
+ format: int32
817
+ totalRows:
818
+ type: integer
819
+ format: int64
820
+ Responsestring:
821
+ title: Responsestring
822
+ type: object
823
+ properties:
824
+ data:
825
+ type: string
826
+ endRow:
827
+ type: integer
828
+ format: int64
829
+ errors:
830
+ type: array
831
+ items:
832
+ type: object
833
+ description: ''
834
+ nextPage:
835
+ type: string
836
+ description: (Optional) A paged URL request pointing to the next page of data, or "null" if there is no next page.
837
+ previousPage:
838
+ type: string
839
+ description: (Optional) A paged URL request pointing to the previous page of data, or "null" if there is no previous page.
840
+ startRow:
841
+ type: integer
842
+ format: int64
843
+ status:
844
+ type: integer
845
+ format: int32
846
+ totalRows:
847
+ type: integer
848
+ format: int64
849
+ Content-Type:
850
+ title: Content-Type
851
+ enum:
852
+ - application/json
853
+ type: string
854
+ securitySchemes:
855
+ RESTToken:
856
+ type: apiKey
857
+ name: Authorization
858
+ in: header
859
+ security: []
860
+ tags:
861
+ - name: ne-control-discovery
862
+ description: Ne Control Discovery Rest Controller
863
+ - name: ne-control-discovery-rule
864
+ description: Ne Discovery Rule Controller
865
+ - name: ne-mediation-policy
866
+ description: Mediation Policy Controller
867
+ - name: ne-protocol
868
+ description: 'Rest interface to access Mediation NE Protocol '
869
+ - name: ne-user
870
+ description: Rest interface to access Mediation policy NeUser