@itentialopensource/adapter-paragon_pathfinder 0.1.1

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 (98) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +2982 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +172 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +337 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +11 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +40341 -0
  23. package/adapterBase.js +1787 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +49 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +94 -0
  31. package/entities/.system/schemaTokenResp.json +65 -0
  32. package/entities/Authentication/action.json +45 -0
  33. package/entities/Authentication/schema.json +20 -0
  34. package/entities/Authorization/action.json +105 -0
  35. package/entities/Authorization/schema.json +23 -0
  36. package/entities/CommandService/action.json +44 -0
  37. package/entities/CommandService/schema.json +20 -0
  38. package/entities/ConfigOperationService/action.json +184 -0
  39. package/entities/ConfigOperationService/schema.json +27 -0
  40. package/entities/ConfigResourceService/action.json +964 -0
  41. package/entities/ConfigResourceService/schema.json +66 -0
  42. package/entities/ConfigTemplateService/action.json +345 -0
  43. package/entities/ConfigTemplateService/schema.json +266 -0
  44. package/entities/DeviceLCMService/action.json +44 -0
  45. package/entities/DeviceLCMService/schema.json +20 -0
  46. package/entities/DeviceOnboardingService/action.json +105 -0
  47. package/entities/DeviceOnboardingService/schema.json +23 -0
  48. package/entities/DevicemanagerService/action.json +1770 -0
  49. package/entities/DevicemanagerService/schema.json +402 -0
  50. package/entities/DevicemodelService/action.json +2114 -0
  51. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportComponent-default.json +49 -0
  52. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDevice-default.json +29 -0
  53. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDeviceView-default.json +53 -0
  54. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportInterface-default.json +21 -0
  55. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicense-default.json +45 -0
  56. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicenseFeature-default.json +41 -0
  57. package/entities/DevicemodelService/schema.json +419 -0
  58. package/entities/IamRPCService/action.json +872 -0
  59. package/entities/IamRPCService/schema.json +325 -0
  60. package/entities/IamService/action.json +2740 -0
  61. package/entities/IamService/mockdatafiles/iamServiceExportUserView-default.json +53 -0
  62. package/entities/IamService/schema.json +670 -0
  63. package/entities/InventoryService/action.json +164 -0
  64. package/entities/InventoryService/schema.json +26 -0
  65. package/error.json +190 -0
  66. package/package.json +87 -0
  67. package/pronghorn.json +100351 -0
  68. package/propertiesDecorators.json +14 -0
  69. package/propertiesSchema.json +1246 -0
  70. package/refs?service=git-upload-pack +0 -0
  71. package/report/adapterInfo.json +10 -0
  72. package/report/creationReport.json +2690 -0
  73. package/report/output.swagger.json +69945 -0
  74. package/sampleProperties.json +203 -0
  75. package/test/integration/adapterTestBasicGet.js +83 -0
  76. package/test/integration/adapterTestConnectivity.js +93 -0
  77. package/test/integration/adapterTestIntegration.js +35598 -0
  78. package/test/unit/adapterBaseTestUnit.js +949 -0
  79. package/test/unit/adapterTestUnit.js +14616 -0
  80. package/utils/adapterInfo.js +206 -0
  81. package/utils/addAuth.js +94 -0
  82. package/utils/artifactize.js +146 -0
  83. package/utils/basicGet.js +50 -0
  84. package/utils/checkMigrate.js +63 -0
  85. package/utils/entitiesToDB.js +178 -0
  86. package/utils/findPath.js +74 -0
  87. package/utils/methodDocumentor.js +225 -0
  88. package/utils/modify.js +154 -0
  89. package/utils/packModificationScript.js +35 -0
  90. package/utils/patches2bundledDeps.js +90 -0
  91. package/utils/pre-commit.sh +32 -0
  92. package/utils/removeHooks.js +20 -0
  93. package/utils/setup.js +33 -0
  94. package/utils/tbScript.js +246 -0
  95. package/utils/tbUtils.js +490 -0
  96. package/utils/testRunner.js +298 -0
  97. package/utils/troubleshootingAdapter.js +195 -0
  98. package/workflows/README.md +3 -0
