@itentialopensource/adapter-paragon_insights 0.1.2 → 0.1.3
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/CALLS.md +120 -0
- package/CHANGELOG.md +8 -0
- package/adapter.js +1980 -0
- package/entities/Config/action.json +306 -0
- package/entities/Config/mockdatafiles/retrieveHealthbotIngestIfaDeviceIds-default.json +4 -0
- package/entities/Config/mockdatafiles/retrieveHealthbotIngestIfaDevices-default.json +10 -0
- package/entities/Config/schema.json +16 -1
- package/entities/Configuration/action.json +61 -0
- package/entities/Configuration/schema.json +4 -1
- package/entities/Utility/action.json +44 -0
- package/entities/Utility/schema.json +20 -0
- package/package.json +1 -1
- package/pronghorn.json +812 -7
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +7 -7
- package/test/integration/adapterTestIntegration.js +510 -0
- package/test/unit/adapterTestUnit.js +563 -0
package/pronghorn.json
CHANGED
|
@@ -6344,7 +6344,7 @@
|
|
|
6344
6344
|
{
|
|
6345
6345
|
"name": "sort",
|
|
6346
6346
|
"type": "enum",
|
|
6347
|
-
"enumerals"
|
|
6347
|
+
"enumerals": [
|
|
6348
6348
|
"asc",
|
|
6349
6349
|
"desc"
|
|
6350
6350
|
],
|
|
@@ -20133,7 +20133,7 @@
|
|
|
20133
20133
|
{
|
|
20134
20134
|
"name": "color",
|
|
20135
20135
|
"type": "enum",
|
|
20136
|
-
"enumerals"
|
|
20136
|
+
"enumerals": [
|
|
20137
20137
|
"all",
|
|
20138
20138
|
"red",
|
|
20139
20139
|
"yellow",
|
|
@@ -20257,7 +20257,7 @@
|
|
|
20257
20257
|
{
|
|
20258
20258
|
"name": "color",
|
|
20259
20259
|
"type": "enum",
|
|
20260
|
-
"enumerals"
|
|
20260
|
+
"enumerals": [
|
|
20261
20261
|
"all",
|
|
20262
20262
|
"red",
|
|
20263
20263
|
"yellow",
|
|
@@ -20391,7 +20391,7 @@
|
|
|
20391
20391
|
{
|
|
20392
20392
|
"name": "color",
|
|
20393
20393
|
"type": "enum",
|
|
20394
|
-
"enumerals"
|
|
20394
|
+
"enumerals": [
|
|
20395
20395
|
"all",
|
|
20396
20396
|
"red",
|
|
20397
20397
|
"yellow",
|
|
@@ -20505,7 +20505,7 @@
|
|
|
20505
20505
|
{
|
|
20506
20506
|
"name": "color",
|
|
20507
20507
|
"type": "enum",
|
|
20508
|
-
"enumerals"
|
|
20508
|
+
"enumerals": [
|
|
20509
20509
|
"all",
|
|
20510
20510
|
"red",
|
|
20511
20511
|
"yellow",
|
|
@@ -20629,7 +20629,7 @@
|
|
|
20629
20629
|
{
|
|
20630
20630
|
"name": "color",
|
|
20631
20631
|
"type": "enum",
|
|
20632
|
-
"enumerals"
|
|
20632
|
+
"enumerals": [
|
|
20633
20633
|
"all",
|
|
20634
20634
|
"red",
|
|
20635
20635
|
"yellow",
|
|
@@ -20763,7 +20763,7 @@
|
|
|
20763
20763
|
{
|
|
20764
20764
|
"name": "color",
|
|
20765
20765
|
"type": "enum",
|
|
20766
|
-
"enumerals"
|
|
20766
|
+
"enumerals": [
|
|
20767
20767
|
"all",
|
|
20768
20768
|
"red",
|
|
20769
20769
|
"yellow",
|
|
@@ -21188,6 +21188,811 @@
|
|
|
21188
21188
|
"path": "/postInspectCommandRpcTable"
|
|
21189
21189
|
},
|
|
21190
21190
|
"task": true
|
|
21191
|
+
},
|
|
21192
|
+
{
|
|
21193
|
+
"name": "retrieveDeviceTriggerInfo",
|
|
21194
|
+
"summary": "retrieve_device_trigger_info",
|
|
21195
|
+
"description": "Get information about the triggers in device-groups having the provided device.",
|
|
21196
|
+
"input": [
|
|
21197
|
+
{
|
|
21198
|
+
"name": "deviceId",
|
|
21199
|
+
"type": "string",
|
|
21200
|
+
"info": "Name of device: string",
|
|
21201
|
+
"required": true,
|
|
21202
|
+
"schema": {
|
|
21203
|
+
"title": "deviceId",
|
|
21204
|
+
"type": "string"
|
|
21205
|
+
}
|
|
21206
|
+
}
|
|
21207
|
+
],
|
|
21208
|
+
"output": {
|
|
21209
|
+
"name": "result",
|
|
21210
|
+
"type": "object",
|
|
21211
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21212
|
+
"schema": {
|
|
21213
|
+
"title": "result",
|
|
21214
|
+
"type": "object"
|
|
21215
|
+
}
|
|
21216
|
+
},
|
|
21217
|
+
"roles": [
|
|
21218
|
+
"admin"
|
|
21219
|
+
],
|
|
21220
|
+
"route": {
|
|
21221
|
+
"verb": "POST",
|
|
21222
|
+
"path": "/retrieveDeviceTriggerInfo"
|
|
21223
|
+
},
|
|
21224
|
+
"task": true
|
|
21225
|
+
},
|
|
21226
|
+
{
|
|
21227
|
+
"name": "removeIcebergDevicesFromGroup",
|
|
21228
|
+
"summary": "remove_iceberg_devices_from_group",
|
|
21229
|
+
"description": "Remove the list of devices from the device group",
|
|
21230
|
+
"input": [
|
|
21231
|
+
{
|
|
21232
|
+
"name": "deviceGroupName",
|
|
21233
|
+
"type": "string",
|
|
21234
|
+
"info": "ID of group: string",
|
|
21235
|
+
"required": true,
|
|
21236
|
+
"schema": {
|
|
21237
|
+
"title": "deviceGroupName",
|
|
21238
|
+
"type": "string"
|
|
21239
|
+
}
|
|
21240
|
+
}
|
|
21241
|
+
],
|
|
21242
|
+
"output": {
|
|
21243
|
+
"name": "result",
|
|
21244
|
+
"type": "object",
|
|
21245
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21246
|
+
"schema": {
|
|
21247
|
+
"title": "result",
|
|
21248
|
+
"type": "object"
|
|
21249
|
+
}
|
|
21250
|
+
},
|
|
21251
|
+
"roles": [
|
|
21252
|
+
"admin"
|
|
21253
|
+
],
|
|
21254
|
+
"route": {
|
|
21255
|
+
"verb": "POST",
|
|
21256
|
+
"path": "/removeIcebergDevicesFromGroup"
|
|
21257
|
+
},
|
|
21258
|
+
"task": true
|
|
21259
|
+
},
|
|
21260
|
+
{
|
|
21261
|
+
"name": "removeIcebergNetworkGroupNetworkGroupById",
|
|
21262
|
+
"summary": "remove_iceberg_network_group_network_group_by_id",
|
|
21263
|
+
"description": "Overwrite a network-group by the `network-group-name`. The `network-group-name` specified in the URL and the request body must match.",
|
|
21264
|
+
"input": [
|
|
21265
|
+
{
|
|
21266
|
+
"name": "networkGroupName",
|
|
21267
|
+
"type": "string",
|
|
21268
|
+
"info": "ID of network-group-name: string",
|
|
21269
|
+
"required": true,
|
|
21270
|
+
"schema": {
|
|
21271
|
+
"title": "networkGroupName",
|
|
21272
|
+
"type": "string"
|
|
21273
|
+
}
|
|
21274
|
+
}
|
|
21275
|
+
],
|
|
21276
|
+
"output": {
|
|
21277
|
+
"name": "result",
|
|
21278
|
+
"type": "object",
|
|
21279
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21280
|
+
"schema": {
|
|
21281
|
+
"title": "result",
|
|
21282
|
+
"type": "object"
|
|
21283
|
+
}
|
|
21284
|
+
},
|
|
21285
|
+
"roles": [
|
|
21286
|
+
"admin"
|
|
21287
|
+
],
|
|
21288
|
+
"route": {
|
|
21289
|
+
"verb": "POST",
|
|
21290
|
+
"path": "/removeIcebergNetworkGroupNetworkGroupById"
|
|
21291
|
+
},
|
|
21292
|
+
"task": true
|
|
21293
|
+
},
|
|
21294
|
+
{
|
|
21295
|
+
"name": "retrieveHealthbotIngestSettingsPaa",
|
|
21296
|
+
"summary": "retrieve_healthbot_ingest_settings_paa",
|
|
21297
|
+
"description": "Retrieve operation of resource: paa",
|
|
21298
|
+
"input": [
|
|
21299
|
+
{
|
|
21300
|
+
"name": "working",
|
|
21301
|
+
"type": "boolean",
|
|
21302
|
+
"info": "true queries undeployed configuration: boolean",
|
|
21303
|
+
"required": false,
|
|
21304
|
+
"schema": {
|
|
21305
|
+
"title": "working",
|
|
21306
|
+
"type": "boolean"
|
|
21307
|
+
}
|
|
21308
|
+
}
|
|
21309
|
+
],
|
|
21310
|
+
"output": {
|
|
21311
|
+
"name": "result",
|
|
21312
|
+
"type": "object",
|
|
21313
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21314
|
+
"schema": {
|
|
21315
|
+
"title": "result",
|
|
21316
|
+
"type": "object"
|
|
21317
|
+
}
|
|
21318
|
+
},
|
|
21319
|
+
"roles": [
|
|
21320
|
+
"admin"
|
|
21321
|
+
],
|
|
21322
|
+
"route": {
|
|
21323
|
+
"verb": "POST",
|
|
21324
|
+
"path": "/retrieveHealthbotIngestSettingsPaa"
|
|
21325
|
+
},
|
|
21326
|
+
"task": true
|
|
21327
|
+
},
|
|
21328
|
+
{
|
|
21329
|
+
"name": "deleteHealthbotIngestPaaByPaaName",
|
|
21330
|
+
"summary": "delete_healthbot_ingest_paa_by_paa_name",
|
|
21331
|
+
"description": "Delete operation of resource: paa by paa name",
|
|
21332
|
+
"input": [
|
|
21333
|
+
{
|
|
21334
|
+
"name": "paaName",
|
|
21335
|
+
"type": "string",
|
|
21336
|
+
"info": "name of paa setup: string",
|
|
21337
|
+
"required": true,
|
|
21338
|
+
"schema": {
|
|
21339
|
+
"title": "paaName",
|
|
21340
|
+
"type": "string"
|
|
21341
|
+
}
|
|
21342
|
+
}
|
|
21343
|
+
],
|
|
21344
|
+
"output": {
|
|
21345
|
+
"name": "result",
|
|
21346
|
+
"type": "object",
|
|
21347
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21348
|
+
"schema": {
|
|
21349
|
+
"title": "result",
|
|
21350
|
+
"type": "object"
|
|
21351
|
+
}
|
|
21352
|
+
},
|
|
21353
|
+
"roles": [
|
|
21354
|
+
"admin"
|
|
21355
|
+
],
|
|
21356
|
+
"route": {
|
|
21357
|
+
"verb": "POST",
|
|
21358
|
+
"path": "/deleteHealthbotIngestPaaByPaaName"
|
|
21359
|
+
},
|
|
21360
|
+
"task": true
|
|
21361
|
+
},
|
|
21362
|
+
{
|
|
21363
|
+
"name": "retrieveHealthbotIngestPaaByPaaName",
|
|
21364
|
+
"summary": "retrieve_healthbot_ingest_paa_by_paa_name",
|
|
21365
|
+
"description": "Retrieve operation of resource: paa by paa_name",
|
|
21366
|
+
"input": [
|
|
21367
|
+
{
|
|
21368
|
+
"name": "paaName",
|
|
21369
|
+
"type": "string",
|
|
21370
|
+
"info": "name of paa setup: string",
|
|
21371
|
+
"required": true,
|
|
21372
|
+
"schema": {
|
|
21373
|
+
"title": "paaName",
|
|
21374
|
+
"type": "string"
|
|
21375
|
+
}
|
|
21376
|
+
},
|
|
21377
|
+
{
|
|
21378
|
+
"name": "working",
|
|
21379
|
+
"type": "boolean",
|
|
21380
|
+
"info": "true queries undeployed configuration: boolean",
|
|
21381
|
+
"required": false,
|
|
21382
|
+
"schema": {
|
|
21383
|
+
"title": "working",
|
|
21384
|
+
"type": "boolean"
|
|
21385
|
+
}
|
|
21386
|
+
}
|
|
21387
|
+
],
|
|
21388
|
+
"output": {
|
|
21389
|
+
"name": "result",
|
|
21390
|
+
"type": "object",
|
|
21391
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21392
|
+
"schema": {
|
|
21393
|
+
"title": "result",
|
|
21394
|
+
"type": "object"
|
|
21395
|
+
}
|
|
21396
|
+
},
|
|
21397
|
+
"roles": [
|
|
21398
|
+
"admin"
|
|
21399
|
+
],
|
|
21400
|
+
"route": {
|
|
21401
|
+
"verb": "POST",
|
|
21402
|
+
"path": "/retrieveHealthbotIngestPaaByPaaName"
|
|
21403
|
+
},
|
|
21404
|
+
"task": true
|
|
21405
|
+
},
|
|
21406
|
+
{
|
|
21407
|
+
"name": "updateIngestPaaByPaaName",
|
|
21408
|
+
"summary": "update_ingest_paa_by_paa_name",
|
|
21409
|
+
"description": "Update operation of resource: paa by paa_name",
|
|
21410
|
+
"input": [
|
|
21411
|
+
{
|
|
21412
|
+
"name": "paaName",
|
|
21413
|
+
"type": "string",
|
|
21414
|
+
"info": "name of paa setup: string",
|
|
21415
|
+
"required": true,
|
|
21416
|
+
"schema": {
|
|
21417
|
+
"title": "paaName",
|
|
21418
|
+
"type": "string"
|
|
21419
|
+
}
|
|
21420
|
+
},
|
|
21421
|
+
{
|
|
21422
|
+
"name": "body",
|
|
21423
|
+
"type": "object",
|
|
21424
|
+
"info": "paa body object: object",
|
|
21425
|
+
"required": true,
|
|
21426
|
+
"schema": {
|
|
21427
|
+
"allOf": [
|
|
21428
|
+
{
|
|
21429
|
+
"type": "object"
|
|
21430
|
+
},
|
|
21431
|
+
{
|
|
21432
|
+
"description": "paa body object"
|
|
21433
|
+
}
|
|
21434
|
+
],
|
|
21435
|
+
"definitions": {}
|
|
21436
|
+
}
|
|
21437
|
+
}
|
|
21438
|
+
],
|
|
21439
|
+
"output": {
|
|
21440
|
+
"name": "result",
|
|
21441
|
+
"type": "object",
|
|
21442
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21443
|
+
"schema": {
|
|
21444
|
+
"title": "result",
|
|
21445
|
+
"type": "object"
|
|
21446
|
+
}
|
|
21447
|
+
},
|
|
21448
|
+
"roles": [
|
|
21449
|
+
"admin"
|
|
21450
|
+
],
|
|
21451
|
+
"route": {
|
|
21452
|
+
"verb": "POST",
|
|
21453
|
+
"path": "/updateIngestPaaByPaaName"
|
|
21454
|
+
},
|
|
21455
|
+
"task": true
|
|
21456
|
+
},
|
|
21457
|
+
{
|
|
21458
|
+
"name": "createIngestPaaByPaaName",
|
|
21459
|
+
"summary": "create_ingest_paa_by_paa_name",
|
|
21460
|
+
"description": "Create operation of resource: paa by paa_name",
|
|
21461
|
+
"input": [
|
|
21462
|
+
{
|
|
21463
|
+
"name": "paaName",
|
|
21464
|
+
"type": "string",
|
|
21465
|
+
"info": "name of paa setup: string",
|
|
21466
|
+
"required": true,
|
|
21467
|
+
"schema": {
|
|
21468
|
+
"title": "paaName",
|
|
21469
|
+
"type": "string"
|
|
21470
|
+
}
|
|
21471
|
+
},
|
|
21472
|
+
{
|
|
21473
|
+
"name": "body",
|
|
21474
|
+
"type": "object",
|
|
21475
|
+
"info": "paa body object: object",
|
|
21476
|
+
"required": true,
|
|
21477
|
+
"schema": {
|
|
21478
|
+
"allOf": [
|
|
21479
|
+
{
|
|
21480
|
+
"type": "object"
|
|
21481
|
+
},
|
|
21482
|
+
{
|
|
21483
|
+
"description": "paa body object"
|
|
21484
|
+
}
|
|
21485
|
+
],
|
|
21486
|
+
"definitions": {}
|
|
21487
|
+
}
|
|
21488
|
+
}
|
|
21489
|
+
],
|
|
21490
|
+
"output": {
|
|
21491
|
+
"name": "result",
|
|
21492
|
+
"type": "object",
|
|
21493
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21494
|
+
"schema": {
|
|
21495
|
+
"title": "result",
|
|
21496
|
+
"type": "object"
|
|
21497
|
+
}
|
|
21498
|
+
},
|
|
21499
|
+
"roles": [
|
|
21500
|
+
"admin"
|
|
21501
|
+
],
|
|
21502
|
+
"route": {
|
|
21503
|
+
"verb": "POST",
|
|
21504
|
+
"path": "/createIngestPaaByPaaName"
|
|
21505
|
+
},
|
|
21506
|
+
"task": true
|
|
21507
|
+
},
|
|
21508
|
+
{
|
|
21509
|
+
"name": "deleteHealthbotIngestIfa",
|
|
21510
|
+
"summary": "delete_healthbot_ingest_ifa",
|
|
21511
|
+
"description": "Delete operation of resource: ifa",
|
|
21512
|
+
"input": [],
|
|
21513
|
+
"output": {
|
|
21514
|
+
"name": "result",
|
|
21515
|
+
"type": "object",
|
|
21516
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21517
|
+
"schema": {
|
|
21518
|
+
"title": "result",
|
|
21519
|
+
"type": "object"
|
|
21520
|
+
}
|
|
21521
|
+
},
|
|
21522
|
+
"roles": [
|
|
21523
|
+
"admin"
|
|
21524
|
+
],
|
|
21525
|
+
"route": {
|
|
21526
|
+
"verb": "GET",
|
|
21527
|
+
"path": "/deleteHealthbotIngestIfa"
|
|
21528
|
+
},
|
|
21529
|
+
"task": true
|
|
21530
|
+
},
|
|
21531
|
+
{
|
|
21532
|
+
"name": "retrieveHealthbotIngestIfa",
|
|
21533
|
+
"summary": "retrieve_healthbot_ingest_ifa",
|
|
21534
|
+
"description": "Retrieve operation of resource: ifa",
|
|
21535
|
+
"input": [
|
|
21536
|
+
{
|
|
21537
|
+
"name": "working",
|
|
21538
|
+
"type": "boolean",
|
|
21539
|
+
"info": "true queries undeployed configuration: boolean",
|
|
21540
|
+
"required": false,
|
|
21541
|
+
"schema": {
|
|
21542
|
+
"title": "working",
|
|
21543
|
+
"type": "boolean"
|
|
21544
|
+
}
|
|
21545
|
+
}
|
|
21546
|
+
],
|
|
21547
|
+
"output": {
|
|
21548
|
+
"name": "result",
|
|
21549
|
+
"type": "object",
|
|
21550
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21551
|
+
"schema": {
|
|
21552
|
+
"title": "result",
|
|
21553
|
+
"type": "object"
|
|
21554
|
+
}
|
|
21555
|
+
},
|
|
21556
|
+
"roles": [
|
|
21557
|
+
"admin"
|
|
21558
|
+
],
|
|
21559
|
+
"route": {
|
|
21560
|
+
"verb": "POST",
|
|
21561
|
+
"path": "/retrieveHealthbotIngestIfa"
|
|
21562
|
+
},
|
|
21563
|
+
"task": true
|
|
21564
|
+
},
|
|
21565
|
+
{
|
|
21566
|
+
"name": "createHealthbotIngestIfa",
|
|
21567
|
+
"summary": "create_healthbot_ingest_ifa",
|
|
21568
|
+
"description": "Create operation of resource: ifa",
|
|
21569
|
+
"input": [
|
|
21570
|
+
{
|
|
21571
|
+
"name": "body",
|
|
21572
|
+
"type": "object",
|
|
21573
|
+
"info": "ifabody object: object",
|
|
21574
|
+
"required": true,
|
|
21575
|
+
"schema": {
|
|
21576
|
+
"allOf": [
|
|
21577
|
+
{
|
|
21578
|
+
"type": "object"
|
|
21579
|
+
},
|
|
21580
|
+
{
|
|
21581
|
+
"description": "ifabody object"
|
|
21582
|
+
}
|
|
21583
|
+
],
|
|
21584
|
+
"definitions": {}
|
|
21585
|
+
}
|
|
21586
|
+
}
|
|
21587
|
+
],
|
|
21588
|
+
"output": {
|
|
21589
|
+
"name": "result",
|
|
21590
|
+
"type": "object",
|
|
21591
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21592
|
+
"schema": {
|
|
21593
|
+
"title": "result",
|
|
21594
|
+
"type": "object"
|
|
21595
|
+
}
|
|
21596
|
+
},
|
|
21597
|
+
"roles": [
|
|
21598
|
+
"admin"
|
|
21599
|
+
],
|
|
21600
|
+
"route": {
|
|
21601
|
+
"verb": "POST",
|
|
21602
|
+
"path": "/createHealthbotIngestIfa"
|
|
21603
|
+
},
|
|
21604
|
+
"task": true
|
|
21605
|
+
},
|
|
21606
|
+
{
|
|
21607
|
+
"name": "updateHealthbotIngestIfa",
|
|
21608
|
+
"summary": "update_healthbot_ingest_ifa",
|
|
21609
|
+
"description": "Update operation of resource: ifa",
|
|
21610
|
+
"input": [
|
|
21611
|
+
{
|
|
21612
|
+
"name": "body",
|
|
21613
|
+
"type": "object",
|
|
21614
|
+
"info": "ifabody object: object",
|
|
21615
|
+
"required": true,
|
|
21616
|
+
"schema": {
|
|
21617
|
+
"allOf": [
|
|
21618
|
+
{
|
|
21619
|
+
"type": "object"
|
|
21620
|
+
},
|
|
21621
|
+
{
|
|
21622
|
+
"description": "ifabody object"
|
|
21623
|
+
}
|
|
21624
|
+
],
|
|
21625
|
+
"definitions": {}
|
|
21626
|
+
}
|
|
21627
|
+
}
|
|
21628
|
+
],
|
|
21629
|
+
"output": {
|
|
21630
|
+
"name": "result",
|
|
21631
|
+
"type": "object",
|
|
21632
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21633
|
+
"schema": {
|
|
21634
|
+
"title": "result",
|
|
21635
|
+
"type": "object"
|
|
21636
|
+
}
|
|
21637
|
+
},
|
|
21638
|
+
"roles": [
|
|
21639
|
+
"admin"
|
|
21640
|
+
],
|
|
21641
|
+
"route": {
|
|
21642
|
+
"verb": "POST",
|
|
21643
|
+
"path": "/updateHealthbotIngestIfa"
|
|
21644
|
+
},
|
|
21645
|
+
"task": true
|
|
21646
|
+
},
|
|
21647
|
+
{
|
|
21648
|
+
"name": "retrieveHealthbotIngestIfaDeviceIds",
|
|
21649
|
+
"summary": "retrieve_healthbot_ingest_ifa_device_ids",
|
|
21650
|
+
"description": "Retrieve operation of resource: device",
|
|
21651
|
+
"input": [
|
|
21652
|
+
{
|
|
21653
|
+
"name": "working",
|
|
21654
|
+
"type": "boolean",
|
|
21655
|
+
"info": "true queries undeployed configuration: boolean",
|
|
21656
|
+
"required": false,
|
|
21657
|
+
"schema": {
|
|
21658
|
+
"title": "working",
|
|
21659
|
+
"type": "boolean"
|
|
21660
|
+
}
|
|
21661
|
+
}
|
|
21662
|
+
],
|
|
21663
|
+
"output": {
|
|
21664
|
+
"name": "result",
|
|
21665
|
+
"type": "object",
|
|
21666
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21667
|
+
"schema": {
|
|
21668
|
+
"type": "array",
|
|
21669
|
+
"items": {
|
|
21670
|
+
"type": "string"
|
|
21671
|
+
},
|
|
21672
|
+
"description": ""
|
|
21673
|
+
}
|
|
21674
|
+
},
|
|
21675
|
+
"roles": [
|
|
21676
|
+
"admin"
|
|
21677
|
+
],
|
|
21678
|
+
"route": {
|
|
21679
|
+
"verb": "POST",
|
|
21680
|
+
"path": "/retrieveHealthbotIngestIfaDeviceIds"
|
|
21681
|
+
},
|
|
21682
|
+
"task": true
|
|
21683
|
+
},
|
|
21684
|
+
{
|
|
21685
|
+
"name": "retrieveHealthbotIngestIfaDevices",
|
|
21686
|
+
"summary": "retrieve_healthbot_ingest_ifa_devices",
|
|
21687
|
+
"description": "Retrieve operation of resource: device",
|
|
21688
|
+
"input": [
|
|
21689
|
+
{
|
|
21690
|
+
"name": "working",
|
|
21691
|
+
"type": "boolean",
|
|
21692
|
+
"info": "true queries undeployed configuration: boolean",
|
|
21693
|
+
"required": false,
|
|
21694
|
+
"schema": {
|
|
21695
|
+
"title": "working",
|
|
21696
|
+
"type": "boolean"
|
|
21697
|
+
}
|
|
21698
|
+
}
|
|
21699
|
+
],
|
|
21700
|
+
"output": {
|
|
21701
|
+
"name": "result",
|
|
21702
|
+
"type": "object",
|
|
21703
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21704
|
+
"schema": {
|
|
21705
|
+
"type": "array",
|
|
21706
|
+
"items": {
|
|
21707
|
+
"title": "ifa_device_schema",
|
|
21708
|
+
"required": [
|
|
21709
|
+
"id"
|
|
21710
|
+
],
|
|
21711
|
+
"type": "object",
|
|
21712
|
+
"properties": {
|
|
21713
|
+
"id": {
|
|
21714
|
+
"type": "integer",
|
|
21715
|
+
"description": "Device number"
|
|
21716
|
+
},
|
|
21717
|
+
"name": {
|
|
21718
|
+
"type": "string",
|
|
21719
|
+
"description": "Device name"
|
|
21720
|
+
}
|
|
21721
|
+
}
|
|
21722
|
+
},
|
|
21723
|
+
"description": ""
|
|
21724
|
+
}
|
|
21725
|
+
},
|
|
21726
|
+
"roles": [
|
|
21727
|
+
"admin"
|
|
21728
|
+
],
|
|
21729
|
+
"route": {
|
|
21730
|
+
"verb": "POST",
|
|
21731
|
+
"path": "/retrieveHealthbotIngestIfaDevices"
|
|
21732
|
+
},
|
|
21733
|
+
"task": true
|
|
21734
|
+
},
|
|
21735
|
+
{
|
|
21736
|
+
"name": "deleteHealthbotIngestIfaDeviceById",
|
|
21737
|
+
"summary": "delete_healthbot_ingest_ifa_device_by_id",
|
|
21738
|
+
"description": "Delete operation of resource: device",
|
|
21739
|
+
"input": [
|
|
21740
|
+
{
|
|
21741
|
+
"name": "id",
|
|
21742
|
+
"type": "number",
|
|
21743
|
+
"info": "ID of ifa device: 123",
|
|
21744
|
+
"required": true,
|
|
21745
|
+
"schema": {
|
|
21746
|
+
"title": "id",
|
|
21747
|
+
"type": "number"
|
|
21748
|
+
}
|
|
21749
|
+
}
|
|
21750
|
+
],
|
|
21751
|
+
"output": {
|
|
21752
|
+
"name": "result",
|
|
21753
|
+
"type": "object",
|
|
21754
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21755
|
+
"schema": {
|
|
21756
|
+
"title": "result",
|
|
21757
|
+
"type": "object"
|
|
21758
|
+
}
|
|
21759
|
+
},
|
|
21760
|
+
"roles": [
|
|
21761
|
+
"admin"
|
|
21762
|
+
],
|
|
21763
|
+
"route": {
|
|
21764
|
+
"verb": "POST",
|
|
21765
|
+
"path": "/deleteHealthbotIngestIfaDeviceById"
|
|
21766
|
+
},
|
|
21767
|
+
"task": true
|
|
21768
|
+
},
|
|
21769
|
+
{
|
|
21770
|
+
"name": "retrieveHealthbotIngestIfaDeviceById",
|
|
21771
|
+
"summary": "retrieve_healthbot_ingest_ifa_device_by_id",
|
|
21772
|
+
"description": "Retrieve operation of resource: device",
|
|
21773
|
+
"input": [
|
|
21774
|
+
{
|
|
21775
|
+
"name": "id",
|
|
21776
|
+
"type": "number",
|
|
21777
|
+
"info": "ID of ifa device: 123",
|
|
21778
|
+
"required": true,
|
|
21779
|
+
"schema": {
|
|
21780
|
+
"title": "id",
|
|
21781
|
+
"type": "number"
|
|
21782
|
+
}
|
|
21783
|
+
},
|
|
21784
|
+
{
|
|
21785
|
+
"name": "working",
|
|
21786
|
+
"type": "boolean",
|
|
21787
|
+
"info": "true queries undeployed configuration: boolean",
|
|
21788
|
+
"required": false,
|
|
21789
|
+
"schema": {
|
|
21790
|
+
"title": "working",
|
|
21791
|
+
"type": "boolean"
|
|
21792
|
+
}
|
|
21793
|
+
}
|
|
21794
|
+
],
|
|
21795
|
+
"output": {
|
|
21796
|
+
"name": "result",
|
|
21797
|
+
"type": "object",
|
|
21798
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21799
|
+
"schema": {
|
|
21800
|
+
"title": "result",
|
|
21801
|
+
"type": "object"
|
|
21802
|
+
}
|
|
21803
|
+
},
|
|
21804
|
+
"roles": [
|
|
21805
|
+
"admin"
|
|
21806
|
+
],
|
|
21807
|
+
"route": {
|
|
21808
|
+
"verb": "POST",
|
|
21809
|
+
"path": "/retrieveHealthbotIngestIfaDeviceById"
|
|
21810
|
+
},
|
|
21811
|
+
"task": true
|
|
21812
|
+
},
|
|
21813
|
+
{
|
|
21814
|
+
"name": "createHealthbotIngestIfaDeviceById",
|
|
21815
|
+
"summary": "create_healthbot_ingest_ifa_device_by_id",
|
|
21816
|
+
"description": "Create operation of resource: device",
|
|
21817
|
+
"input": [
|
|
21818
|
+
{
|
|
21819
|
+
"name": "id",
|
|
21820
|
+
"type": "number",
|
|
21821
|
+
"info": "ID of ifa device: 123",
|
|
21822
|
+
"required": true,
|
|
21823
|
+
"schema": {
|
|
21824
|
+
"title": "id",
|
|
21825
|
+
"type": "number"
|
|
21826
|
+
}
|
|
21827
|
+
},
|
|
21828
|
+
{
|
|
21829
|
+
"name": "body",
|
|
21830
|
+
"type": "object",
|
|
21831
|
+
"info": "devicebody object: object",
|
|
21832
|
+
"required": true,
|
|
21833
|
+
"schema": {
|
|
21834
|
+
"allOf": [
|
|
21835
|
+
{
|
|
21836
|
+
"type": "object"
|
|
21837
|
+
},
|
|
21838
|
+
{
|
|
21839
|
+
"description": "devicebody object"
|
|
21840
|
+
}
|
|
21841
|
+
],
|
|
21842
|
+
"definitions": {}
|
|
21843
|
+
}
|
|
21844
|
+
}
|
|
21845
|
+
],
|
|
21846
|
+
"output": {
|
|
21847
|
+
"name": "result",
|
|
21848
|
+
"type": "object",
|
|
21849
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21850
|
+
"schema": {
|
|
21851
|
+
"title": "result",
|
|
21852
|
+
"type": "object"
|
|
21853
|
+
}
|
|
21854
|
+
},
|
|
21855
|
+
"roles": [
|
|
21856
|
+
"admin"
|
|
21857
|
+
],
|
|
21858
|
+
"route": {
|
|
21859
|
+
"verb": "POST",
|
|
21860
|
+
"path": "/createHealthbotIngestIfaDeviceById"
|
|
21861
|
+
},
|
|
21862
|
+
"task": true
|
|
21863
|
+
},
|
|
21864
|
+
{
|
|
21865
|
+
"name": "updateHealthbotIngestIfaDeviceById",
|
|
21866
|
+
"summary": "update_healthbot_ingest_ifa_device_by_id",
|
|
21867
|
+
"description": "Update operation of resource: device",
|
|
21868
|
+
"input": [
|
|
21869
|
+
{
|
|
21870
|
+
"name": "id",
|
|
21871
|
+
"type": "string",
|
|
21872
|
+
"info": "ID of ifa device: string",
|
|
21873
|
+
"required": true,
|
|
21874
|
+
"schema": {
|
|
21875
|
+
"title": "id",
|
|
21876
|
+
"type": "string"
|
|
21877
|
+
}
|
|
21878
|
+
},
|
|
21879
|
+
{
|
|
21880
|
+
"name": "body",
|
|
21881
|
+
"type": "object",
|
|
21882
|
+
"info": "devicebody object: object",
|
|
21883
|
+
"required": true,
|
|
21884
|
+
"schema": {
|
|
21885
|
+
"allOf": [
|
|
21886
|
+
{
|
|
21887
|
+
"type": "object"
|
|
21888
|
+
},
|
|
21889
|
+
{
|
|
21890
|
+
"description": "devicebody object"
|
|
21891
|
+
}
|
|
21892
|
+
],
|
|
21893
|
+
"definitions": {}
|
|
21894
|
+
}
|
|
21895
|
+
}
|
|
21896
|
+
],
|
|
21897
|
+
"output": {
|
|
21898
|
+
"name": "result",
|
|
21899
|
+
"type": "object",
|
|
21900
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21901
|
+
"schema": {
|
|
21902
|
+
"title": "result",
|
|
21903
|
+
"type": "object"
|
|
21904
|
+
}
|
|
21905
|
+
},
|
|
21906
|
+
"roles": [
|
|
21907
|
+
"admin"
|
|
21908
|
+
],
|
|
21909
|
+
"route": {
|
|
21910
|
+
"verb": "POST",
|
|
21911
|
+
"path": "/updateHealthbotIngestIfaDeviceById"
|
|
21912
|
+
},
|
|
21913
|
+
"task": true
|
|
21914
|
+
},
|
|
21915
|
+
{
|
|
21916
|
+
"name": "postJunosEncode",
|
|
21917
|
+
"summary": "junosencode",
|
|
21918
|
+
"description": "Encode string with Junos",
|
|
21919
|
+
"input": [
|
|
21920
|
+
{
|
|
21921
|
+
"name": "body",
|
|
21922
|
+
"type": "object",
|
|
21923
|
+
"info": "String to Encode with Junos: object",
|
|
21924
|
+
"required": true,
|
|
21925
|
+
"schema": {
|
|
21926
|
+
"allOf": [
|
|
21927
|
+
{
|
|
21928
|
+
"type": "object"
|
|
21929
|
+
},
|
|
21930
|
+
{
|
|
21931
|
+
"description": "String to Encode with Junos"
|
|
21932
|
+
}
|
|
21933
|
+
],
|
|
21934
|
+
"definitions": {}
|
|
21935
|
+
}
|
|
21936
|
+
}
|
|
21937
|
+
],
|
|
21938
|
+
"output": {
|
|
21939
|
+
"name": "result",
|
|
21940
|
+
"type": "object",
|
|
21941
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21942
|
+
"schema": {
|
|
21943
|
+
"title": "result",
|
|
21944
|
+
"type": "object"
|
|
21945
|
+
}
|
|
21946
|
+
},
|
|
21947
|
+
"roles": [
|
|
21948
|
+
"admin"
|
|
21949
|
+
],
|
|
21950
|
+
"route": {
|
|
21951
|
+
"verb": "POST",
|
|
21952
|
+
"path": "/postJunosEncode"
|
|
21953
|
+
},
|
|
21954
|
+
"task": true
|
|
21955
|
+
},
|
|
21956
|
+
{
|
|
21957
|
+
"name": "postJunosDecode",
|
|
21958
|
+
"summary": "junosdecode",
|
|
21959
|
+
"description": "Decode string with Junos",
|
|
21960
|
+
"input": [
|
|
21961
|
+
{
|
|
21962
|
+
"name": "body",
|
|
21963
|
+
"type": "object",
|
|
21964
|
+
"info": "String to Encode with Junos: object",
|
|
21965
|
+
"required": true,
|
|
21966
|
+
"schema": {
|
|
21967
|
+
"allOf": [
|
|
21968
|
+
{
|
|
21969
|
+
"type": "object"
|
|
21970
|
+
},
|
|
21971
|
+
{
|
|
21972
|
+
"description": "String to Encode with Junos"
|
|
21973
|
+
}
|
|
21974
|
+
],
|
|
21975
|
+
"definitions": {}
|
|
21976
|
+
}
|
|
21977
|
+
}
|
|
21978
|
+
],
|
|
21979
|
+
"output": {
|
|
21980
|
+
"name": "result",
|
|
21981
|
+
"type": "object",
|
|
21982
|
+
"description": "A JSON Object containing status, code and the result",
|
|
21983
|
+
"schema": {
|
|
21984
|
+
"title": "result",
|
|
21985
|
+
"type": "object"
|
|
21986
|
+
}
|
|
21987
|
+
},
|
|
21988
|
+
"roles": [
|
|
21989
|
+
"admin"
|
|
21990
|
+
],
|
|
21991
|
+
"route": {
|
|
21992
|
+
"verb": "POST",
|
|
21993
|
+
"path": "/postJunosDecode"
|
|
21994
|
+
},
|
|
21995
|
+
"task": true
|
|
21191
21996
|
}
|
|
21192
21997
|
],
|
|
21193
21998
|
"views": []
|