@itentialopensource/adapter-iap 0.6.6 → 0.7.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 (44) hide show
  1. package/.eslintrc.js +1 -0
  2. package/AUTH.md +4 -4
  3. package/BROKER.md +4 -4
  4. package/CALLS.md +18 -18
  5. package/ENHANCE.md +3 -3
  6. package/PROPERTIES.md +24 -9
  7. package/README.md +24 -23
  8. package/SUMMARY.md +2 -2
  9. package/SYSTEMINFO.md +3 -3
  10. package/TAB1.md +4 -4
  11. package/TAB2.md +9 -5
  12. package/TROUBLESHOOT.md +10 -1
  13. package/UTILITIES.md +473 -0
  14. package/adapter.js +5 -5
  15. package/adapterBase.js +52 -16
  16. package/package.json +24 -28
  17. package/pronghorn.json +119 -117
  18. package/propertiesSchema.json +68 -7
  19. package/report/auto-adapter-openapi.json +26041 -0
  20. package/report/updateReport1748555885980.json +120 -0
  21. package/sampleProperties.json +4 -0
  22. package/test/integration/adapterTestBasicGet.js +88 -54
  23. package/test/integration/adapterTestConnectivity.js +15 -16
  24. package/test/integration/adapterTestIntegration.js +1 -38
  25. package/test/unit/adapterBaseTestUnit.js +641 -39
  26. package/test/unit/adapterTestUnit.js +17 -54
  27. package/utils/adapterInfo.js +114 -164
  28. package/utils/argParser.js +44 -0
  29. package/utils/checkMigrate.js +77 -38
  30. package/utils/entitiesToDB.js +53 -42
  31. package/utils/logger.js +26 -0
  32. package/utils/modify.js +56 -55
  33. package/utils/mongoDbConnection.js +79 -0
  34. package/utils/mongoUtils.js +162 -0
  35. package/utils/taskMover.js +31 -32
  36. package/utils/tbScript.js +36 -172
  37. package/utils/tbUtils.js +84 -226
  38. package/utils/troubleshootingAdapter.js +68 -84
  39. package/utils/updateAdapterConfig.js +158 -0
  40. package/utils/addAuth.js +0 -94
  41. package/utils/artifactize.js +0 -146
  42. package/utils/basicGet.js +0 -50
  43. package/utils/packModificationScript.js +0 -35
  44. package/utils/patches2bundledDeps.js +0 -90
package/pronghorn.json CHANGED
@@ -64,13 +64,13 @@
64
64
  }
65
65
  },
66
66
  {
67
- "name" : "replace",
67
+ "name": "replace",
68
68
  "type": "boolean",
69
69
  "info": "True to replace entire mock data, false to merge/append",
70
70
  "required": false,
71
71
  "schema": {
72
72
  "title": "replace",
73
- "type" : "boolean"
73
+ "type": "boolean"
74
74
  }
75
75
  }
76
76
  ],
@@ -226,16 +226,6 @@
226
226
  "title": "props",
227
227
  "type": "object"
228
228
  }
229
- },
230
- {
231
- "name": "persistFlag",
232
- "type": "boolean",
233
- "info": "Whether the input properties should be saved",
234
- "required": true,
235
- "schema": {
236
- "title": "persistFlag",
237
- "type": "boolean"
238
- }
239
229
  }
240
230
  ],