@@ -0,0 +1,1770 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "devicemanagerServiceBulkListConfigTemplate",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-config-template?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": ""
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "devicemanagerServiceUpdateResourceLock",
25
+ "protocol": "REST",
26
+ "method": "PUT",
27
+ "entitypath": "{base_path}/{version}/devicemanager/resource-lock/{pathv1}?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "requestDatatype": "JSON",
33
+ "responseDatatype": "JSON",
34
+ "headers": {},
35
+ "responseObjects": [
36
+ {
37
+ "type": "default",
38
+ "key": "",
39
+ "mockFile": ""
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "name": "devicemanagerServiceDeleteResourceLock",
45
+ "protocol": "REST",
46
+ "method": "DELETE",
47
+ "entitypath": "{base_path}/{version}/devicemanager/resource-lock/{pathv1}?{query}",
48
+ "requestSchema": "schema.json",
49
+ "responseSchema": "schema.json",
50
+ "timeout": 0,
51
+ "sendEmpty": false,
52
+ "requestDatatype": "JSON",
53
+ "responseDatatype": "JSON",
54
+ "headers": {},
55
+ "responseObjects": [
56
+ {
57
+ "type": "default",
58
+ "key": "",
59
+ "mockFile": ""
60
+ }
61
+ ]
62
+ },
63
+ {
64
+ "name": "devicemanagerServiceGetResourceLock",
65
+ "protocol": "REST",
66
+ "method": "GET",
67
+ "entitypath": "{base_path}/{version}/devicemanager/resource-lock/{pathv1}?{query}",
68
+ "requestSchema": "schema.json",
69
+ "responseSchema": "schema.json",
70
+ "timeout": 0,
71
+ "sendEmpty": false,
72
+ "sendGetBody": false,
73
+ "requestDatatype": "JSON",
74
+ "responseDatatype": "JSON",
75
+ "headers": {},
76
+ "responseObjects": [
77
+ {
78
+ "type": "default",
79
+ "key": "",
80
+ "mockFile": ""
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "name": "devicemanagerServiceCreateDeviceTemplate",
86
+ "protocol": "REST",
87
+ "method": "POST",
88
+ "entitypath": "{base_path}/{version}/devicemanager/device-template?{query}",
89
+ "requestSchema": "schema.json",
90
+ "responseSchema": "schema.json",
91
+ "timeout": 0,
92
+ "sendEmpty": false,
93
+ "requestDatatype": "JSON",
94
+ "responseDatatype": "JSON",
95
+ "headers": {},
96
+ "responseObjects": [
97
+ {
98
+ "type": "default",
99
+ "key": "",
100
+ "mockFile": ""
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "name": "devicemanagerServiceListDeviceTemplate",
106
+ "protocol": "REST",
107
+ "method": "GET",
108
+ "entitypath": "{base_path}/{version}/devicemanager/device-template?{query}",
109
+ "requestSchema": "schema.json",
110
+ "responseSchema": "schema.json",
111
+ "timeout": 0,
112
+ "sendEmpty": false,
113
+ "sendGetBody": false,
114
+ "requestDatatype": "JSON",
115
+ "responseDatatype": "JSON",
116
+ "headers": {},
117
+ "responseObjects": [
118
+ {
119
+ "type": "default",
120
+ "key": "",
121
+ "mockFile": ""
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "name": "devicemanagerServiceUpdateLastPublishedNotification",
127
+ "protocol": "REST",
128
+ "method": "PUT",
129
+ "entitypath": "{base_path}/{version}/devicemanager/last-published-notification/{pathv1}?{query}",
130
+ "requestSchema": "schema.json",
131
+ "responseSchema": "schema.json",
132
+ "timeout": 0,
133
+ "sendEmpty": false,
134
+ "requestDatatype": "JSON",
135
+ "responseDatatype": "JSON",
136
+ "headers": {},
137
+ "responseObjects": [
138
+ {
139
+ "type": "default",
140
+ "key": "",
141
+ "mockFile": ""
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "name": "devicemanagerServiceDeleteLastPublishedNotification",
147
+ "protocol": "REST",
148
+ "method": "DELETE",
149
+ "entitypath": "{base_path}/{version}/devicemanager/last-published-notification/{pathv1}?{query}",
150
+ "requestSchema": "schema.json",
151
+ "responseSchema": "schema.json",
152
+ "timeout": 0,
153
+ "sendEmpty": false,
154
+ "requestDatatype": "JSON",
155
+ "responseDatatype": "JSON",
156
+ "headers": {},
157
+ "responseObjects": [
158
+ {
159
+ "type": "default",
160
+ "key": "",
161
+ "mockFile": ""
162
+ }
163
+ ]
164
+ },
165
+ {
166
+ "name": "devicemanagerServiceGetLastPublishedNotification",
167
+ "protocol": "REST",
168
+ "method": "GET",
169
+ "entitypath": "{base_path}/{version}/devicemanager/last-published-notification/{pathv1}?{query}",
170
+ "requestSchema": "schema.json",
171
+ "responseSchema": "schema.json",
172
+ "timeout": 0,
173
+ "sendEmpty": false,
174
+ "sendGetBody": false,
175
+ "requestDatatype": "JSON",
176
+ "responseDatatype": "JSON",
177
+ "headers": {},
178
+ "responseObjects": [
179
+ {
180
+ "type": "default",
181
+ "key": "",
182
+ "mockFile": ""
183
+ }
184
+ ]
185
+ },
186
+ {
187
+ "name": "devicemanagerServiceBulkListDeviceTemplate",
188
+ "protocol": "REST",
189
+ "method": "POST",
190
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-device-template?{query}",
191
+ "requestSchema": "schema.json",
192
+ "responseSchema": "schema.json",
193
+ "timeout": 0,
194
+ "sendEmpty": false,
195
+ "requestDatatype": "JSON",
196
+ "responseDatatype": "JSON",
197
+ "headers": {},
198
+ "responseObjects": [
199
+ {
200
+ "type": "default",
201
+ "key": "",
202
+ "mockFile": ""
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "name": "devicemanagerServiceDeleteDeviceTemplateConfigTemplateRef",
208
+ "protocol": "REST",
209
+ "method": "DELETE",
210
+ "entitypath": "{base_path}/{version}/devicemanager/device-template-config-template/{pathv1}?{query}",
211
+ "requestSchema": "schema.json",
212
+ "responseSchema": "schema.json",
213
+ "timeout": 0,
214
+ "sendEmpty": false,
215
+ "requestDatatype": "JSON",
216
+ "responseDatatype": "JSON",
217
+ "headers": {},
218
+ "responseObjects": [
219
+ {
220
+ "type": "default",
221
+ "key": "",
222
+ "mockFile": ""
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "name": "devicemanagerServiceBulkExtRefUpdate",
228
+ "protocol": "REST",
229
+ "method": "POST",
230
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-ext-ref-update?{query}",
231
+ "requestSchema": "schema.json",
232
+ "responseSchema": "schema.json",
233
+ "timeout": 0,
234
+ "sendEmpty": false,
235
+ "requestDatatype": "JSON",
236
+ "responseDatatype": "JSON",
237
+ "headers": {},
238
+ "responseObjects": [
239
+ {
240
+ "type": "default",
241
+ "key": "",
242
+ "mockFile": ""
243
+ }
244
+ ]
245
+ },
246
+ {
247
+ "name": "devicemanagerServiceCreateConfigTemplateDeployment",
248
+ "protocol": "REST",
249
+ "method": "POST",
250
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-deployment?{query}",
251
+ "requestSchema": "schema.json",
252
+ "responseSchema": "schema.json",
253
+ "timeout": 0,
254
+ "sendEmpty": false,
255
+ "requestDatatype": "JSON",
256
+ "responseDatatype": "JSON",
257
+ "headers": {},
258
+ "responseObjects": [
259
+ {
260
+ "type": "default",
261
+ "key": "",
262
+ "mockFile": ""
263
+ }
264
+ ]
265
+ },
266
+ {
267
+ "name": "devicemanagerServiceListConfigTemplateDeployment",
268
+ "protocol": "REST",
269
+ "method": "GET",
270
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-deployment?{query}",
271
+ "requestSchema": "schema.json",
272
+ "responseSchema": "schema.json",
273
+ "timeout": 0,
274
+ "sendEmpty": false,
275
+ "sendGetBody": false,
276
+ "requestDatatype": "JSON",
277
+ "responseDatatype": "JSON",
278
+ "headers": {},
279
+ "responseObjects": [
280
+ {
281
+ "type": "default",
282
+ "key": "",
283
+ "mockFile": ""
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "name": "devicemanagerServiceBulkListConfiguration",
289
+ "protocol": "REST",
290
+ "method": "POST",
291
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-configuration?{query}",
292
+ "requestSchema": "schema.json",
293
+ "responseSchema": "schema.json",
294
+ "timeout": 0,
295
+ "sendEmpty": false,
296
+ "requestDatatype": "JSON",
297
+ "responseDatatype": "JSON",
298
+ "headers": {},
299
+ "responseObjects": [
300
+ {
301
+ "type": "default",
302
+ "key": "",
303
+ "mockFile": ""
304
+ }
305
+ ]
306
+ },
307
+ {
308
+ "name": "devicemanagerServiceCreateConfigTemplateViewdef",
309
+ "protocol": "REST",
310
+ "method": "POST",
311
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-viewdef?{query}",
312
+ "requestSchema": "schema.json",
313
+ "responseSchema": "schema.json",
314
+ "timeout": 0,
315
+ "sendEmpty": false,
316
+ "requestDatatype": "JSON",
317
+ "responseDatatype": "JSON",
318
+ "headers": {},
319
+ "responseObjects": [
320
+ {
321
+ "type": "default",
322
+ "key": "",
323
+ "mockFile": ""
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "name": "devicemanagerServiceListConfigTemplateViewdef",
329
+ "protocol": "REST",
330
+ "method": "GET",
331
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-viewdef?{query}",
332
+ "requestSchema": "schema.json",
333
+ "responseSchema": "schema.json",
334
+ "timeout": 0,
335
+ "sendEmpty": false,
336
+ "sendGetBody": false,
337
+ "requestDatatype": "JSON",
338
+ "responseDatatype": "JSON",
339
+ "headers": {},
340
+ "responseObjects": [
341
+ {
342
+ "type": "default",
343
+ "key": "",
344
+ "mockFile": ""
345
+ }
346
+ ]
347
+ },
348
+ {
349
+ "name": "devicemanagerServiceCreateDeviceTemplateConfigTemplateRef",
350
+ "protocol": "REST",
351
+ "method": "POST",
352
+ "entitypath": "{base_path}/{version}/devicemanager/device-template-config-template?{query}",
353
+ "requestSchema": "schema.json",
354
+ "responseSchema": "schema.json",
355
+ "timeout": 0,
356
+ "sendEmpty": false,
357
+ "requestDatatype": "JSON",
358
+ "responseDatatype": "JSON",
359
+ "headers": {},
360
+ "responseObjects": [
361
+ {
362
+ "type": "default",
363
+ "key": "",
364
+ "mockFile": ""
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "name": "devicemanagerServiceUpdateDeviceTemplate",
370
+ "protocol": "REST",
371
+ "method": "PUT",
372
+ "entitypath": "{base_path}/{version}/devicemanager/device-template/{pathv1}?{query}",
373
+ "requestSchema": "schema.json",
374
+ "responseSchema": "schema.json",
375
+ "timeout": 0,
376
+ "sendEmpty": false,
377
+ "requestDatatype": "JSON",
378
+ "responseDatatype": "JSON",
379
+ "headers": {},
380
+ "responseObjects": [
381
+ {
382
+ "type": "default",
383
+ "key": "",
384
+ "mockFile": ""
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ "name": "devicemanagerServiceDeleteDeviceTemplate",
390
+ "protocol": "REST",
391
+ "method": "DELETE",
392
+ "entitypath": "{base_path}/{version}/devicemanager/device-template/{pathv1}?{query}",
393
+ "requestSchema": "schema.json",
394
+ "responseSchema": "schema.json",
395
+ "timeout": 0,
396
+ "sendEmpty": false,
397
+ "requestDatatype": "JSON",
398
+ "responseDatatype": "JSON",
399
+ "headers": {},
400
+ "responseObjects": [
401
+ {
402
+ "type": "default",
403
+ "key": "",
404
+ "mockFile": ""
405
+ }
406
+ ]
407
+ },
408
+ {
409
+ "name": "devicemanagerServiceGetDeviceTemplate",
410
+ "protocol": "REST",
411
+ "method": "GET",
412
+ "entitypath": "{base_path}/{version}/devicemanager/device-template/{pathv1}?{query}",
413
+ "requestSchema": "schema.json",
414
+ "responseSchema": "schema.json",
415
+ "timeout": 0,
416
+ "sendEmpty": false,
417
+ "sendGetBody": false,
418
+ "requestDatatype": "JSON",
419
+ "responseDatatype": "JSON",
420
+ "headers": {},
421
+ "responseObjects": [
422
+ {
423
+ "type": "default",
424
+ "key": "",
425
+ "mockFile": ""
426
+ }
427
+ ]
428
+ },
429
+ {
430
+ "name": "devicemanagerServiceCreateConfigArchive",
431
+ "protocol": "REST",
432
+ "method": "POST",
433
+ "entitypath": "{base_path}/{version}/devicemanager/config-archive?{query}",
434
+ "requestSchema": "schema.json",
435
+ "responseSchema": "schema.json",
436
+ "timeout": 0,
437
+ "sendEmpty": false,
438
+ "requestDatatype": "JSON",
439
+ "responseDatatype": "JSON",
440
+ "headers": {},
441
+ "responseObjects": [
442
+ {
443
+ "type": "default",
444
+ "key": "",
445
+ "mockFile": ""
446
+ }
447
+ ]
448
+ },
449
+ {
450
+ "name": "devicemanagerServiceListConfigArchive",
451
+ "protocol": "REST",
452
+ "method": "GET",
453
+ "entitypath": "{base_path}/{version}/devicemanager/config-archive?{query}",
454
+ "requestSchema": "schema.json",
455
+ "responseSchema": "schema.json",
456
+ "timeout": 0,
457
+ "sendEmpty": false,
458
+ "sendGetBody": false,
459
+ "requestDatatype": "JSON",
460
+ "responseDatatype": "JSON",
461
+ "headers": {},
462
+ "responseObjects": [
463
+ {
464
+ "type": "default",
465
+ "key": "",
466
+ "mockFile": ""
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "name": "devicemanagerServiceUpdateConfigResourceRef",
472
+ "protocol": "REST",
473
+ "method": "PUT",
474
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref/{pathv1}?{query}",
475
+ "requestSchema": "schema.json",
476
+ "responseSchema": "schema.json",
477
+ "timeout": 0,
478
+ "sendEmpty": false,
479
+ "requestDatatype": "JSON",
480
+ "responseDatatype": "JSON",
481
+ "headers": {},
482
+ "responseObjects": [
483
+ {
484
+ "type": "default",
485
+ "key": "",
486
+ "mockFile": ""
487
+ }
488
+ ]
489
+ },
490
+ {
491
+ "name": "devicemanagerServiceDeleteConfigResourceRef",
492
+ "protocol": "REST",
493
+ "method": "DELETE",
494
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref/{pathv1}?{query}",
495
+ "requestSchema": "schema.json",
496
+ "responseSchema": "schema.json",
497
+ "timeout": 0,
498
+ "sendEmpty": false,
499
+ "requestDatatype": "JSON",
500
+ "responseDatatype": "JSON",
501
+ "headers": {},
502
+ "responseObjects": [
503
+ {
504
+ "type": "default",
505
+ "key": "",
506
+ "mockFile": ""
507
+ }
508
+ ]
509
+ },
510
+ {
511
+ "name": "devicemanagerServiceGetConfigResourceRef",
512
+ "protocol": "REST",
513
+ "method": "GET",
514
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref/{pathv1}?{query}",
515
+ "requestSchema": "schema.json",
516
+ "responseSchema": "schema.json",
517
+ "timeout": 0,
518
+ "sendEmpty": false,
519
+ "sendGetBody": false,
520
+ "requestDatatype": "JSON",
521
+ "responseDatatype": "JSON",
522
+ "headers": {},
523
+ "responseObjects": [
524
+ {
525
+ "type": "default",
526
+ "key": "",
527
+ "mockFile": ""
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "name": "devicemanagerServiceCreateConfigResourceRefReferenceRef",
533
+ "protocol": "REST",
534
+ "method": "POST",
535
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref-reference?{query}",
536
+ "requestSchema": "schema.json",
537
+ "responseSchema": "schema.json",
538
+ "timeout": 0,
539
+ "sendEmpty": false,
540
+ "requestDatatype": "JSON",
541
+ "responseDatatype": "JSON",
542
+ "headers": {},
543
+ "responseObjects": [
544
+ {
545
+ "type": "default",
546
+ "key": "",
547
+ "mockFile": ""
548
+ }
549
+ ]
550
+ },
551
+ {
552
+ "name": "devicemanagerServiceCreateResourceLock",
553
+ "protocol": "REST",
554
+ "method": "POST",
555
+ "entitypath": "{base_path}/{version}/devicemanager/resource-lock?{query}",
556
+ "requestSchema": "schema.json",
557
+ "responseSchema": "schema.json",
558
+ "timeout": 0,
559
+ "sendEmpty": false,
560
+ "requestDatatype": "JSON",
561
+ "responseDatatype": "JSON",
562
+ "headers": {},
563
+ "responseObjects": [
564
+ {
565
+ "type": "default",
566
+ "key": "",
567
+ "mockFile": ""
568
+ }
569
+ ]
570
+ },
571
+ {
572
+ "name": "devicemanagerServiceListResourceLock",
573
+ "protocol": "REST",
574
+ "method": "GET",
575
+ "entitypath": "{base_path}/{version}/devicemanager/resource-lock?{query}",
576
+ "requestSchema": "schema.json",
577
+ "responseSchema": "schema.json",
578
+ "timeout": 0,
579
+ "sendEmpty": false,
580
+ "sendGetBody": false,
581
+ "requestDatatype": "JSON",
582
+ "responseDatatype": "JSON",
583
+ "headers": {},
584
+ "responseObjects": [
585
+ {
586
+ "type": "default",
587
+ "key": "",
588
+ "mockFile": ""
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "name": "devicemanagerServiceUpdateConfigResource",
594
+ "protocol": "REST",
595
+ "method": "PUT",
596
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource/{pathv1}?{query}",
597
+ "requestSchema": "schema.json",
598
+ "responseSchema": "schema.json",
599
+ "timeout": 0,
600
+ "sendEmpty": false,
601
+ "requestDatatype": "JSON",
602
+ "responseDatatype": "JSON",
603
+ "headers": {},
604
+ "responseObjects": [
605
+ {
606
+ "type": "default",
607
+ "key": "",
608
+ "mockFile": ""
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "name": "devicemanagerServiceDeleteConfigResource",
614
+ "protocol": "REST",
615
+ "method": "DELETE",
616
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource/{pathv1}?{query}",
617
+ "requestSchema": "schema.json",
618
+ "responseSchema": "schema.json",
619
+ "timeout": 0,
620
+ "sendEmpty": false,
621
+ "requestDatatype": "JSON",
622
+ "responseDatatype": "JSON",
623
+ "headers": {},
624
+ "responseObjects": [
625
+ {
626
+ "type": "default",
627
+ "key": "",
628
+ "mockFile": ""
629
+ }
630
+ ]
631
+ },
632
+ {
633
+ "name": "devicemanagerServiceGetConfigResource",
634
+ "protocol": "REST",
635
+ "method": "GET",
636
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource/{pathv1}?{query}",
637
+ "requestSchema": "schema.json",
638
+ "responseSchema": "schema.json",
639
+ "timeout": 0,
640
+ "sendEmpty": false,
641
+ "sendGetBody": false,
642
+ "requestDatatype": "JSON",
643
+ "responseDatatype": "JSON",
644
+ "headers": {},
645
+ "responseObjects": [
646
+ {
647
+ "type": "default",
648
+ "key": "",
649
+ "mockFile": ""
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "name": "devicemanagerServiceSync",
655
+ "protocol": "REST",
656
+ "method": "POST",
657
+ "entitypath": "{base_path}/{version}/devicemanager/sync?{query}",
658
+ "requestSchema": "schema.json",
659
+ "responseSchema": "schema.json",
660
+ "timeout": 0,
661
+ "sendEmpty": false,
662
+ "requestDatatype": "JSON",
663
+ "responseDatatype": "JSON",
664
+ "headers": {},
665
+ "responseObjects": [
666
+ {
667
+ "type": "default",
668
+ "key": "",
669
+ "mockFile": ""
670
+ }
671
+ ]
672
+ },
673
+ {
674
+ "name": "devicemanagerServiceUpdateActivationIPInfo",
675
+ "protocol": "REST",
676
+ "method": "PUT",
677
+ "entitypath": "{base_path}/{version}/devicemanager/activation-ip-info/{pathv1}?{query}",
678
+ "requestSchema": "schema.json",
679
+ "responseSchema": "schema.json",
680
+ "timeout": 0,
681
+ "sendEmpty": false,
682
+ "requestDatatype": "JSON",
683
+ "responseDatatype": "JSON",
684
+ "headers": {},
685
+ "responseObjects": [
686
+ {
687
+ "type": "default",
688
+ "key": "",
689
+ "mockFile": ""
690
+ }
691
+ ]
692
+ },
693
+ {
694
+ "name": "devicemanagerServiceDeleteActivationIPInfo",
695
+ "protocol": "REST",
696
+ "method": "DELETE",
697
+ "entitypath": "{base_path}/{version}/devicemanager/activation-ip-info/{pathv1}?{query}",
698
+ "requestSchema": "schema.json",
699
+ "responseSchema": "schema.json",
700
+ "timeout": 0,
701
+ "sendEmpty": false,
702
+ "requestDatatype": "JSON",
703
+ "responseDatatype": "JSON",
704
+ "headers": {},
705
+ "responseObjects": [
706
+ {
707
+ "type": "default",
708
+ "key": "",
709
+ "mockFile": ""
710
+ }
711
+ ]
712
+ },
713
+ {
714
+ "name": "devicemanagerServiceGetActivationIPInfo",
715
+ "protocol": "REST",
716
+ "method": "GET",
717
+ "entitypath": "{base_path}/{version}/devicemanager/activation-ip-info/{pathv1}?{query}",
718
+ "requestSchema": "schema.json",
719
+ "responseSchema": "schema.json",
720
+ "timeout": 0,
721
+ "sendEmpty": false,
722
+ "sendGetBody": false,
723
+ "requestDatatype": "JSON",
724
+ "responseDatatype": "JSON",
725
+ "headers": {},
726
+ "responseObjects": [
727
+ {
728
+ "type": "default",
729
+ "key": "",
730
+ "mockFile": ""
731
+ }
732
+ ]
733
+ },
734
+ {
735
+ "name": "devicemanagerServiceBulkRefUpdate",
736
+ "protocol": "REST",
737
+ "method": "POST",
738
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-ref-update?{query}",
739
+ "requestSchema": "schema.json",
740
+ "responseSchema": "schema.json",
741
+ "timeout": 0,
742
+ "sendEmpty": false,
743
+ "requestDatatype": "JSON",
744
+ "responseDatatype": "JSON",
745
+ "headers": {},
746
+ "responseObjects": [
747
+ {
748
+ "type": "default",
749
+ "key": "",
750
+ "mockFile": ""
751
+ }
752
+ ]
753
+ },
754
+ {
755
+ "name": "devicemanagerServiceDeleteConfigResourceRefReferenceRef",
756
+ "protocol": "REST",
757
+ "method": "DELETE",
758
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref-reference/{pathv1}?{query}",
759
+ "requestSchema": "schema.json",
760
+ "responseSchema": "schema.json",
761
+ "timeout": 0,
762
+ "sendEmpty": false,
763
+ "requestDatatype": "JSON",
764
+ "responseDatatype": "JSON",
765
+ "headers": {},
766
+ "responseObjects": [
767
+ {
768
+ "type": "default",
769
+ "key": "",
770
+ "mockFile": ""
771
+ }
772
+ ]
773
+ },
774
+ {
775
+ "name": "devicemanagerServiceUpdateDeviceActivationInfo",
776
+ "protocol": "REST",
777
+ "method": "PUT",
778
+ "entitypath": "{base_path}/{version}/devicemanager/device-activation-info/{pathv1}?{query}",
779
+ "requestSchema": "schema.json",
780
+ "responseSchema": "schema.json",
781
+ "timeout": 0,
782
+ "sendEmpty": false,
783
+ "requestDatatype": "JSON",
784
+ "responseDatatype": "JSON",
785
+ "headers": {},
786
+ "responseObjects": [
787
+ {
788
+ "type": "default",
789
+ "key": "",
790
+ "mockFile": ""
791
+ }
792
+ ]
793
+ },
794
+ {
795
+ "name": "devicemanagerServiceDeleteDeviceActivationInfo",
796
+ "protocol": "REST",
797
+ "method": "DELETE",
798
+ "entitypath": "{base_path}/{version}/devicemanager/device-activation-info/{pathv1}?{query}",
799
+ "requestSchema": "schema.json",
800
+ "responseSchema": "schema.json",
801
+ "timeout": 0,
802
+ "sendEmpty": false,
803
+ "requestDatatype": "JSON",
804
+ "responseDatatype": "JSON",
805
+ "headers": {},
806
+ "responseObjects": [
807
+ {
808
+ "type": "default",
809
+ "key": "",
810
+ "mockFile": ""
811
+ }
812
+ ]
813
+ },
814
+ {
815
+ "name": "devicemanagerServiceGetDeviceActivationInfo",
816
+ "protocol": "REST",
817
+ "method": "GET",
818
+ "entitypath": "{base_path}/{version}/devicemanager/device-activation-info/{pathv1}?{query}",
819
+ "requestSchema": "schema.json",
820
+ "responseSchema": "schema.json",
821
+ "timeout": 0,
822
+ "sendEmpty": false,
823
+ "sendGetBody": false,
824
+ "requestDatatype": "JSON",
825
+ "responseDatatype": "JSON",
826
+ "headers": {},
827
+ "responseObjects": [
828
+ {
829
+ "type": "default",
830
+ "key": "",
831
+ "mockFile": ""
832
+ }
833
+ ]
834
+ },
835
+ {
836
+ "name": "devicemanagerServiceBulkListConfigTemplateViewdef",
837
+ "protocol": "REST",
838
+ "method": "POST",
839
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-config-template-viewdef?{query}",
840
+ "requestSchema": "schema.json",
841
+ "responseSchema": "schema.json",
842
+ "timeout": 0,
843
+ "sendEmpty": false,
844
+ "requestDatatype": "JSON",
845
+ "responseDatatype": "JSON",
846
+ "headers": {},
847
+ "responseObjects": [
848
+ {
849
+ "type": "default",
850
+ "key": "",
851
+ "mockFile": ""
852
+ }
853
+ ]
854
+ },
855
+ {
856
+ "name": "devicemanagerServiceCreateDeviceActivationInfo",
857
+ "protocol": "REST",
858
+ "method": "POST",
859
+ "entitypath": "{base_path}/{version}/devicemanager/device-activation-info?{query}",
860
+ "requestSchema": "schema.json",
861
+ "responseSchema": "schema.json",
862
+ "timeout": 0,
863
+ "sendEmpty": false,
864
+ "requestDatatype": "JSON",
865
+ "responseDatatype": "JSON",
866
+ "headers": {},
867
+ "responseObjects": [
868
+ {
869
+ "type": "default",
870
+ "key": "",
871
+ "mockFile": ""
872
+ }
873
+ ]
874
+ },
875
+ {
876
+ "name": "devicemanagerServiceListDeviceActivationInfo",
877
+ "protocol": "REST",
878
+ "method": "GET",
879
+ "entitypath": "{base_path}/{version}/devicemanager/device-activation-info?{query}",
880
+ "requestSchema": "schema.json",
881
+ "responseSchema": "schema.json",
882
+ "timeout": 0,
883
+ "sendEmpty": false,
884
+ "sendGetBody": false,
885
+ "requestDatatype": "JSON",
886
+ "responseDatatype": "JSON",
887
+ "headers": {},
888
+ "responseObjects": [
889
+ {
890
+ "type": "default",
891
+ "key": "",
892
+ "mockFile": ""
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "name": "devicemanagerServiceCreateLastPublishedNotification",
898
+ "protocol": "REST",
899
+ "method": "POST",
900
+ "entitypath": "{base_path}/{version}/devicemanager/last-published-notification?{query}",
901
+ "requestSchema": "schema.json",
902
+ "responseSchema": "schema.json",
903
+ "timeout": 0,
904
+ "sendEmpty": false,
905
+ "requestDatatype": "JSON",
906
+ "responseDatatype": "JSON",
907
+ "headers": {},
908
+ "responseObjects": [
909
+ {
910
+ "type": "default",
911
+ "key": "",
912
+ "mockFile": ""
913
+ }
914
+ ]
915
+ },
916
+ {
917
+ "name": "devicemanagerServiceListLastPublishedNotification",
918
+ "protocol": "REST",
919
+ "method": "GET",
920
+ "entitypath": "{base_path}/{version}/devicemanager/last-published-notification?{query}",
921
+ "requestSchema": "schema.json",
922
+ "responseSchema": "schema.json",
923
+ "timeout": 0,
924
+ "sendEmpty": false,
925
+ "sendGetBody": false,
926
+ "requestDatatype": "JSON",
927
+ "responseDatatype": "JSON",
928
+ "headers": {},
929
+ "responseObjects": [
930
+ {
931
+ "type": "default",
932
+ "key": "",
933
+ "mockFile": ""
934
+ }
935
+ ]
936
+ },
937
+ {
938
+ "name": "devicemanagerServiceBulkListConfigTemplateDeployment",
939
+ "protocol": "REST",
940
+ "method": "POST",
941
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-config-template-deployment?{query}",
942
+ "requestSchema": "schema.json",
943
+ "responseSchema": "schema.json",
944
+ "timeout": 0,
945
+ "sendEmpty": false,
946
+ "requestDatatype": "JSON",
947
+ "responseDatatype": "JSON",
948
+ "headers": {},
949
+ "responseObjects": [
950
+ {
951
+ "type": "default",
952
+ "key": "",
953
+ "mockFile": ""
954
+ }
955
+ ]
956
+ },
957
+ {
958
+ "name": "devicemanagerServiceUpdateConfigArchive",
959
+ "protocol": "REST",
960
+ "method": "PUT",
961
+ "entitypath": "{base_path}/{version}/devicemanager/config-archive/{pathv1}?{query}",
962
+ "requestSchema": "schema.json",
963
+ "responseSchema": "schema.json",
964
+ "timeout": 0,
965
+ "sendEmpty": false,
966
+ "requestDatatype": "JSON",
967
+ "responseDatatype": "JSON",
968
+ "headers": {},
969
+ "responseObjects": [
970
+ {
971
+ "type": "default",
972
+ "key": "",
973
+ "mockFile": ""
974
+ }
975
+ ]
976
+ },
977
+ {
978
+ "name": "devicemanagerServiceDeleteConfigArchive",
979
+ "protocol": "REST",
980
+ "method": "DELETE",
981
+ "entitypath": "{base_path}/{version}/devicemanager/config-archive/{pathv1}?{query}",
982
+ "requestSchema": "schema.json",
983
+ "responseSchema": "schema.json",
984
+ "timeout": 0,
985
+ "sendEmpty": false,
986
+ "requestDatatype": "JSON",
987
+ "responseDatatype": "JSON",
988
+ "headers": {},
989
+ "responseObjects": [
990
+ {
991
+ "type": "default",
992
+ "key": "",
993
+ "mockFile": ""
994
+ }
995
+ ]
996
+ },
997
+ {
998
+ "name": "devicemanagerServiceGetConfigArchive",
999
+ "protocol": "REST",
1000
+ "method": "GET",
1001
+ "entitypath": "{base_path}/{version}/devicemanager/config-archive/{pathv1}?{query}",
1002
+ "requestSchema": "schema.json",
1003
+ "responseSchema": "schema.json",
1004
+ "timeout": 0,
1005
+ "sendEmpty": false,
1006
+ "sendGetBody": false,
1007
+ "requestDatatype": "JSON",
1008
+ "responseDatatype": "JSON",
1009
+ "headers": {},
1010
+ "responseObjects": [
1011
+ {
1012
+ "type": "default",
1013
+ "key": "",
1014
+ "mockFile": ""
1015
+ }
1016
+ ]
1017
+ },
1018
+ {
1019
+ "name": "devicemanagerServiceCreateConfigResourceRef",
1020
+ "protocol": "REST",
1021
+ "method": "POST",
1022
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref?{query}",
1023
+ "requestSchema": "schema.json",
1024
+ "responseSchema": "schema.json",
1025
+ "timeout": 0,
1026
+ "sendEmpty": false,
1027
+ "requestDatatype": "JSON",
1028
+ "responseDatatype": "JSON",
1029
+ "headers": {},
1030
+ "responseObjects": [
1031
+ {
1032
+ "type": "default",
1033
+ "key": "",
1034
+ "mockFile": ""
1035
+ }
1036
+ ]
1037
+ },
1038
+ {
1039
+ "name": "devicemanagerServiceListConfigResourceRef",
1040
+ "protocol": "REST",
1041
+ "method": "GET",
1042
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource-ref?{query}",
1043
+ "requestSchema": "schema.json",
1044
+ "responseSchema": "schema.json",
1045
+ "timeout": 0,
1046
+ "sendEmpty": false,
1047
+ "sendGetBody": false,
1048
+ "requestDatatype": "JSON",
1049
+ "responseDatatype": "JSON",
1050
+ "headers": {},
1051
+ "responseObjects": [
1052
+ {
1053
+ "type": "default",
1054
+ "key": "",
1055
+ "mockFile": ""
1056
+ }
1057
+ ]
1058
+ },
1059
+ {
1060
+ "name": "devicemanagerServiceBulkListResourceLock",
1061
+ "protocol": "REST",
1062
+ "method": "POST",
1063
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-resource-lock?{query}",
1064
+ "requestSchema": "schema.json",
1065
+ "responseSchema": "schema.json",
1066
+ "timeout": 0,
1067
+ "sendEmpty": false,
1068
+ "requestDatatype": "JSON",
1069
+ "responseDatatype": "JSON",
1070
+ "headers": {},
1071
+ "responseObjects": [
1072
+ {
1073
+ "type": "default",
1074
+ "key": "",
1075
+ "mockFile": ""
1076
+ }
1077
+ ]
1078
+ },
1079
+ {
1080
+ "name": "devicemanagerServiceBulkListConfigResourceRef",
1081
+ "protocol": "REST",
1082
+ "method": "POST",
1083
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-config-resource-ref?{query}",
1084
+ "requestSchema": "schema.json",
1085
+ "responseSchema": "schema.json",
1086
+ "timeout": 0,
1087
+ "sendEmpty": false,
1088
+ "requestDatatype": "JSON",
1089
+ "responseDatatype": "JSON",
1090
+ "headers": {},
1091
+ "responseObjects": [
1092
+ {
1093
+ "type": "default",
1094
+ "key": "",
1095
+ "mockFile": ""
1096
+ }
1097
+ ]
1098
+ },
1099
+ {
1100
+ "name": "devicemanagerServiceUpdateDeletedResource",
1101
+ "protocol": "REST",
1102
+ "method": "PUT",
1103
+ "entitypath": "{base_path}/{version}/devicemanager/deleted-resource/{pathv1}?{query}",
1104
+ "requestSchema": "schema.json",
1105
+ "responseSchema": "schema.json",
1106
+ "timeout": 0,
1107
+ "sendEmpty": false,
1108
+ "requestDatatype": "JSON",
1109
+ "responseDatatype": "JSON",
1110
+ "headers": {},
1111
+ "responseObjects": [
1112
+ {
1113
+ "type": "default",
1114
+ "key": "",
1115
+ "mockFile": ""
1116
+ }
1117
+ ]
1118
+ },
1119
+ {
1120
+ "name": "devicemanagerServiceDeleteDeletedResource",
1121
+ "protocol": "REST",
1122
+ "method": "DELETE",
1123
+ "entitypath": "{base_path}/{version}/devicemanager/deleted-resource/{pathv1}?{query}",
1124
+ "requestSchema": "schema.json",
1125
+ "responseSchema": "schema.json",
1126
+ "timeout": 0,
1127
+ "sendEmpty": false,
1128
+ "requestDatatype": "JSON",
1129
+ "responseDatatype": "JSON",
1130
+ "headers": {},
1131
+ "responseObjects": [
1132
+ {
1133
+ "type": "default",
1134
+ "key": "",
1135
+ "mockFile": ""
1136
+ }
1137
+ ]
1138
+ },
1139
+ {
1140
+ "name": "devicemanagerServiceGetDeletedResource",
1141
+ "protocol": "REST",
1142
+ "method": "GET",
1143
+ "entitypath": "{base_path}/{version}/devicemanager/deleted-resource/{pathv1}?{query}",
1144
+ "requestSchema": "schema.json",
1145
+ "responseSchema": "schema.json",
1146
+ "timeout": 0,
1147
+ "sendEmpty": false,
1148
+ "sendGetBody": false,
1149
+ "requestDatatype": "JSON",
1150
+ "responseDatatype": "JSON",
1151
+ "headers": {},
1152
+ "responseObjects": [
1153
+ {
1154
+ "type": "default",
1155
+ "key": "",
1156
+ "mockFile": ""
1157
+ }
1158
+ ]
1159
+ },
1160
+ {
1161
+ "name": "devicemanagerServiceBulkListConfigArchive",
1162
+ "protocol": "REST",
1163
+ "method": "POST",
1164
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-config-archive?{query}",
1165
+ "requestSchema": "schema.json",
1166
+ "responseSchema": "schema.json",
1167
+ "timeout": 0,
1168
+ "sendEmpty": false,
1169
+ "requestDatatype": "JSON",
1170
+ "responseDatatype": "JSON",
1171
+ "headers": {},
1172
+ "responseObjects": [
1173
+ {
1174
+ "type": "default",
1175
+ "key": "",
1176
+ "mockFile": ""
1177
+ }
1178
+ ]
1179
+ },
1180
+ {
1181
+ "name": "devicemanagerServiceBulkListLastPublishedNotification",
1182
+ "protocol": "REST",
1183
+ "method": "POST",
1184
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-last-published-notification?{query}",
1185
+ "requestSchema": "schema.json",
1186
+ "responseSchema": "schema.json",
1187
+ "timeout": 0,
1188
+ "sendEmpty": false,
1189
+ "requestDatatype": "JSON",
1190
+ "responseDatatype": "JSON",
1191
+ "headers": {},
1192
+ "responseObjects": [
1193
+ {
1194
+ "type": "default",
1195
+ "key": "",
1196
+ "mockFile": ""
1197
+ }
1198
+ ]
1199
+ },
1200
+ {
1201
+ "name": "devicemanagerServiceExtRefUpdate",
1202
+ "protocol": "REST",
1203
+ "method": "POST",
1204
+ "entitypath": "{base_path}/{version}/devicemanager/ext-ref-update?{query}",
1205
+ "requestSchema": "schema.json",
1206
+ "responseSchema": "schema.json",
1207
+ "timeout": 0,
1208
+ "sendEmpty": false,
1209
+ "requestDatatype": "JSON",
1210
+ "responseDatatype": "JSON",
1211
+ "headers": {},
1212
+ "responseObjects": [
1213
+ {
1214
+ "type": "default",
1215
+ "key": "",
1216
+ "mockFile": ""
1217
+ }
1218
+ ]
1219
+ },
1220
+ {
1221
+ "name": "devicemanagerServiceBulkListActivationIPInfo",
1222
+ "protocol": "REST",
1223
+ "method": "POST",
1224
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-activation-ip-info?{query}",
1225
+ "requestSchema": "schema.json",
1226
+ "responseSchema": "schema.json",
1227
+ "timeout": 0,
1228
+ "sendEmpty": false,
1229
+ "requestDatatype": "JSON",
1230
+ "responseDatatype": "JSON",
1231
+ "headers": {},
1232
+ "responseObjects": [
1233
+ {
1234
+ "type": "default",
1235
+ "key": "",
1236
+ "mockFile": ""
1237
+ }
1238
+ ]
1239
+ },
1240
+ {
1241
+ "name": "devicemanagerServiceCreateConfigTemplate",
1242
+ "protocol": "REST",
1243
+ "method": "POST",
1244
+ "entitypath": "{base_path}/{version}/devicemanager/config-template?{query}",
1245
+ "requestSchema": "schema.json",
1246
+ "responseSchema": "schema.json",
1247
+ "timeout": 0,
1248
+ "sendEmpty": false,
1249
+ "requestDatatype": "JSON",
1250
+ "responseDatatype": "JSON",
1251
+ "headers": {},
1252
+ "responseObjects": [
1253
+ {
1254
+ "type": "default",
1255
+ "key": "",
1256
+ "mockFile": ""
1257
+ }
1258
+ ]
1259
+ },
1260
+ {
1261
+ "name": "devicemanagerServiceListConfigTemplate",
1262
+ "protocol": "REST",
1263
+ "method": "GET",
1264
+ "entitypath": "{base_path}/{version}/devicemanager/config-template?{query}",
1265
+ "requestSchema": "schema.json",
1266
+ "responseSchema": "schema.json",
1267
+ "timeout": 0,
1268
+ "sendEmpty": false,
1269
+ "sendGetBody": false,
1270
+ "requestDatatype": "JSON",
1271
+ "responseDatatype": "JSON",
1272
+ "headers": {},
1273
+ "responseObjects": [
1274
+ {
1275
+ "type": "default",
1276
+ "key": "",
1277
+ "mockFile": ""
1278
+ }
1279
+ ]
1280
+ },
1281
+ {
1282
+ "name": "devicemanagerServiceBulkListDeletedResource",
1283
+ "protocol": "REST",
1284
+ "method": "POST",
1285
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-deleted-resource?{query}",
1286
+ "requestSchema": "schema.json",
1287
+ "responseSchema": "schema.json",
1288
+ "timeout": 0,
1289
+ "sendEmpty": false,
1290
+ "requestDatatype": "JSON",
1291
+ "responseDatatype": "JSON",
1292
+ "headers": {},
1293
+ "responseObjects": [
1294
+ {
1295
+ "type": "default",
1296
+ "key": "",
1297
+ "mockFile": ""
1298
+ }
1299
+ ]
1300
+ },
1301
+ {
1302
+ "name": "devicemanagerServiceCreateActivationIPInfo",
1303
+ "protocol": "REST",
1304
+ "method": "POST",
1305
+ "entitypath": "{base_path}/{version}/devicemanager/activation-ip-info?{query}",
1306
+ "requestSchema": "schema.json",
1307
+ "responseSchema": "schema.json",
1308
+ "timeout": 0,
1309
+ "sendEmpty": false,
1310
+ "requestDatatype": "JSON",
1311
+ "responseDatatype": "JSON",
1312
+ "headers": {},
1313
+ "responseObjects": [
1314
+ {
1315
+ "type": "default",
1316
+ "key": "",
1317
+ "mockFile": ""
1318
+ }
1319
+ ]
1320
+ },
1321
+ {
1322
+ "name": "devicemanagerServiceListActivationIPInfo",
1323
+ "protocol": "REST",
1324
+ "method": "GET",
1325
+ "entitypath": "{base_path}/{version}/devicemanager/activation-ip-info?{query}",
1326
+ "requestSchema": "schema.json",
1327
+ "responseSchema": "schema.json",
1328
+ "timeout": 0,
1329
+ "sendEmpty": false,
1330
+ "sendGetBody": false,
1331
+ "requestDatatype": "JSON",
1332
+ "responseDatatype": "JSON",
1333
+ "headers": {},
1334
+ "responseObjects": [
1335
+ {
1336
+ "type": "default",
1337
+ "key": "",
1338
+ "mockFile": ""
1339
+ }
1340
+ ]
1341
+ },
1342
+ {
1343
+ "name": "devicemanagerServiceUpdateConfigTemplate",
1344
+ "protocol": "REST",
1345
+ "method": "PUT",
1346
+ "entitypath": "{base_path}/{version}/devicemanager/config-template/{pathv1}?{query}",
1347
+ "requestSchema": "schema.json",
1348
+ "responseSchema": "schema.json",
1349
+ "timeout": 0,
1350
+ "sendEmpty": false,
1351
+ "requestDatatype": "JSON",
1352
+ "responseDatatype": "JSON",
1353
+ "headers": {},
1354
+ "responseObjects": [
1355
+ {
1356
+ "type": "default",
1357
+ "key": "",
1358
+ "mockFile": ""
1359
+ }
1360
+ ]
1361
+ },
1362
+ {
1363
+ "name": "devicemanagerServiceDeleteConfigTemplate",
1364
+ "protocol": "REST",
1365
+ "method": "DELETE",
1366
+ "entitypath": "{base_path}/{version}/devicemanager/config-template/{pathv1}?{query}",
1367
+ "requestSchema": "schema.json",
1368
+ "responseSchema": "schema.json",
1369
+ "timeout": 0,
1370
+ "sendEmpty": false,
1371
+ "requestDatatype": "JSON",
1372
+ "responseDatatype": "JSON",
1373
+ "headers": {},
1374
+ "responseObjects": [
1375
+ {
1376
+ "type": "default",
1377
+ "key": "",
1378
+ "mockFile": ""
1379
+ }
1380
+ ]
1381
+ },
1382
+ {
1383
+ "name": "devicemanagerServiceGetConfigTemplate",
1384
+ "protocol": "REST",
1385
+ "method": "GET",
1386
+ "entitypath": "{base_path}/{version}/devicemanager/config-template/{pathv1}?{query}",
1387
+ "requestSchema": "schema.json",
1388
+ "responseSchema": "schema.json",
1389
+ "timeout": 0,
1390
+ "sendEmpty": false,
1391
+ "sendGetBody": false,
1392
+ "requestDatatype": "JSON",
1393
+ "responseDatatype": "JSON",
1394
+ "headers": {},
1395
+ "responseObjects": [
1396
+ {
1397
+ "type": "default",
1398
+ "key": "",
1399
+ "mockFile": ""
1400
+ }
1401
+ ]
1402
+ },
1403
+ {
1404
+ "name": "devicemanagerServiceUpdateConfiguration",
1405
+ "protocol": "REST",
1406
+ "method": "PUT",
1407
+ "entitypath": "{base_path}/{version}/devicemanager/configuration/{pathv1}?{query}",
1408
+ "requestSchema": "schema.json",
1409
+ "responseSchema": "schema.json",
1410
+ "timeout": 0,
1411
+ "sendEmpty": false,
1412
+ "requestDatatype": "JSON",
1413
+ "responseDatatype": "JSON",
1414
+ "headers": {},
1415
+ "responseObjects": [
1416
+ {
1417
+ "type": "default",
1418
+ "key": "",
1419
+ "mockFile": ""
1420
+ }
1421
+ ]
1422
+ },
1423
+ {
1424
+ "name": "devicemanagerServiceDeleteConfiguration",
1425
+ "protocol": "REST",
1426
+ "method": "DELETE",
1427
+ "entitypath": "{base_path}/{version}/devicemanager/configuration/{pathv1}?{query}",
1428
+ "requestSchema": "schema.json",
1429
+ "responseSchema": "schema.json",
1430
+ "timeout": 0,
1431
+ "sendEmpty": false,
1432
+ "requestDatatype": "JSON",
1433
+ "responseDatatype": "JSON",
1434
+ "headers": {},
1435
+ "responseObjects": [
1436
+ {
1437
+ "type": "default",
1438
+ "key": "",
1439
+ "mockFile": ""
1440
+ }
1441
+ ]
1442
+ },
1443
+ {
1444
+ "name": "devicemanagerServiceGetConfiguration",
1445
+ "protocol": "REST",
1446
+ "method": "GET",
1447
+ "entitypath": "{base_path}/{version}/devicemanager/configuration/{pathv1}?{query}",
1448
+ "requestSchema": "schema.json",
1449
+ "responseSchema": "schema.json",
1450
+ "timeout": 0,
1451
+ "sendEmpty": false,
1452
+ "sendGetBody": false,
1453
+ "requestDatatype": "JSON",
1454
+ "responseDatatype": "JSON",
1455
+ "headers": {},
1456
+ "responseObjects": [
1457
+ {
1458
+ "type": "default",
1459
+ "key": "",
1460
+ "mockFile": ""
1461
+ }
1462
+ ]
1463
+ },
1464
+ {
1465
+ "name": "devicemanagerServiceCreateDeletedResource",
1466
+ "protocol": "REST",
1467
+ "method": "POST",
1468
+ "entitypath": "{base_path}/{version}/devicemanager/deleted-resource?{query}",
1469
+ "requestSchema": "schema.json",
1470
+ "responseSchema": "schema.json",
1471
+ "timeout": 0,
1472
+ "sendEmpty": false,
1473
+ "requestDatatype": "JSON",
1474
+ "responseDatatype": "JSON",
1475
+ "headers": {},
1476
+ "responseObjects": [
1477
+ {
1478
+ "type": "default",
1479
+ "key": "",
1480
+ "mockFile": ""
1481
+ }
1482
+ ]
1483
+ },
1484
+ {
1485
+ "name": "devicemanagerServiceListDeletedResource",
1486
+ "protocol": "REST",
1487
+ "method": "GET",
1488
+ "entitypath": "{base_path}/{version}/devicemanager/deleted-resource?{query}",
1489
+ "requestSchema": "schema.json",
1490
+ "responseSchema": "schema.json",
1491
+ "timeout": 0,
1492
+ "sendEmpty": false,
1493
+ "sendGetBody": false,
1494
+ "requestDatatype": "JSON",
1495
+ "responseDatatype": "JSON",
1496
+ "headers": {},
1497
+ "responseObjects": [
1498
+ {
1499
+ "type": "default",
1500
+ "key": "",
1501
+ "mockFile": ""
1502
+ }
1503
+ ]
1504
+ },
1505
+ {
1506
+ "name": "devicemanagerServiceCreateConfigResource",
1507
+ "protocol": "REST",
1508
+ "method": "POST",
1509
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource?{query}",
1510
+ "requestSchema": "schema.json",
1511
+ "responseSchema": "schema.json",
1512
+ "timeout": 0,
1513
+ "sendEmpty": false,
1514
+ "requestDatatype": "JSON",
1515
+ "responseDatatype": "JSON",
1516
+ "headers": {},
1517
+ "responseObjects": [
1518
+ {
1519
+ "type": "default",
1520
+ "key": "",
1521
+ "mockFile": ""
1522
+ }
1523
+ ]
1524
+ },
1525
+ {
1526
+ "name": "devicemanagerServiceListConfigResource",
1527
+ "protocol": "REST",
1528
+ "method": "GET",
1529
+ "entitypath": "{base_path}/{version}/devicemanager/config-resource?{query}",
1530
+ "requestSchema": "schema.json",
1531
+ "responseSchema": "schema.json",
1532
+ "timeout": 0,
1533
+ "sendEmpty": false,
1534
+ "sendGetBody": false,
1535
+ "requestDatatype": "JSON",
1536
+ "responseDatatype": "JSON",
1537
+ "headers": {},
1538
+ "responseObjects": [
1539
+ {
1540
+ "type": "default",
1541
+ "key": "",
1542
+ "mockFile": ""
1543
+ }
1544
+ ]
1545
+ },
1546
+ {
1547
+ "name": "devicemanagerServiceBulkListDeviceActivationInfo",
1548
+ "protocol": "REST",
1549
+ "method": "POST",
1550
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-device-activation-info?{query}",
1551
+ "requestSchema": "schema.json",
1552
+ "responseSchema": "schema.json",
1553
+ "timeout": 0,
1554
+ "sendEmpty": false,
1555
+ "requestDatatype": "JSON",
1556
+ "responseDatatype": "JSON",
1557
+ "headers": {},
1558
+ "responseObjects": [
1559
+ {
1560
+ "type": "default",
1561
+ "key": "",
1562
+ "mockFile": ""
1563
+ }
1564
+ ]
1565
+ },
1566
+ {
1567
+ "name": "devicemanagerServiceBulkListConfigResource",
1568
+ "protocol": "REST",
1569
+ "method": "POST",
1570
+ "entitypath": "{base_path}/{version}/devicemanager/bulk-list-config-resource?{query}",
1571
+ "requestSchema": "schema.json",
1572
+ "responseSchema": "schema.json",
1573
+ "timeout": 0,
1574
+ "sendEmpty": false,
1575
+ "requestDatatype": "JSON",
1576
+ "responseDatatype": "JSON",
1577
+ "headers": {},
1578
+ "responseObjects": [
1579
+ {
1580
+ "type": "default",
1581
+ "key": "",
1582
+ "mockFile": ""
1583
+ }
1584
+ ]
1585
+ },
1586
+ {
1587
+ "name": "devicemanagerServiceUpdateConfigTemplateViewdef",
1588
+ "protocol": "REST",
1589
+ "method": "PUT",
1590
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-viewdef/{pathv1}?{query}",
1591
+ "requestSchema": "schema.json",
1592
+ "responseSchema": "schema.json",
1593
+ "timeout": 0,
1594
+ "sendEmpty": false,
1595
+ "requestDatatype": "JSON",
1596
+ "responseDatatype": "JSON",
1597
+ "headers": {},
1598
+ "responseObjects": [
1599
+ {
1600
+ "type": "default",
1601
+ "key": "",
1602
+ "mockFile": ""
1603
+ }
1604
+ ]
1605
+ },
1606
+ {
1607
+ "name": "devicemanagerServiceDeleteConfigTemplateViewdef",
1608
+ "protocol": "REST",
1609
+ "method": "DELETE",
1610
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-viewdef/{pathv1}?{query}",
1611
+ "requestSchema": "schema.json",
1612
+ "responseSchema": "schema.json",
1613
+ "timeout": 0,
1614
+ "sendEmpty": false,
1615
+ "requestDatatype": "JSON",
1616
+ "responseDatatype": "JSON",
1617
+ "headers": {},
1618
+ "responseObjects": [
1619
+ {
1620
+ "type": "default",
1621
+ "key": "",
1622
+ "mockFile": ""
1623
+ }
1624
+ ]
1625
+ },
1626
+ {
1627
+ "name": "devicemanagerServiceGetConfigTemplateViewdef",
1628
+ "protocol": "REST",
1629
+ "method": "GET",
1630
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-viewdef/{pathv1}?{query}",
1631
+ "requestSchema": "schema.json",
1632
+ "responseSchema": "schema.json",
1633
+ "timeout": 0,
1634
+ "sendEmpty": false,
1635
+ "sendGetBody": false,
1636
+ "requestDatatype": "JSON",
1637
+ "responseDatatype": "JSON",
1638
+ "headers": {},
1639
+ "responseObjects": [
1640
+ {
1641
+ "type": "default",
1642
+ "key": "",
1643
+ "mockFile": ""
1644
+ }
1645
+ ]
1646
+ },
1647
+ {
1648
+ "name": "devicemanagerServiceUpdateConfigTemplateDeployment",
1649
+ "protocol": "REST",
1650
+ "method": "PUT",
1651
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-deployment/{pathv1}?{query}",
1652
+ "requestSchema": "schema.json",
1653
+ "responseSchema": "schema.json",
1654
+ "timeout": 0,
1655
+ "sendEmpty": false,
1656
+ "requestDatatype": "JSON",
1657
+ "responseDatatype": "JSON",
1658
+ "headers": {},
1659
+ "responseObjects": [
1660
+ {
1661
+ "type": "default",
1662
+ "key": "",
1663
+ "mockFile": ""
1664
+ }
1665
+ ]
1666
+ },
1667
+ {
1668
+ "name": "devicemanagerServiceDeleteConfigTemplateDeployment",
1669
+ "protocol": "REST",
1670
+ "method": "DELETE",
1671
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-deployment/{pathv1}?{query}",
1672
+ "requestSchema": "schema.json",
1673
+ "responseSchema": "schema.json",
1674
+ "timeout": 0,
1675
+ "sendEmpty": false,
1676
+ "requestDatatype": "JSON",
1677
+ "responseDatatype": "JSON",
1678
+ "headers": {},
1679
+ "responseObjects": [
1680
+ {
1681
+ "type": "default",
1682
+ "key": "",
1683
+ "mockFile": ""
1684
+ }
1685
+ ]
1686
+ },
1687
+ {
1688
+ "name": "devicemanagerServiceGetConfigTemplateDeployment",
1689
+ "protocol": "REST",
1690
+ "method": "GET",
1691
+ "entitypath": "{base_path}/{version}/devicemanager/config-template-deployment/{pathv1}?{query}",
1692
+ "requestSchema": "schema.json",
1693
+ "responseSchema": "schema.json",
1694
+ "timeout": 0,
1695
+ "sendEmpty": false,
1696
+ "sendGetBody": false,
1697
+ "requestDatatype": "JSON",
1698
+ "responseDatatype": "JSON",
1699
+ "headers": {},
1700
+ "responseObjects": [
1701
+ {
1702
+ "type": "default",
1703
+ "key": "",
1704
+ "mockFile": ""
1705
+ }
1706
+ ]
1707
+ },
1708
+ {
1709
+ "name": "devicemanagerServiceCreateConfiguration",
1710
+ "protocol": "REST",
1711
+ "method": "POST",
1712
+ "entitypath": "{base_path}/{version}/devicemanager/configuration?{query}",
1713
+ "requestSchema": "schema.json",
1714
+ "responseSchema": "schema.json",
1715
+ "timeout": 0,
1716
+ "sendEmpty": false,
1717
+ "requestDatatype": "JSON",
1718
+ "responseDatatype": "JSON",
1719
+ "headers": {},
1720
+ "responseObjects": [
1721
+ {
1722
+ "type": "default",
1723
+ "key": "",
1724
+ "mockFile": ""
1725
+ }
1726
+ ]
1727
+ },
1728
+ {
1729
+ "name": "devicemanagerServiceListConfiguration",
1730
+ "protocol": "REST",
1731
+ "method": "GET",
1732
+ "entitypath": "{base_path}/{version}/devicemanager/configuration?{query}",
1733
+ "requestSchema": "schema.json",
1734
+ "responseSchema": "schema.json",
1735
+ "timeout": 0,
1736
+ "sendEmpty": false,
1737
+ "sendGetBody": false,
1738
+ "requestDatatype": "JSON",
1739
+ "responseDatatype": "JSON",
1740
+ "headers": {},
1741
+ "responseObjects": [
1742
+ {
1743
+ "type": "default",
1744
+ "key": "",
1745
+ "mockFile": ""
1746
+ }
1747
+ ]
1748
+ },
1749
+ {
1750
+ "name": "devicemanagerServiceRefUpdate",
1751
+ "protocol": "REST",
1752
+ "method": "POST",
1753
+ "entitypath": "{base_path}/{version}/devicemanager/ref-update?{query}",
1754
+ "requestSchema": "schema.json",
1755
+ "responseSchema": "schema.json",
1756
+ "timeout": 0,
1757
+ "sendEmpty": false,
1758
+ "requestDatatype": "JSON",
1759
+ "responseDatatype": "JSON",
1760
+ "headers": {},
1761
+ "responseObjects": [
1762
+ {
1763
+ "type": "default",
1764
+ "key": "",
1765
+ "mockFile": ""
1766
+ }
1767
+ ]
1768
+ }
1769
+ ]
1770
+ }