241
231
  "output": {
@@ -306,7 +296,19 @@
306
296
  "name": "iapRunAdapterBasicGet",
307
297
  "summary": "Runs basicGet script for adapter",
308
298
  "description": "Runs basicGet script for adapter",
309
- "input": [],
299
+ "input": [
300
+ {
301
+ "name": "maxCalls",
302
+ "required": false,
303
+ "type": "number",
304
+ "info": "How many GET endpoints to test (defaults to 5)",
305
+ "schema": {
306
+ "title": "maxCalls",
307
+ "type": "number",
308
+ "default": 5
309
+ }
310
+ }
311
+ ],
310
312
  "output": {
311
313
  "name": "result",
312
314
  "type": "object",
@@ -327,8 +329,8 @@
327
329
  },
328
330
  {
329
331
  "name": "iapMoveAdapterEntitiesToDB",
330
- "summary": "Moves entities from an adapter into the IAP database",
331
- "description": "Moves entities from an adapter into the IAP database",
332
+ "summary": "Moves entities from an adapter into the Itential Platform database",
333
+ "description": "Moves entities from an adapter into the Itential Platform database",
332
334
  "input": [],
333
335
  "output": {
334
336
  "name": "res",
@@ -6008,7 +6010,7 @@
6008
6010
  },
6009
6011
  {
6010
6012
  "name": "cmAdapterProxy",
6011
- "summary": "performs all southbound specific logic not caputered by IAP",
6013
+ "summary": "performs all southbound specific logic not caputered by Itential Platform",
6012
6014
  "description": "This API call will allow a user to perform south bound specific logic\nvia direct adapter call(s)",
6013
6015
  "input": [
6014
6016
  {
@@ -7351,7 +7353,7 @@
7351
7353
  {
7352
7354
  "name": "updateArtifact",
7353
7355
  "summary": "Updates an artifact",
7354
- "description": "Updates an artifact in an IAP environment.",
7356
+ "description": "Updates an artifact in an Itential Platform environment.",
7355
7357
  "deprecated": true,
7356
7358
  "input": [
7357
7359
  {
@@ -7386,7 +7388,7 @@
7386
7388
  {
7387
7389
  "name": "removeArtifact",
7388
7390
  "summary": "Remove an artifact",
7389
- "description": "Removes an artifact from an IAP environment.",
7391
+ "description": "Removes an artifact from an Itential Platform environment.",
7390
7392
  "deprecated": true,
7391
7393
  "input": [
7392
7394
  {
@@ -7421,7 +7423,7 @@
7421
7423
  {
7422
7424
  "name": "importArtifact",
7423
7425
  "summary": "Import an artifact",
7424
- "description": "Imports an artifact onto an IAP environment.",
7426
+ "description": "Imports an artifact onto an Itential Platform environment.",
7425
7427
  "deprecated": true,
7426
7428
  "input": [
7427
7429
  {
@@ -7784,7 +7786,7 @@
7784
7786
  {
7785
7787
  "name": "getAllAvailableRestCallsIAP",
7786
7788
  "summary": "getAllAvailableRestCallsIAP.",
7787
- "description": "Get all available rest calls in IAP.",
7789
+ "description": "Get all available rest calls in Itential Platform.",
7788
7790
  "input": [],
7789
7791
  "output": {
7790
7792
  "name": "result",
@@ -14456,7 +14458,7 @@
14456
14458
  {
14457
14459
  "name": "createOperationsManagerAutomation",
14458
14460
  "summary": "createAutomation",
14459
- "description": "Create a new Automation document in IAP.",
14461
+ "description": "Create a new Automation document in Itential Platform.",
14460
14462
  "input": [
14461
14463
  {
14462
14464
  "name": "body",
@@ -15641,7 +15643,7 @@
15641
15643
  {
15642
15644
  "name": "deleteOperationsManagerAutomation",
15643
15645
  "summary": "deleteOperationsManagerAutomation",
15644
- "description": "Delete an Automation document from IAP.",
15646
+ "description": "Delete an Automation document from Itential Platform.",
15645
15647
  "input": [
15646
15648
  {
15647
15649
  "name": "id",
@@ -15754,7 +15756,7 @@
15754
15756
  {
15755
15757
  "name": "exportOperationsManagerAutomation",
15756
15758
  "summary": "exportAutomation",
15757
- "description": "Exports a single Automation document from IAP that is formatted for importing into another IAP instance.",
15759
+ "description": "Exports a single Automation document from Itential Platform that is formatted for importing into another Itential Platform instance.",
15758
15760
  "input": [
15759
15761
  {
15760
15762
  "name": "id",
@@ -15935,7 +15937,7 @@
15935
15937
  {
15936
15938
  "name": "exportTrigger",
15937
15939
  "summary": "exportTrigger",
15938
- "description": "Exports a single Trigger document from IAP that is formatted for importing into another IAP instance.",
15940
+ "description": "Exports a single Trigger document from Itential Platform that is formatted for importing into another Itential Platform instance.",
15939
15941
  "input": [
15940
15942
  {
15941
15943
  "name": "id",
@@ -16606,7 +16608,7 @@
16606
16608
  {
16607
16609
  "name": "searchIAP",
16608
16610
  "summary": "searchIAP",
16609
- "description": "Search through IAP for results from various collections that match your search term, as well as for results that have tags that match your search term.",
16611
+ "description": "Search through Itential Platform for results from various collections that match your search term, as well as for results that have tags that match your search term.",
16610
16612
  "input": [
16611
16613
  {
16612
16614
  "name": "body",
@@ -17460,7 +17462,7 @@
17460
17462
  },
17461
17463
  "options": {
17462
17464
  "type": "object",
17463
- "description": "Allows for passing options to an IAP adapter. Reference the JSON schema posted at https://docs.itential.io/."
17465
+ "description": "Allows for passing options to an Itential Platform adapter. Reference the JSON schema posted at https://docs.itential.io/."
17464
17466
  }
17465
17467
  },
17466
17468
  "definitions": {}
@@ -17561,7 +17563,7 @@
17561
17563
  },
17562
17564
  "options": {
17563
17565
  "type": "object",
17564
- "description": "Allows for passing options to an IAP adapter. Reference the JSON schema posted at https://docs.itential.io/."
17566
+ "description": "Allows for passing options to an Itential Platform adapter. Reference the JSON schema posted at https://docs.itential.io/."
17565
17567
  }
17566
17568
  },
17567
17569
  "definitions": {}
@@ -20343,7 +20345,7 @@
20343
20345
  {
20344
20346
  "name": "getAdapterModelTypes",
20345
20347
  "summary": "Get the list of available adapter model types.",
20346
- "description": "Get the list of available adapter model types in the current IAP.",
20348
+ "description": "Get the list of available adapter model types in the current Itential Platform.",
20347
20349
  "input": [
20348
20350
  {
20349
20351
  "name": "contains",
@@ -20407,7 +20409,7 @@
20407
20409
  {
20408
20410
  "name": "createAdapter",
20409
20411
  "summary": "Create a new adapter.",
20410
- "description": "Create a new adapter in IAP.",
20412
+ "description": "Create a new adapter in Itential Platform.",
20411
20413
  "input": [
20412
20414
  {
20413
20415
  "name": "body",
@@ -20448,7 +20450,7 @@
20448
20450
  {
20449
20451
  "name": "getAdapters",
20450
20452
  "summary": "Get all adapters.",
20451
- "description": "Get all adapters in IAP.",
20453
+ "description": "Get all adapters in Itential Platform.",
20452
20454
  "input": [
20453
20455
  {
20454
20456
  "name": "contains",
@@ -20572,7 +20574,7 @@
20572
20574
  {
20573
20575
  "name": "importAdapter",
20574
20576
  "summary": "Import a new adapter.",
20575
- "description": "Import a new adapter in IAP.",
20577
+ "description": "Import a new adapter in Itential Platform.",
20576
20578
  "input": [
20577
20579
  {
20578
20580
  "name": "body",
@@ -20613,7 +20615,7 @@
20613
20615
  {
20614
20616
  "name": "deleteAdapter",
20615
20617
  "summary": "Delete an adapter.",
20616
- "description": "Delete an adapter from IAP.",
20618
+ "description": "Delete an adapter from Itential Platform.",
20617
20619
  "input": [
20618
20620
  {
20619
20621
  "name": "name",
@@ -20647,7 +20649,7 @@
20647
20649
  {
20648
20650
  "name": "getAdapter",
20649
20651
  "summary": "Get a single adapter.",
20650
- "description": "Get a single adapter in IAP.",
20652
+ "description": "Get a single adapter in Itential Platform.",
20651
20653
  "input": [
20652
20654
  {
20653
20655
  "name": "name",
@@ -20681,7 +20683,7 @@
20681
20683
  {
20682
20684
  "name": "updateAdapter",
20683
20685
  "summary": "Update an adapter.",
20684
- "description": "Update an adapter in IAP.",
20686
+ "description": "Update an adapter in Itential Platform.",
20685
20687
  "input": [
20686
20688
  {
20687
20689
  "name": "name",
@@ -20732,7 +20734,7 @@
20732
20734
  {
20733
20735
  "name": "exportAdapter",
20734
20736
  "summary": "Export a single adapter.",
20735
- "description": "Export a single adapter in IAP.",
20737
+ "description": "Export a single adapter in Itential Platform.",
20736
20738
  "input": [
20737
20739
  {
20738
20740
  "name": "name",
@@ -20810,7 +20812,7 @@
20810
20812
  {
20811
20813
  "name": "startAdapter",
20812
20814
  "summary": "Start an adapter.",
20813
- "description": "Start an adapter in IAP.",
20815
+ "description": "Start an adapter in Itential Platform.",
20814
20816
  "input": [
20815
20817
  {
20816
20818
  "name": "name",
@@ -20844,7 +20846,7 @@
20844
20846
  {
20845
20847
  "name": "stopAdapter",
20846
20848
  "summary": "Stop an adapter.",
20847
- "description": "Stop an adapter in IAP.",
20849
+ "description": "Stop an adapter in Itential Platform.",
20848
20850
  "input": [
20849
20851
  {
20850
20852
  "name": "name",
@@ -20878,7 +20880,7 @@
20878
20880
  {
20879
20881
  "name": "restartAdapter",
20880
20882
  "summary": "Restart an adapter.",
20881
- "description": "Restart an adapter in IAP.",
20883
+ "description": "Restart an adapter in Itential Platform.",
20882
20884
  "input": [
20883
20885
  {
20884
20886
  "name": "name",
@@ -20963,7 +20965,7 @@
20963
20965
  {
20964
20966
  "name": "updateAdapterProperties",
20965
20967
  "summary": "Update the properties of an adapter.",
20966
- "description": "Update the properties of an adapter in IAP.",
20968
+ "description": "Update the properties of an adapter in Itential Platform.",
20967
20969
  "input": [
20968
20970
  {
20969
20971
  "name": "name",
@@ -21037,7 +21039,7 @@
21037
21039
  {
21038
21040
  "name": "getApplication",
21039
21041
  "summary": "Get a single application.",
21040
- "description": "Get a single application in IAP.",
21042
+ "description": "Get a single application in Itential Platform.",
21041
21043
  "input": [
21042
21044
  {
21043
21045
  "name": "name",
@@ -21071,7 +21073,7 @@
21071
21073
  {
21072
21074
  "name": "updateApplication",
21073
21075
  "summary": "Update an application.",
21074
- "description": "Update an application in IAP.",
21076
+ "description": "Update an application in Itential Platform.",
21075
21077
  "input": [
21076
21078
  {
21077
21079
  "name": "name",
@@ -21166,7 +21168,7 @@
21166
21168
  {
21167
21169
  "name": "getAllApplications",
21168
21170
  "summary": "Get all applications.",
21169
- "description": "Get all applications in IAP.",
21171
+ "description": "Get all applications in Itential Platform.",
21170
21172
  "input": [
21171
21173
  {
21172
21174
  "name": "contains",
@@ -21290,7 +21292,7 @@
21290
21292
  {
21291
21293
  "name": "startApplication",
21292
21294
  "summary": "Start an application.",
21293
- "description": "Start an application in IAP.",
21295
+ "description": "Start an application in Itential Platform.",
21294
21296
  "input": [
21295
21297
  {
21296
21298
  "name": "name",
@@ -21324,7 +21326,7 @@
21324
21326
  {
21325
21327
  "name": "stopApplication",
21326
21328
  "summary": "Stop an application.",
21327
- "description": "Stop an application in IAP.",
21329
+ "description": "Stop an application in Itential Platform.",
21328
21330
  "input": [
21329
21331
  {
21330
21332
  "name": "name",
@@ -21358,7 +21360,7 @@
21358
21360
  {
21359
21361
  "name": "restartApplication",
21360
21362
  "summary": "Restart an application.",
21361
- "description": "Restart an application in IAP.",
21363
+ "description": "Restart an application in Itential Platform.",
21362
21364
  "input": [
21363
21365
  {
21364
21366
  "name": "name",
@@ -21443,7 +21445,7 @@
21443
21445
  {
21444
21446
  "name": "updateApplicationProperties",
21445
21447
  "summary": "Update the properties of an application.",
21446
- "description": "Update the properties of an application in IAP.",
21448
+ "description": "Update the properties of an application in Itential Platform.",
21447
21449
  "input": [
21448
21450
  {
21449
21451
  "name": "name",
@@ -21596,8 +21598,8 @@
21596
21598
  },
21597
21599
  {
21598
21600
  "name": "login",
21599
- "summary": "Log in an create a session in IAP",
21600
- "description": "Log in to IAP",
21601
+ "summary": "Log in an create a session in Itential Platform",
21602
+ "description": "Log in to Itential Platform",
21601
21603
  "input": [
21602
21604
  {
21603
21605
  "name": "body",
@@ -21637,8 +21639,8 @@
21637
21639
  },
21638
21640
  {
21639
21641
  "name": "logout",
21640
- "summary": "Log out of IAP and delete current session",
21641
- "description": "Log out of IAP",
21642
+ "summary": "Log out of Itential Platform and delete current session",
21643
+ "description": "Log out of Itential Platform",
21642
21644
  "input": [],
21643
21645
  "output": {
21644
21646
  "name": "result",
@@ -21660,8 +21662,8 @@
21660
21662
  },
21661
21663
  {
21662
21664
  "name": "downloadPublicFile",
21663
- "summary": "Download a public file from IAP",
21664
- "description": "Download a public file from IAP",
21665
+ "summary": "Download a public file from Itential Platform",
21666
+ "description": "Download a public file from Itential Platform",
21665
21667
  "input": [
21666
21668
  {
21667
21669
  "name": "fileName",
@@ -21695,7 +21697,7 @@
21695
21697
  {
21696
21698
  "name": "getSystemId",
21697
21699
  "summary": "Get system server id.",
21698
- "description": "Get system server id for the current IAP.",
21700
+ "description": "Get system server id for the current Itential Platform.",
21699
21701
  "input": [],
21700
21702
  "output": {
21701
21703
  "name": "result",
@@ -21718,7 +21720,7 @@
21718
21720
  {
21719
21721
  "name": "getHealthStatus",
21720
21722
  "summary": "Get status.",
21721
- "description": "Get status of current IAP.",
21723
+ "description": "Get status of current Itential Platform.",
21722
21724
  "input": [],
21723
21725
  "output": {
21724
21726
  "name": "result",
@@ -21741,7 +21743,7 @@
21741
21743
  {
21742
21744
  "name": "getReleaseVersion",
21743
21745
  "summary": "Get verion.",
21744
- "description": "Get release verion of current IAP.",
21746
+ "description": "Get release verion of current Itential Platform.",
21745
21747
  "input": [],
21746
21748
  "output": {
21747
21749
  "name": "result",
@@ -21763,8 +21765,8 @@
21763
21765
  },
21764
21766
  {
21765
21767
  "name": "getApplicationConfigs",
21766
- "summary": "Get all application configs in IAP.",
21767
- "description": "Get all application configs in IAP.",
21768
+ "summary": "Get all application configs in Itential Platform.",
21769
+ "description": "Get all application configs in Itential Platform.",
21768
21770
  "input": [],
21769
21771
  "output": {
21770
21772
  "name": "result",
@@ -22002,10 +22004,10 @@
22002
22004
  "description": "Value denoting if an account does not reflect a human user"
22003
22005
  }
22004
22006
  },
22005
- "description": "This is the schema for an IAP account stored in Mongo"
22007
+ "description": "This is the schema for an Itential Platform account stored in Mongo"
22006
22008
  },
22007
22009
  {
22008
- "description": "This is the schema for an IAP account stored in Mongo"
22010
+ "description": "This is the schema for an Itential Platform account stored in Mongo"
22009
22011
  }
22010
22012
  ]
22011
22013
  }
@@ -22146,10 +22148,10 @@
22146
22148
  "description": "Value denoting if an account does not reflect a human user"
22147
22149
  }
22148
22150
  },
22149
- "description": "This is the schema for an IAP account stored in Mongo"
22151
+ "description": "This is the schema for an Itential Platform account stored in Mongo"
22150
22152
  },
22151
22153
  {
22152
- "description": "This is the schema for an IAP account stored in Mongo"
22154
+ "description": "This is the schema for an Itential Platform account stored in Mongo"
22153
22155
  }
22154
22156
  ]
22155
22157
  }
@@ -22407,10 +22409,10 @@
22407
22409
  "description": "Value denoting if an account does not reflect a human user"
22408
22410
  }
22409
22411
  },
22410
- "description": "This is the schema for an IAP account stored in Mongo"
22412
+ "description": "This is the schema for an Itential Platform account stored in Mongo"
22411
22413
  },
22412
22414
  {
22413
- "description": "This is the schema for an IAP account stored in Mongo"
22415
+ "description": "This is the schema for an Itential Platform account stored in Mongo"
22414
22416
  }
22415
22417
  ]
22416
22418
  }
@@ -22857,10 +22859,10 @@
22857
22859
  ]
22858
22860
  }
22859
22861
  },
22860
- "description": "This is the schema for an IAP group stored in Mongo"
22862
+ "description": "This is the schema for an Itential Platform group stored in Mongo"
22861
22863
  },
22862
22864
  {
22863
- "description": "This is the schema for an IAP group stored in Mongo"
22865
+ "description": "This is the schema for an Itential Platform group stored in Mongo"
22864
22866
  }
22865
22867
  ]
22866
22868
  }
@@ -23200,10 +23202,10 @@
23200
23202
  }
23201
23203
  }
23202
23204
  },
23203
- "description": "This is the schema for an IAP role stored in Mongo"
23205
+ "description": "This is the schema for an Itential Platform role stored in Mongo"
23204
23206
  },
23205
23207
  {
23206
- "description": "This is the schema for an IAP role stored in Mongo"
23208
+ "description": "This is the schema for an Itential Platform role stored in Mongo"
23207
23209
  }
23208
23210
  ]
23209
23211
  }
@@ -23305,7 +23307,7 @@
23305
23307
  {
23306
23308
  "name": "getMethods",
23307
23309
  "summary": "Get a list of methods.",
23308
- "description": "Get a list of methods in IAP.",
23310
+ "description": "Get a list of methods in Itential Platform.",
23309
23311
  "input": [
23310
23312
  {
23311
23313
  "name": "multiContains",
@@ -23399,7 +23401,7 @@
23399
23401
  {
23400
23402
  "name": "getViews",
23401
23403
  "summary": "Get a list of views.",
23402
- "description": "Get a list of views in IAP.",
23404
+ "description": "Get a list of views in Itential Platform.",
23403
23405
  "input": [
23404
23406
  {
23405
23407
  "name": "multiContains",
@@ -23582,7 +23584,7 @@
23582
23584
  {
23583
23585
  "name": "multiContains",
23584
23586
  "type": "object",
23585
- "info": "This is the schema for queries on IAP external links: ",
23587
+ "info": "This is the schema for queries on Itential Platform external links: ",
23586
23588
  "required": false,
23587
23589
  "schema": {
23588
23590
  "title": "multiContains",
@@ -23592,7 +23594,7 @@
23592
23594
  {
23593
23595
  "name": "multiEquals",
23594
23596
  "type": "object",
23595
- "info": "This is the schema for queries on IAP external links: ",
23597
+ "info": "This is the schema for queries on Itential Platform external links: ",
23596
23598
  "required": false,
23597
23599
  "schema": {
23598
23600
  "title": "multiEquals",
@@ -23602,7 +23604,7 @@
23602
23604
  {
23603
23605
  "name": "multiStartsWith",
23604
23606
  "type": "object",
23605
- "info": "This is the schema for queries on IAP external links: ",
23607
+ "info": "This is the schema for queries on Itential Platform external links: ",
23606
23608
  "required": false,
23607
23609
  "schema": {
23608
23610
  "title": "multiStartsWith",
@@ -23769,10 +23771,10 @@
23769
23771
  }
23770
23772
  }
23771
23773
  },
23772
- "description": "This is the schema for an IAP external link stored in Mongo"
23774
+ "description": "This is the schema for an Itential Platform external link stored in Mongo"
23773
23775
  },
23774
23776
  {
23775
- "description": "This is the schema for an IAP external link stored in Mongo"
23777
+ "description": "This is the schema for an Itential Platform external link stored in Mongo"
23776
23778
  }
23777
23779
  ]
23778
23780
  }
@@ -23874,7 +23876,7 @@
23874
23876
  {
23875
23877
  "name": "getAdapterHealth",
23876
23878
  "summary": "Get the health of a single adapter.",
23877
- "description": "Get the health of a single adapter in IAP.",
23879
+ "description": "Get the health of a single adapter in Itential Platform.",
23878
23880
  "input": [
23879
23881
  {
23880
23882
  "name": "name",
@@ -24071,7 +24073,7 @@
24071
24073
  {
24072
24074
  "name": "getApplicationHealth",
24073
24075
  "summary": "Get the health of a single application.",
24074
- "description": "Get the health of a single application in IAP.",
24076
+ "description": "Get the health of a single application in Itential Platform.",
24075
24077
  "input": [
24076
24078
  {
24077
24079
  "name": "name",
@@ -24268,7 +24270,7 @@
24268
24270
  {
24269
24271
  "name": "getAdaptersHealth",
24270
24272
  "summary": "Get the health of all the adapters.",
24271
- "description": "Get the health of all the adapters in IAP.",
24273
+ "description": "Get the health of all the adapters in Itential Platform.",
24272
24274
  "input": [
24273
24275
  {
24274
24276
  "name": "contains",
@@ -24392,7 +24394,7 @@
24392
24394
  {
24393
24395
  "name": "getApplicationsHealth",
24394
24396
  "summary": "Get the health of all the applications.",
24395
- "description": "Get the health of all the applications in IAP.",
24397
+ "description": "Get the health of all the applications in Itential Platform.",
24396
24398
  "input": [
24397
24399
  {
24398
24400
  "name": "contains",
@@ -24630,8 +24632,8 @@
24630
24632
  },
24631
24633
  {
24632
24634
  "name": "getOpenApi",
24633
- "summary": "Generate an OpenAPI v3 document for IAP",
24634
- "description": "Generate an OpenAPI v3.1.0 document for IAP",
24635
+ "summary": "Generate an OpenAPI v3 document for Itential Platform",
24636
+ "description": "Generate an OpenAPI v3.1.0 document for Itential Platform",
24635
24637
  "input": [
24636
24638
  {
24637
24639
  "name": "url",
@@ -24801,7 +24803,7 @@
24801
24803
  {
24802
24804
  "name": "createIntegrationModel",
24803
24805
  "summary": "Create a new integration model.",
24804
- "description": "Create a new integration model in IAP.",
24806
+ "description": "Create a new integration model in Itential Platform.",
24805
24807
  "input": [
24806
24808
  {
24807
24809
  "name": "body",
@@ -24842,7 +24844,7 @@
24842
24844
  {
24843
24845
  "name": "getIntegrationModels",
24844
24846
  "summary": "Get all integration models.",
24845
- "description": "Get all the integration models in IAP.",
24847
+ "description": "Get all the integration models in Itential Platform.",
24846
24848
  "input": [
24847
24849
  {
24848
24850
  "name": "contains",
@@ -24966,7 +24968,7 @@
24966
24968
  {
24967
24969
  "name": "updateIntegrationModel",
24968
24970
  "summary": "Update an integration model.",
24969
- "description": "Update an integration model in IAP.",
24971
+ "description": "Update an integration model in Itential Platform.",
24970
24972
  "input": [
24971
24973
  {
24972
24974
  "name": "body",
@@ -25007,7 +25009,7 @@
25007
25009
  {
25008
25010
  "name": "deleteIntegrationModel",
25009
25011
  "summary": "Delete an integration model.",
25010
- "description": "Delete an integration model from IAP.",
25012
+ "description": "Delete an integration model from Itential Platform.",
25011
25013
  "input": [
25012
25014
  {
25013
25015
  "name": "name",
@@ -25041,7 +25043,7 @@
25041
25043
  {
25042
25044
  "name": "getIntegrationModel",
25043
25045
  "summary": "Get a specific integration model.",
25044
- "description": "Get a specific integration model in IAP.",
25046
+ "description": "Get a specific integration model in Itential Platform.",
25045
25047
  "input": [
25046
25048
  {
25047
25049
  "name": "name",
@@ -25150,7 +25152,7 @@
25150
25152
  {
25151
25153
  "name": "createIntegration",
25152
25154
  "summary": "Create a new integration.",
25153
- "description": "Create a new integration in IAP.",
25155
+ "description": "Create a new integration in Itential Platform.",
25154
25156
  "input": [
25155
25157
  {
25156
25158
  "name": "body",
@@ -25191,7 +25193,7 @@
25191
25193
  {
25192
25194
  "name": "getIntegrations",
25193
25195
  "summary": "Get all integrations.",
25194
- "description": "Get all integrations in IAP.",
25196
+ "description": "Get all integrations in Itential Platform.",
25195
25197
  "input": [
25196
25198
  {
25197
25199
  "name": "contains",
@@ -25315,7 +25317,7 @@
25315
25317
  {
25316
25318
  "name": "deleteIntegration",
25317
25319
  "summary": "Delete an integration.",
25318
- "description": "Delete an integration from IAP.",
25320
+ "description": "Delete an integration from Itential Platform.",
25319
25321
  "input": [
25320
25322
  {
25321
25323
  "name": "name",
@@ -25349,7 +25351,7 @@
25349
25351
  {
25350
25352
  "name": "getIntegration",
25351
25353
  "summary": "Get a single integration.",
25352
- "description": "Get a single integration in IAP.",
25354
+ "description": "Get a single integration in Itential Platform.",
25353
25355
  "input": [
25354
25356
  {
25355
25357
  "name": "name",
@@ -25383,7 +25385,7 @@
25383
25385
  {
25384
25386
  "name": "updateIntegration",
25385
25387
  "summary": "Update an integration.",
25386
- "description": "Update an integration in IAP.",
25388
+ "description": "Update an integration in Itential Platform.",
25387
25389
  "input": [
25388
25390
  {
25389
25391
  "name": "name",
@@ -25434,7 +25436,7 @@
25434
25436
  {
25435
25437
  "name": "updateIntegrationProperties",
25436
25438
  "summary": "Update the properties of an integration.",
25437
- "description": "Update the properties of an integration in IAP.",
25439
+ "description": "Update the properties of an integration in Itential Platform.",
25438
25440
  "input": [
25439
25441
  {
25440
25442
  "name": "name",
@@ -25893,7 +25895,7 @@
25893
25895
  "properties": {
25894
25896
  "access_token": {
25895
25897
  "type": "string",
25896
- "description": "The JWT providing the user access to IAP"
25898
+ "description": "The JWT providing the user access to Itential Platform"
25897
25899
  },
25898
25900
  "token_type": {
25899
25901
  "allOf": [
@@ -25926,10 +25928,10 @@
25926
25928
  ]
25927
25929
  }
25928
25930
  },
25929
- "description": "A result containing the JWT providing the user access to IAP for a set amount of time"
25931
+ "description": "A result containing the JWT providing the user access to Itential Platform for a set amount of time"
25930
25932
  },
25931
25933
  {
25932
- "description": "A result containing the JWT providing the user access to IAP for a set amount of time"
25934
+ "description": "A result containing the JWT providing the user access to Itential Platform for a set amount of time"
25933
25935
  }
25934
25936
  ]
25935
25937
  }
@@ -25946,7 +25948,7 @@
25946
25948
  {
25947
25949
  "name": "exportPrebuilt",
25948
25950
  "summary": "Export a prebuilt",
25949
- "description": "Export a prebuilt from IAP.",
25951
+ "description": "Export a prebuilt from Itential Platform.",
25950
25952
  "input": [
25951
25953
  {
25952
25954
  "name": "id",
@@ -25980,7 +25982,7 @@
25980
25982
  {
25981
25983
  "name": "getPrebuilt",
25982
25984
  "summary": "Get a single prebuilt.",
25983
- "description": "Get a single prebuilt in IAP.",
25985
+ "description": "Get a single prebuilt in Itential Platform.",
25984
25986
  "input": [
25985
25987
  {
25986
25988
  "name": "id",
@@ -26014,7 +26016,7 @@
26014
26016
  {
26015
26017
  "name": "removePrebuilt",
26016
26018
  "summary": "Remove a prebuilt.",
26017
- "description": "Remove a prebuilt from IAP.",
26019
+ "description": "Remove a prebuilt from Itential Platform.",
26018
26020
  "input": [
26019
26021
  {
26020
26022
  "name": "id",
@@ -26048,7 +26050,7 @@
26048
26050
  {
26049
26051
  "name": "updatePrebuilt",
26050
26052
  "summary": "Update a prebuilt",
26051
- "description": "Update a prebuilt in IAP.",
26053
+ "description": "Update a prebuilt in Itential Platform.",
26052
26054
  "input": [
26053
26055
  {
26054
26056
  "name": "id",
@@ -26099,7 +26101,7 @@
26099
26101
  {
26100
26102
  "name": "getPrebuilts",
26101
26103
  "summary": "Get all the prebuilts.",
26102
- "description": "Get all the prebuilts in IAP.",
26104
+ "description": "Get all the prebuilts in Itential Platform.",
26103
26105
  "input": [
26104
26106
  {
26105
26107
  "name": "contains",
@@ -26233,7 +26235,7 @@
26233
26235
  {
26234
26236
  "name": "importPrebuilt",
26235
26237
  "summary": "Import a prebuilt.",
26236
- "description": "Import a prebuilt into IAP.",
26238
+ "description": "Import a prebuilt into Itential Platform.",
26237
26239
  "input": [
26238
26240
  {
26239
26241
  "name": "body",
@@ -26274,7 +26276,7 @@
26274
26276
  {
26275
26277
  "name": "validatePrebuilt",
26276
26278
  "summary": "Validate the data structure of a prebuilt.",
26277
- "description": "Validate the data structure of a prebuilt in IAP.",
26279
+ "description": "Validate the data structure of a prebuilt in Itential Platform.",
26278
26280
  "input": [
26279
26281
  {
26280
26282
  "name": "body",
@@ -26570,7 +26572,7 @@
26570
26572
  {
26571
26573
  "name": "iapVersion",
26572
26574
  "type": "number",
26573
- "info": "The version of IAP. Can be used to overwrite the release version of artifacts in the response.: 123",
26575
+ "info": "The version of Itential Platform. Can be used to overwrite the release version of artifacts in the response.: 123",
26574
26576
  "required": false,
26575
26577
  "schema": {
26576
26578
  "title": "iapVersion",
@@ -26600,7 +26602,7 @@
26600
26602
  {
26601
26603
  "name": "versionStatus",
26602
26604
  "type": "string",
26603
- "info": "Filter the list of Pre-builts based on the available version of the Pre-built in comparison to the current version of IAP: ",
26605
+ "info": "Filter the list of Pre-builts based on the available version of the Pre-built in comparison to the current version of Itential Platform: ",
26604
26606
  "required": false,
26605
26607
  "schema": {
26606
26608
  "title": "versionStatus",
@@ -26629,7 +26631,7 @@
26629
26631
  {
26630
26632
  "name": "createProfile",
26631
26633
  "summary": "Creates a new profile",
26632
- "description": "Create a new profile in IAP.",
26634
+ "description": "Create a new profile in Itential Platform.",
26633
26635
  "input": [
26634
26636
  {
26635
26637
  "name": "body",
@@ -26670,7 +26672,7 @@
26670
26672
  {
26671
26673
  "name": "getProfiles",
26672
26674
  "summary": "Get all profiles.",
26673
- "description": "Get all the profiles in IAP.",
26675
+ "description": "Get all the profiles in Itential Platform.",
26674
26676
  "input": [
26675
26677
  {
26676
26678
  "name": "contains",
@@ -26794,7 +26796,7 @@
26794
26796
  {
26795
26797
  "name": "importProfile",
26796
26798
  "summary": "Import a new profile",
26797
- "description": "Import a new profile in IAP.",
26799
+ "description": "Import a new profile in Itential Platform.",
26798
26800
  "input": [
26799
26801
  {
26800
26802
  "name": "body",
@@ -26835,7 +26837,7 @@
26835
26837
  {
26836
26838
  "name": "deleteProfile",
26837
26839
  "summary": "Delete a profile.",
26838
- "description": "Delete a profile from IAP.",
26840
+ "description": "Delete a profile from Itential Platform.",
26839
26841
  "input": [
26840
26842
  {
26841
26843
  "name": "id",
@@ -26869,7 +26871,7 @@
26869
26871
  {
26870
26872
  "name": "getProfile",
26871
26873
  "summary": "Get a single profile.",
26872
- "description": "Get a single profile in the current IAP.",
26874
+ "description": "Get a single profile in the current Itential Platform.",
26873
26875
  "input": [
26874
26876
  {
26875
26877
  "name": "id",
@@ -26903,7 +26905,7 @@
26903
26905
  {
26904
26906
  "name": "updateProfile",
26905
26907
  "summary": "Updates a profile.",
26906
- "description": "Update a profile in IAP.",
26908
+ "description": "Update a profile in Itential Platform.",
26907
26909
  "input": [
26908
26910
  {
26909
26911
  "name": "id",
@@ -26954,7 +26956,7 @@
26954
26956
  {
26955
26957
  "name": "exportProfile",
26956
26958
  "summary": "Export a single profile.",
26957
- "description": "Exports a single profile in the current IAP.",
26959
+ "description": "Exports a single profile in the current Itential Platform.",
26958
26960
  "input": [
26959
26961
  {
26960
26962
  "name": "id",
@@ -27065,7 +27067,7 @@
27065
27067
  "logoutTime": {
27066
27068
  "minimum": 2,
27067
27069
  "type": "integer",
27068
- "description": "The maximum number of time IAP has to make an api call before the user is logged out, in minutes.",
27070
+ "description": "The maximum number of time Itential Platform has to make an api call before the user is logged out, in minutes.",
27069
27071
  "default": 60,
27070
27072
  "example": 20
27071
27073
  },
@@ -27628,7 +27630,7 @@
27628
27630
  },
27629
27631
  "description": {
27630
27632
  "type": "string",
27631
- "example": "An IAP Profile"
27633
+ "example": "An Itential Platform Profile"
27632
27634
  },
27633
27635
  "rabbitmq": {
27634
27636
  "title": "RabbitMQ",
@@ -27911,7 +27913,7 @@
27911
27913
  },
27912
27914
  "deadProcessCheck": {
27913
27915
  "type": "boolean",
27914
- "description": "Enable/disable IAP check for dead applications/adapters.",
27916
+ "description": "Enable/disable Itential Platform check for dead applications/adapters.",
27915
27917
  "default": false
27916
27918
  },
27917
27919
  "deadProcessCheckInterval": {
@@ -27941,15 +27943,15 @@
27941
27943
  "maximum": 168,
27942
27944
  "minimum": 1,
27943
27945
  "type": "integer",
27944
- "description": "The interval for how often IAP polls for the number of devices, in hours.",
27946
+ "description": "The interval for how often Itential Platform polls for the number of devices, in hours.",
27945
27947
  "default": 24,
27946
27948
  "example": 24
27947
27949
  }
27948
27950
  },
27949
- "description": "Properties used to configure IAP process."
27951
+ "description": "Properties used to configure Itential Platform process."
27950
27952
  },
27951
27953
  {
27952
- "description": "Properties used to configure IAP process."
27954
+ "description": "Properties used to configure Itential Platform process."
27953
27955
  }
27954
27956
  ]
27955
27957
  },
@@ -28095,7 +28097,7 @@
28095
28097
  {
28096
28098
  "name": "switchActiveProfile",
28097
28099
  "summary": "Switch the active profile.",
28098
- "description": "Switch the active profile in the current IAP.",
28100
+ "description": "Switch the active profile in the current Itential Platform.",
28099
28101
  "input": [
28100
28102
  {
28101
28103
  "name": "id",