@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,2114 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "devicemodelServiceCreateDeviceTagRef",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/devicemodel/device-tag?{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": "devicemodelServiceUpdateDeviceOperationalState",
25
+ "protocol": "REST",
26
+ "method": "PUT",
27
+ "entitypath": "{base_path}/{version}/devicemodel/device-operational-state/{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": "devicemodelServiceDeleteDeviceOperationalState",
45
+ "protocol": "REST",
46
+ "method": "DELETE",
47
+ "entitypath": "{base_path}/{version}/devicemodel/device-operational-state/{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": "devicemodelServiceGetDeviceOperationalState",
65
+ "protocol": "REST",
66
+ "method": "GET",
67
+ "entitypath": "{base_path}/{version}/devicemodel/device-operational-state/{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": "devicemodelServiceBulkListConnector",
86
+ "protocol": "REST",
87
+ "method": "POST",
88
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-connector?{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": "devicemodelServiceExportLicenseFeature",
106
+ "protocol": "REST",
107
+ "method": "POST",
108
+ "entitypath": "{base_path}/{version}/devicemodel/license-feature/export?{query}",
109
+ "requestSchema": "schema.json",
110
+ "responseSchema": "schema.json",
111
+ "timeout": 0,
112
+ "sendEmpty": false,
113
+ "requestDatatype": "JSON",
114
+ "responseDatatype": "JSON",
115
+ "headers": {},
116
+ "responseObjects": [
117
+ {
118
+ "type": "default",
119
+ "key": "",
120
+ "mockFile": "mockdatafiles/devicemodelServiceExportLicenseFeature-default.json"
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "name": "devicemodelServiceCreateLicense",
126
+ "protocol": "REST",
127
+ "method": "POST",
128
+ "entitypath": "{base_path}/{version}/devicemodel/license?{query}",
129
+ "requestSchema": "schema.json",
130
+ "responseSchema": "schema.json",
131
+ "timeout": 0,
132
+ "sendEmpty": false,
133
+ "requestDatatype": "JSON",
134
+ "responseDatatype": "JSON",
135
+ "headers": {},
136
+ "responseObjects": [
137
+ {
138
+ "type": "default",
139
+ "key": "",
140
+ "mockFile": ""
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ "name": "devicemodelServiceListLicense",
146
+ "protocol": "REST",
147
+ "method": "GET",
148
+ "entitypath": "{base_path}/{version}/devicemodel/license?{query}",
149
+ "requestSchema": "schema.json",
150
+ "responseSchema": "schema.json",
151
+ "timeout": 0,
152
+ "sendEmpty": false,
153
+ "sendGetBody": 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": "devicemodelServiceUpdateConnector",
167
+ "protocol": "REST",
168
+ "method": "PUT",
169
+ "entitypath": "{base_path}/{version}/devicemodel/connector/{pathv1}?{query}",
170
+ "requestSchema": "schema.json",
171
+ "responseSchema": "schema.json",
172
+ "timeout": 0,
173
+ "sendEmpty": false,
174
+ "requestDatatype": "JSON",
175
+ "responseDatatype": "JSON",
176
+ "headers": {},
177
+ "responseObjects": [
178
+ {
179
+ "type": "default",
180
+ "key": "",
181
+ "mockFile": ""
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "name": "devicemodelServiceDeleteConnector",
187
+ "protocol": "REST",
188
+ "method": "DELETE",
189
+ "entitypath": "{base_path}/{version}/devicemodel/connector/{pathv1}?{query}",
190
+ "requestSchema": "schema.json",
191
+ "responseSchema": "schema.json",
192
+ "timeout": 0,
193
+ "sendEmpty": false,
194
+ "requestDatatype": "JSON",
195
+ "responseDatatype": "JSON",
196
+ "headers": {},
197
+ "responseObjects": [
198
+ {
199
+ "type": "default",
200
+ "key": "",
201
+ "mockFile": ""
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "name": "devicemodelServiceGetConnector",
207
+ "protocol": "REST",
208
+ "method": "GET",
209
+ "entitypath": "{base_path}/{version}/devicemodel/connector/{pathv1}?{query}",
210
+ "requestSchema": "schema.json",
211
+ "responseSchema": "schema.json",
212
+ "timeout": 0,
213
+ "sendEmpty": false,
214
+ "sendGetBody": 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": "devicemodelServiceCreateLicenseLicenseFeatureRef",
228
+ "protocol": "REST",
229
+ "method": "POST",
230
+ "entitypath": "{base_path}/{version}/devicemodel/license-license-feature?{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": "devicemodelServiceBulkListLicense",
248
+ "protocol": "REST",
249
+ "method": "POST",
250
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-license?{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": "devicemodelServiceExportInterface",
268
+ "protocol": "REST",
269
+ "method": "POST",
270
+ "entitypath": "{base_path}/{version}/devicemodel/interface/export?{query}",
271
+ "requestSchema": "schema.json",
272
+ "responseSchema": "schema.json",
273
+ "timeout": 0,
274
+ "sendEmpty": false,
275
+ "requestDatatype": "JSON",
276
+ "responseDatatype": "JSON",
277
+ "headers": {},
278
+ "responseObjects": [
279
+ {
280
+ "type": "default",
281
+ "key": "",
282
+ "mockFile": "mockdatafiles/devicemodelServiceExportInterface-default.json"
283
+ }
284
+ ]
285
+ },
286
+ {
287
+ "name": "devicemodelServiceSync",
288
+ "protocol": "REST",
289
+ "method": "POST",
290
+ "entitypath": "{base_path}/{version}/devicemodel/sync?{query}",
291
+ "requestSchema": "schema.json",
292
+ "responseSchema": "schema.json",
293
+ "timeout": 0,
294
+ "sendEmpty": false,
295
+ "requestDatatype": "JSON",
296
+ "responseDatatype": "JSON",
297
+ "headers": {},
298
+ "responseObjects": [
299
+ {
300
+ "type": "default",
301
+ "key": "",
302
+ "mockFile": ""
303
+ }
304
+ ]
305
+ },
306
+ {
307
+ "name": "devicemodelServiceBulkExtRefUpdate",
308
+ "protocol": "REST",
309
+ "method": "POST",
310
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-ext-ref-update?{query}",
311
+ "requestSchema": "schema.json",
312
+ "responseSchema": "schema.json",
313
+ "timeout": 0,
314
+ "sendEmpty": false,
315
+ "requestDatatype": "JSON",
316
+ "responseDatatype": "JSON",
317
+ "headers": {},
318
+ "responseObjects": [
319
+ {
320
+ "type": "default",
321
+ "key": "",
322
+ "mockFile": ""
323
+ }
324
+ ]
325
+ },
326
+ {
327
+ "name": "devicemodelServiceExportComponent",
328
+ "protocol": "REST",
329
+ "method": "POST",
330
+ "entitypath": "{base_path}/{version}/devicemodel/component/export?{query}",
331
+ "requestSchema": "schema.json",
332
+ "responseSchema": "schema.json",
333
+ "timeout": 0,
334
+ "sendEmpty": false,
335
+ "requestDatatype": "JSON",
336
+ "responseDatatype": "JSON",
337
+ "headers": {},
338
+ "responseObjects": [
339
+ {
340
+ "type": "default",
341
+ "key": "",
342
+ "mockFile": "mockdatafiles/devicemodelServiceExportComponent-default.json"
343
+ }
344
+ ]
345
+ },
346
+ {
347
+ "name": "devicemodelServiceUpdateDeviceFamily",
348
+ "protocol": "REST",
349
+ "method": "PUT",
350
+ "entitypath": "{base_path}/{version}/devicemodel/device-family/{pathv1}?{query}",
351
+ "requestSchema": "schema.json",
352
+ "responseSchema": "schema.json",
353
+ "timeout": 0,
354
+ "sendEmpty": false,
355
+ "requestDatatype": "JSON",
356
+ "responseDatatype": "JSON",
357
+ "headers": {},
358
+ "responseObjects": [
359
+ {
360
+ "type": "default",
361
+ "key": "",
362
+ "mockFile": ""
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "name": "devicemodelServiceDeleteDeviceFamily",
368
+ "protocol": "REST",
369
+ "method": "DELETE",
370
+ "entitypath": "{base_path}/{version}/devicemodel/device-family/{pathv1}?{query}",
371
+ "requestSchema": "schema.json",
372
+ "responseSchema": "schema.json",
373
+ "timeout": 0,
374
+ "sendEmpty": false,
375
+ "requestDatatype": "JSON",
376
+ "responseDatatype": "JSON",
377
+ "headers": {},
378
+ "responseObjects": [
379
+ {
380
+ "type": "default",
381
+ "key": "",
382
+ "mockFile": ""
383
+ }
384
+ ]
385
+ },
386
+ {
387
+ "name": "devicemodelServiceGetDeviceFamily",
388
+ "protocol": "REST",
389
+ "method": "GET",
390
+ "entitypath": "{base_path}/{version}/devicemodel/device-family/{pathv1}?{query}",
391
+ "requestSchema": "schema.json",
392
+ "responseSchema": "schema.json",
393
+ "timeout": 0,
394
+ "sendEmpty": false,
395
+ "sendGetBody": false,
396
+ "requestDatatype": "JSON",
397
+ "responseDatatype": "JSON",
398
+ "headers": {},
399
+ "responseObjects": [
400
+ {
401
+ "type": "default",
402
+ "key": "",
403
+ "mockFile": ""
404
+ }
405
+ ]
406
+ },
407
+ {
408
+ "name": "devicemodelServiceBulkListCertificate",
409
+ "protocol": "REST",
410
+ "method": "POST",
411
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-certificate?{query}",
412
+ "requestSchema": "schema.json",
413
+ "responseSchema": "schema.json",
414
+ "timeout": 0,
415
+ "sendEmpty": false,
416
+ "requestDatatype": "JSON",
417
+ "responseDatatype": "JSON",
418
+ "headers": {},
419
+ "responseObjects": [
420
+ {
421
+ "type": "default",
422
+ "key": "",
423
+ "mockFile": ""
424
+ }
425
+ ]
426
+ },
427
+ {
428
+ "name": "devicemodelServiceCreateSubinterface",
429
+ "protocol": "REST",
430
+ "method": "POST",
431
+ "entitypath": "{base_path}/{version}/devicemodel/subinterface?{query}",
432
+ "requestSchema": "schema.json",
433
+ "responseSchema": "schema.json",
434
+ "timeout": 0,
435
+ "sendEmpty": false,
436
+ "requestDatatype": "JSON",
437
+ "responseDatatype": "JSON",
438
+ "headers": {},
439
+ "responseObjects": [
440
+ {
441
+ "type": "default",
442
+ "key": "",
443
+ "mockFile": ""
444
+ }
445
+ ]
446
+ },
447
+ {
448
+ "name": "devicemodelServiceListSubinterface",
449
+ "protocol": "REST",
450
+ "method": "GET",
451
+ "entitypath": "{base_path}/{version}/devicemodel/subinterface?{query}",
452
+ "requestSchema": "schema.json",
453
+ "responseSchema": "schema.json",
454
+ "timeout": 0,
455
+ "sendEmpty": false,
456
+ "sendGetBody": false,
457
+ "requestDatatype": "JSON",
458
+ "responseDatatype": "JSON",
459
+ "headers": {},
460
+ "responseObjects": [
461
+ {
462
+ "type": "default",
463
+ "key": "",
464
+ "mockFile": ""
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ "name": "devicemodelServiceBulkListTag",
470
+ "protocol": "REST",
471
+ "method": "POST",
472
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-tag?{query}",
473
+ "requestSchema": "schema.json",
474
+ "responseSchema": "schema.json",
475
+ "timeout": 0,
476
+ "sendEmpty": false,
477
+ "requestDatatype": "JSON",
478
+ "responseDatatype": "JSON",
479
+ "headers": {},
480
+ "responseObjects": [
481
+ {
482
+ "type": "default",
483
+ "key": "",
484
+ "mockFile": ""
485
+ }
486
+ ]
487
+ },
488
+ {
489
+ "name": "devicemodelServiceBulkListCaCertificate",
490
+ "protocol": "REST",
491
+ "method": "POST",
492
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-ca-certificate?{query}",
493
+ "requestSchema": "schema.json",
494
+ "responseSchema": "schema.json",
495
+ "timeout": 0,
496
+ "sendEmpty": false,
497
+ "requestDatatype": "JSON",
498
+ "responseDatatype": "JSON",
499
+ "headers": {},
500
+ "responseObjects": [
501
+ {
502
+ "type": "default",
503
+ "key": "",
504
+ "mockFile": ""
505
+ }
506
+ ]
507
+ },
508
+ {
509
+ "name": "devicemodelServiceUpdateCertificate",
510
+ "protocol": "REST",
511
+ "method": "PUT",
512
+ "entitypath": "{base_path}/{version}/devicemodel/certificate/{pathv1}?{query}",
513
+ "requestSchema": "schema.json",
514
+ "responseSchema": "schema.json",
515
+ "timeout": 0,
516
+ "sendEmpty": false,
517
+ "requestDatatype": "JSON",
518
+ "responseDatatype": "JSON",
519
+ "headers": {},
520
+ "responseObjects": [
521
+ {
522
+ "type": "default",
523
+ "key": "",
524
+ "mockFile": ""
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "name": "devicemodelServiceDeleteCertificate",
530
+ "protocol": "REST",
531
+ "method": "DELETE",
532
+ "entitypath": "{base_path}/{version}/devicemodel/certificate/{pathv1}?{query}",
533
+ "requestSchema": "schema.json",
534
+ "responseSchema": "schema.json",
535
+ "timeout": 0,
536
+ "sendEmpty": false,
537
+ "requestDatatype": "JSON",
538
+ "responseDatatype": "JSON",
539
+ "headers": {},
540
+ "responseObjects": [
541
+ {
542
+ "type": "default",
543
+ "key": "",
544
+ "mockFile": ""
545
+ }
546
+ ]
547
+ },
548
+ {
549
+ "name": "devicemodelServiceGetCertificate",
550
+ "protocol": "REST",
551
+ "method": "GET",
552
+ "entitypath": "{base_path}/{version}/devicemodel/certificate/{pathv1}?{query}",
553
+ "requestSchema": "schema.json",
554
+ "responseSchema": "schema.json",
555
+ "timeout": 0,
556
+ "sendEmpty": false,
557
+ "sendGetBody": false,
558
+ "requestDatatype": "JSON",
559
+ "responseDatatype": "JSON",
560
+ "headers": {},
561
+ "responseObjects": [
562
+ {
563
+ "type": "default",
564
+ "key": "",
565
+ "mockFile": ""
566
+ }
567
+ ]
568
+ },
569
+ {
570
+ "name": "devicemodelServiceCreateLicenseFeature",
571
+ "protocol": "REST",
572
+ "method": "POST",
573
+ "entitypath": "{base_path}/{version}/devicemodel/license-feature?{query}",
574
+ "requestSchema": "schema.json",
575
+ "responseSchema": "schema.json",
576
+ "timeout": 0,
577
+ "sendEmpty": false,
578
+ "requestDatatype": "JSON",
579
+ "responseDatatype": "JSON",
580
+ "headers": {},
581
+ "responseObjects": [
582
+ {
583
+ "type": "default",
584
+ "key": "",
585
+ "mockFile": ""
586
+ }
587
+ ]
588
+ },
589
+ {
590
+ "name": "devicemodelServiceListLicenseFeature",
591
+ "protocol": "REST",
592
+ "method": "GET",
593
+ "entitypath": "{base_path}/{version}/devicemodel/license-feature?{query}",
594
+ "requestSchema": "schema.json",
595
+ "responseSchema": "schema.json",
596
+ "timeout": 0,
597
+ "sendEmpty": false,
598
+ "sendGetBody": false,
599
+ "requestDatatype": "JSON",
600
+ "responseDatatype": "JSON",
601
+ "headers": {},
602
+ "responseObjects": [
603
+ {
604
+ "type": "default",
605
+ "key": "",
606
+ "mockFile": ""
607
+ }
608
+ ]
609
+ },
610
+ {
611
+ "name": "devicemodelServiceCreateComponent",
612
+ "protocol": "REST",
613
+ "method": "POST",
614
+ "entitypath": "{base_path}/{version}/devicemodel/component?{query}",
615
+ "requestSchema": "schema.json",
616
+ "responseSchema": "schema.json",
617
+ "timeout": 0,
618
+ "sendEmpty": false,
619
+ "requestDatatype": "JSON",
620
+ "responseDatatype": "JSON",
621
+ "headers": {},
622
+ "responseObjects": [
623
+ {
624
+ "type": "default",
625
+ "key": "",
626
+ "mockFile": ""
627
+ }
628
+ ]
629
+ },
630
+ {
631
+ "name": "devicemodelServiceListComponent",
632
+ "protocol": "REST",
633
+ "method": "GET",
634
+ "entitypath": "{base_path}/{version}/devicemodel/component?{query}",
635
+ "requestSchema": "schema.json",
636
+ "responseSchema": "schema.json",
637
+ "timeout": 0,
638
+ "sendEmpty": false,
639
+ "sendGetBody": false,
640
+ "requestDatatype": "JSON",
641
+ "responseDatatype": "JSON",
642
+ "headers": {},
643
+ "responseObjects": [
644
+ {
645
+ "type": "default",
646
+ "key": "",
647
+ "mockFile": ""
648
+ }
649
+ ]
650
+ },
651
+ {
652
+ "name": "devicemodelServiceCreateInterface",
653
+ "protocol": "REST",
654
+ "method": "POST",
655
+ "entitypath": "{base_path}/{version}/devicemodel/interface?{query}",
656
+ "requestSchema": "schema.json",
657
+ "responseSchema": "schema.json",
658
+ "timeout": 0,
659
+ "sendEmpty": false,
660
+ "requestDatatype": "JSON",
661
+ "responseDatatype": "JSON",
662
+ "headers": {},
663
+ "responseObjects": [
664
+ {
665
+ "type": "default",
666
+ "key": "",
667
+ "mockFile": ""
668
+ }
669
+ ]
670
+ },
671
+ {
672
+ "name": "devicemodelServiceListInterface",
673
+ "protocol": "REST",
674
+ "method": "GET",
675
+ "entitypath": "{base_path}/{version}/devicemodel/interface?{query}",
676
+ "requestSchema": "schema.json",
677
+ "responseSchema": "schema.json",
678
+ "timeout": 0,
679
+ "sendEmpty": false,
680
+ "sendGetBody": false,
681
+ "requestDatatype": "JSON",
682
+ "responseDatatype": "JSON",
683
+ "headers": {},
684
+ "responseObjects": [
685
+ {
686
+ "type": "default",
687
+ "key": "",
688
+ "mockFile": ""
689
+ }
690
+ ]
691
+ },
692
+ {
693
+ "name": "devicemodelServiceCreateCertificate",
694
+ "protocol": "REST",
695
+ "method": "POST",
696
+ "entitypath": "{base_path}/{version}/devicemodel/certificate?{query}",
697
+ "requestSchema": "schema.json",
698
+ "responseSchema": "schema.json",
699
+ "timeout": 0,
700
+ "sendEmpty": false,
701
+ "requestDatatype": "JSON",
702
+ "responseDatatype": "JSON",
703
+ "headers": {},
704
+ "responseObjects": [
705
+ {
706
+ "type": "default",
707
+ "key": "",
708
+ "mockFile": ""
709
+ }
710
+ ]
711
+ },
712
+ {
713
+ "name": "devicemodelServiceListCertificate",
714
+ "protocol": "REST",
715
+ "method": "GET",
716
+ "entitypath": "{base_path}/{version}/devicemodel/certificate?{query}",
717
+ "requestSchema": "schema.json",
718
+ "responseSchema": "schema.json",
719
+ "timeout": 0,
720
+ "sendEmpty": false,
721
+ "sendGetBody": false,
722
+ "requestDatatype": "JSON",
723
+ "responseDatatype": "JSON",
724
+ "headers": {},
725
+ "responseObjects": [
726
+ {
727
+ "type": "default",
728
+ "key": "",
729
+ "mockFile": ""
730
+ }
731
+ ]
732
+ },
733
+ {
734
+ "name": "devicemodelServiceCreateDeletedResource",
735
+ "protocol": "REST",
736
+ "method": "POST",
737
+ "entitypath": "{base_path}/{version}/devicemodel/deleted-resource?{query}",
738
+ "requestSchema": "schema.json",
739
+ "responseSchema": "schema.json",
740
+ "timeout": 0,
741
+ "sendEmpty": false,
742
+ "requestDatatype": "JSON",
743
+ "responseDatatype": "JSON",
744
+ "headers": {},
745
+ "responseObjects": [
746
+ {
747
+ "type": "default",
748
+ "key": "",
749
+ "mockFile": ""
750
+ }
751
+ ]
752
+ },
753
+ {
754
+ "name": "devicemodelServiceListDeletedResource",
755
+ "protocol": "REST",
756
+ "method": "GET",
757
+ "entitypath": "{base_path}/{version}/devicemodel/deleted-resource?{query}",
758
+ "requestSchema": "schema.json",
759
+ "responseSchema": "schema.json",
760
+ "timeout": 0,
761
+ "sendEmpty": false,
762
+ "sendGetBody": 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": "devicemodelServiceBulkListDeviceView",
776
+ "protocol": "REST",
777
+ "method": "POST",
778
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-device-view?{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": "devicemodelServiceCreateConnector",
796
+ "protocol": "REST",
797
+ "method": "POST",
798
+ "entitypath": "{base_path}/{version}/devicemodel/connector?{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": "devicemodelServiceListConnector",
816
+ "protocol": "REST",
817
+ "method": "GET",
818
+ "entitypath": "{base_path}/{version}/devicemodel/connector?{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": "devicemodelServiceUpdateLastPublishedNotification",
837
+ "protocol": "REST",
838
+ "method": "PUT",
839
+ "entitypath": "{base_path}/{version}/devicemodel/last-published-notification/{pathv1}?{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": "devicemodelServiceDeleteLastPublishedNotification",
857
+ "protocol": "REST",
858
+ "method": "DELETE",
859
+ "entitypath": "{base_path}/{version}/devicemodel/last-published-notification/{pathv1}?{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": "devicemodelServiceGetLastPublishedNotification",
877
+ "protocol": "REST",
878
+ "method": "GET",
879
+ "entitypath": "{base_path}/{version}/devicemodel/last-published-notification/{pathv1}?{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": "devicemodelServiceExportLicense",
898
+ "protocol": "REST",
899
+ "method": "POST",
900
+ "entitypath": "{base_path}/{version}/devicemodel/license/export?{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": "mockdatafiles/devicemodelServiceExportLicense-default.json"
913
+ }
914
+ ]
915
+ },
916
+ {
917
+ "name": "devicemodelServiceUpdateDeletedResource",
918
+ "protocol": "REST",
919
+ "method": "PUT",
920
+ "entitypath": "{base_path}/{version}/devicemodel/deleted-resource/{pathv1}?{query}",
921
+ "requestSchema": "schema.json",
922
+ "responseSchema": "schema.json",
923
+ "timeout": 0,
924
+ "sendEmpty": false,
925
+ "requestDatatype": "JSON",
926
+ "responseDatatype": "JSON",
927
+ "headers": {},
928
+ "responseObjects": [
929
+ {
930
+ "type": "default",
931
+ "key": "",
932
+ "mockFile": ""
933
+ }
934
+ ]
935
+ },
936
+ {
937
+ "name": "devicemodelServiceDeleteDeletedResource",
938
+ "protocol": "REST",
939
+ "method": "DELETE",
940
+ "entitypath": "{base_path}/{version}/devicemodel/deleted-resource/{pathv1}?{query}",
941
+ "requestSchema": "schema.json",
942
+ "responseSchema": "schema.json",
943
+ "timeout": 0,
944
+ "sendEmpty": false,
945
+ "requestDatatype": "JSON",
946
+ "responseDatatype": "JSON",
947
+ "headers": {},
948
+ "responseObjects": [
949
+ {
950
+ "type": "default",
951
+ "key": "",
952
+ "mockFile": ""
953
+ }
954
+ ]
955
+ },
956
+ {
957
+ "name": "devicemodelServiceGetDeletedResource",
958
+ "protocol": "REST",
959
+ "method": "GET",
960
+ "entitypath": "{base_path}/{version}/devicemodel/deleted-resource/{pathv1}?{query}",
961
+ "requestSchema": "schema.json",
962
+ "responseSchema": "schema.json",
963
+ "timeout": 0,
964
+ "sendEmpty": false,
965
+ "sendGetBody": 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": "devicemodelServiceCreateLastPublishedNotification",
979
+ "protocol": "REST",
980
+ "method": "POST",
981
+ "entitypath": "{base_path}/{version}/devicemodel/last-published-notification?{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": "devicemodelServiceListLastPublishedNotification",
999
+ "protocol": "REST",
1000
+ "method": "GET",
1001
+ "entitypath": "{base_path}/{version}/devicemodel/last-published-notification?{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": "devicemodelServiceCreateDeviceOperationalState",
1020
+ "protocol": "REST",
1021
+ "method": "POST",
1022
+ "entitypath": "{base_path}/{version}/devicemodel/device-operational-state?{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": "devicemodelServiceListDeviceOperationalState",
1040
+ "protocol": "REST",
1041
+ "method": "GET",
1042
+ "entitypath": "{base_path}/{version}/devicemodel/device-operational-state?{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": "devicemodelServiceTagDevice",
1061
+ "protocol": "REST",
1062
+ "method": "POST",
1063
+ "entitypath": "{base_path}/{version}/devicemodel/device/tag?{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": "devicemodelServiceBulkRefUpdate",
1081
+ "protocol": "REST",
1082
+ "method": "POST",
1083
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-ref-update?{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": "devicemodelServiceExportDevice",
1101
+ "protocol": "REST",
1102
+ "method": "POST",
1103
+ "entitypath": "{base_path}/{version}/devicemodel/device/export?{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": "mockdatafiles/devicemodelServiceExportDevice-default.json"
1116
+ }
1117
+ ]
1118
+ },
1119
+ {
1120
+ "name": "devicemodelServiceBulkListInterface",
1121
+ "protocol": "REST",
1122
+ "method": "POST",
1123
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-interface?{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": "devicemodelServiceUpdateDevice",
1141
+ "protocol": "REST",
1142
+ "method": "PUT",
1143
+ "entitypath": "{base_path}/{version}/devicemodel/device/{pathv1}?{query}",
1144
+ "requestSchema": "schema.json",
1145
+ "responseSchema": "schema.json",
1146
+ "timeout": 0,
1147
+ "sendEmpty": false,
1148
+ "requestDatatype": "JSON",
1149
+ "responseDatatype": "JSON",
1150
+ "headers": {},
1151
+ "responseObjects": [
1152
+ {
1153
+ "type": "default",
1154
+ "key": "",
1155
+ "mockFile": ""
1156
+ }
1157
+ ]
1158
+ },
1159
+ {
1160
+ "name": "devicemodelServiceDeleteDevice",
1161
+ "protocol": "REST",
1162
+ "method": "DELETE",
1163
+ "entitypath": "{base_path}/{version}/devicemodel/device/{pathv1}?{query}",
1164
+ "requestSchema": "schema.json",
1165
+ "responseSchema": "schema.json",
1166
+ "timeout": 0,
1167
+ "sendEmpty": false,
1168
+ "requestDatatype": "JSON",
1169
+ "responseDatatype": "JSON",
1170
+ "headers": {},
1171
+ "responseObjects": [
1172
+ {
1173
+ "type": "default",
1174
+ "key": "",
1175
+ "mockFile": ""
1176
+ }
1177
+ ]
1178
+ },
1179
+ {
1180
+ "name": "devicemodelServiceGetDevice",
1181
+ "protocol": "REST",
1182
+ "method": "GET",
1183
+ "entitypath": "{base_path}/{version}/devicemodel/device/{pathv1}?{query}",
1184
+ "requestSchema": "schema.json",
1185
+ "responseSchema": "schema.json",
1186
+ "timeout": 0,
1187
+ "sendEmpty": false,
1188
+ "sendGetBody": 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": "devicemodelServiceDeleteDeviceTagRef",
1202
+ "protocol": "REST",
1203
+ "method": "DELETE",
1204
+ "entitypath": "{base_path}/{version}/devicemodel/device-tag/{pathv1}?{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": "devicemodelServiceUpdateTag",
1222
+ "protocol": "REST",
1223
+ "method": "PUT",
1224
+ "entitypath": "{base_path}/{version}/devicemodel/tag/{pathv1}?{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": "devicemodelServiceDeleteTag",
1242
+ "protocol": "REST",
1243
+ "method": "DELETE",
1244
+ "entitypath": "{base_path}/{version}/devicemodel/tag/{pathv1}?{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": "devicemodelServiceGetTag",
1262
+ "protocol": "REST",
1263
+ "method": "GET",
1264
+ "entitypath": "{base_path}/{version}/devicemodel/tag/{pathv1}?{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": "devicemodelServiceRefUpdate",
1283
+ "protocol": "REST",
1284
+ "method": "POST",
1285
+ "entitypath": "{base_path}/{version}/devicemodel/ref-update?{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": "devicemodelServiceUpdateInterface",
1303
+ "protocol": "REST",
1304
+ "method": "PUT",
1305
+ "entitypath": "{base_path}/{version}/devicemodel/interface/{pathv1}?{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": "devicemodelServiceDeleteInterface",
1323
+ "protocol": "REST",
1324
+ "method": "DELETE",
1325
+ "entitypath": "{base_path}/{version}/devicemodel/interface/{pathv1}?{query}",
1326
+ "requestSchema": "schema.json",
1327
+ "responseSchema": "schema.json",
1328
+ "timeout": 0,
1329
+ "sendEmpty": false,
1330
+ "requestDatatype": "JSON",
1331
+ "responseDatatype": "JSON",
1332
+ "headers": {},
1333
+ "responseObjects": [
1334
+ {
1335
+ "type": "default",
1336
+ "key": "",
1337
+ "mockFile": ""
1338
+ }
1339
+ ]
1340
+ },
1341
+ {
1342
+ "name": "devicemodelServiceGetInterface",
1343
+ "protocol": "REST",
1344
+ "method": "GET",
1345
+ "entitypath": "{base_path}/{version}/devicemodel/interface/{pathv1}?{query}",
1346
+ "requestSchema": "schema.json",
1347
+ "responseSchema": "schema.json",
1348
+ "timeout": 0,
1349
+ "sendEmpty": false,
1350
+ "sendGetBody": 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": "devicemodelServiceListDeviceView",
1364
+ "protocol": "REST",
1365
+ "method": "GET",
1366
+ "entitypath": "{base_path}/{version}/devicemodel/device-view?{query}",
1367
+ "requestSchema": "schema.json",
1368
+ "responseSchema": "schema.json",
1369
+ "timeout": 0,
1370
+ "sendEmpty": false,
1371
+ "sendGetBody": false,
1372
+ "requestDatatype": "JSON",
1373
+ "responseDatatype": "JSON",
1374
+ "headers": {},
1375
+ "responseObjects": [
1376
+ {
1377
+ "type": "default",
1378
+ "key": "",
1379
+ "mockFile": ""
1380
+ }
1381
+ ]
1382
+ },
1383
+ {
1384
+ "name": "devicemodelServiceBulkListDeviceOperationalState",
1385
+ "protocol": "REST",
1386
+ "method": "POST",
1387
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-device-operational-state?{query}",
1388
+ "requestSchema": "schema.json",
1389
+ "responseSchema": "schema.json",
1390
+ "timeout": 0,
1391
+ "sendEmpty": 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": "devicemodelServiceUpdateSubinterface",
1405
+ "protocol": "REST",
1406
+ "method": "PUT",
1407
+ "entitypath": "{base_path}/{version}/devicemodel/subinterface/{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": "devicemodelServiceDeleteSubinterface",
1425
+ "protocol": "REST",
1426
+ "method": "DELETE",
1427
+ "entitypath": "{base_path}/{version}/devicemodel/subinterface/{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": "devicemodelServiceGetSubinterface",
1445
+ "protocol": "REST",
1446
+ "method": "GET",
1447
+ "entitypath": "{base_path}/{version}/devicemodel/subinterface/{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": "devicemodelServiceBulkListDeletedResource",
1466
+ "protocol": "REST",
1467
+ "method": "POST",
1468
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-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": "devicemodelServiceUpdateCaCertificate",
1486
+ "protocol": "REST",
1487
+ "method": "PUT",
1488
+ "entitypath": "{base_path}/{version}/devicemodel/ca-certificate/{pathv1}?{query}",
1489
+ "requestSchema": "schema.json",
1490
+ "responseSchema": "schema.json",
1491
+ "timeout": 0,
1492
+ "sendEmpty": false,
1493
+ "requestDatatype": "JSON",
1494
+ "responseDatatype": "JSON",
1495
+ "headers": {},
1496
+ "responseObjects": [
1497
+ {
1498
+ "type": "default",
1499
+ "key": "",
1500
+ "mockFile": ""
1501
+ }
1502
+ ]
1503
+ },
1504
+ {
1505
+ "name": "devicemodelServiceDeleteCaCertificate",
1506
+ "protocol": "REST",
1507
+ "method": "DELETE",
1508
+ "entitypath": "{base_path}/{version}/devicemodel/ca-certificate/{pathv1}?{query}",
1509
+ "requestSchema": "schema.json",
1510
+ "responseSchema": "schema.json",
1511
+ "timeout": 0,
1512
+ "sendEmpty": false,
1513
+ "requestDatatype": "JSON",
1514
+ "responseDatatype": "JSON",
1515
+ "headers": {},
1516
+ "responseObjects": [
1517
+ {
1518
+ "type": "default",
1519
+ "key": "",
1520
+ "mockFile": ""
1521
+ }
1522
+ ]
1523
+ },
1524
+ {
1525
+ "name": "devicemodelServiceGetCaCertificate",
1526
+ "protocol": "REST",
1527
+ "method": "GET",
1528
+ "entitypath": "{base_path}/{version}/devicemodel/ca-certificate/{pathv1}?{query}",
1529
+ "requestSchema": "schema.json",
1530
+ "responseSchema": "schema.json",
1531
+ "timeout": 0,
1532
+ "sendEmpty": false,
1533
+ "sendGetBody": false,
1534
+ "requestDatatype": "JSON",
1535
+ "responseDatatype": "JSON",
1536
+ "headers": {},
1537
+ "responseObjects": [
1538
+ {
1539
+ "type": "default",
1540
+ "key": "",
1541
+ "mockFile": ""
1542
+ }
1543
+ ]
1544
+ },
1545
+ {
1546
+ "name": "devicemodelServiceCreateDeviceFamily",
1547
+ "protocol": "REST",
1548
+ "method": "POST",
1549
+ "entitypath": "{base_path}/{version}/devicemodel/device-family?{query}",
1550
+ "requestSchema": "schema.json",
1551
+ "responseSchema": "schema.json",
1552
+ "timeout": 0,
1553
+ "sendEmpty": false,
1554
+ "requestDatatype": "JSON",
1555
+ "responseDatatype": "JSON",
1556
+ "headers": {},
1557
+ "responseObjects": [
1558
+ {
1559
+ "type": "default",
1560
+ "key": "",
1561
+ "mockFile": ""
1562
+ }
1563
+ ]
1564
+ },
1565
+ {
1566
+ "name": "devicemodelServiceListDeviceFamily",
1567
+ "protocol": "REST",
1568
+ "method": "GET",
1569
+ "entitypath": "{base_path}/{version}/devicemodel/device-family?{query}",
1570
+ "requestSchema": "schema.json",
1571
+ "responseSchema": "schema.json",
1572
+ "timeout": 0,
1573
+ "sendEmpty": false,
1574
+ "sendGetBody": 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": "devicemodelServiceCreateTag",
1588
+ "protocol": "REST",
1589
+ "method": "POST",
1590
+ "entitypath": "{base_path}/{version}/devicemodel/tag?{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": "devicemodelServiceListTag",
1608
+ "protocol": "REST",
1609
+ "method": "GET",
1610
+ "entitypath": "{base_path}/{version}/devicemodel/tag?{query}",
1611
+ "requestSchema": "schema.json",
1612
+ "responseSchema": "schema.json",
1613
+ "timeout": 0,
1614
+ "sendEmpty": false,
1615
+ "sendGetBody": false,
1616
+ "requestDatatype": "JSON",
1617
+ "responseDatatype": "JSON",
1618
+ "headers": {},
1619
+ "responseObjects": [
1620
+ {
1621
+ "type": "default",
1622
+ "key": "",
1623
+ "mockFile": ""
1624
+ }
1625
+ ]
1626
+ },
1627
+ {
1628
+ "name": "devicemodelServiceDeleteLicenseLicenseFeatureRef",
1629
+ "protocol": "REST",
1630
+ "method": "DELETE",
1631
+ "entitypath": "{base_path}/{version}/devicemodel/license-license-feature/{pathv1}?{query}",
1632
+ "requestSchema": "schema.json",
1633
+ "responseSchema": "schema.json",
1634
+ "timeout": 0,
1635
+ "sendEmpty": 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": "devicemodelServiceBulkListLicenseFeature",
1649
+ "protocol": "REST",
1650
+ "method": "POST",
1651
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-license-feature?{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": "devicemodelServiceUntagDevice",
1669
+ "protocol": "REST",
1670
+ "method": "POST",
1671
+ "entitypath": "{base_path}/{version}/devicemodel/device/untag?{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": "devicemodelServiceUpdateLicense",
1689
+ "protocol": "REST",
1690
+ "method": "PUT",
1691
+ "entitypath": "{base_path}/{version}/devicemodel/license/{pathv1}?{query}",
1692
+ "requestSchema": "schema.json",
1693
+ "responseSchema": "schema.json",
1694
+ "timeout": 0,
1695
+ "sendEmpty": false,
1696
+ "requestDatatype": "JSON",
1697
+ "responseDatatype": "JSON",
1698
+ "headers": {},
1699
+ "responseObjects": [
1700
+ {
1701
+ "type": "default",
1702
+ "key": "",
1703
+ "mockFile": ""
1704
+ }
1705
+ ]
1706
+ },
1707
+ {
1708
+ "name": "devicemodelServiceDeleteLicense",
1709
+ "protocol": "REST",
1710
+ "method": "DELETE",
1711
+ "entitypath": "{base_path}/{version}/devicemodel/license/{pathv1}?{query}",
1712
+ "requestSchema": "schema.json",
1713
+ "responseSchema": "schema.json",
1714
+ "timeout": 0,
1715
+ "sendEmpty": false,
1716
+ "requestDatatype": "JSON",
1717
+ "responseDatatype": "JSON",
1718
+ "headers": {},
1719
+ "responseObjects": [
1720
+ {
1721
+ "type": "default",
1722
+ "key": "",
1723
+ "mockFile": ""
1724
+ }
1725
+ ]
1726
+ },
1727
+ {
1728
+ "name": "devicemodelServiceGetLicense",
1729
+ "protocol": "REST",
1730
+ "method": "GET",
1731
+ "entitypath": "{base_path}/{version}/devicemodel/license/{pathv1}?{query}",
1732
+ "requestSchema": "schema.json",
1733
+ "responseSchema": "schema.json",
1734
+ "timeout": 0,
1735
+ "sendEmpty": false,
1736
+ "sendGetBody": false,
1737
+ "requestDatatype": "JSON",
1738
+ "responseDatatype": "JSON",
1739
+ "headers": {},
1740
+ "responseObjects": [
1741
+ {
1742
+ "type": "default",
1743
+ "key": "",
1744
+ "mockFile": ""
1745
+ }
1746
+ ]
1747
+ },
1748
+ {
1749
+ "name": "devicemodelServiceExportDeviceView",
1750
+ "protocol": "REST",
1751
+ "method": "POST",
1752
+ "entitypath": "{base_path}/{version}/devicemodel/device-view/export?{query}",
1753
+ "requestSchema": "schema.json",
1754
+ "responseSchema": "schema.json",
1755
+ "timeout": 0,
1756
+ "sendEmpty": false,
1757
+ "requestDatatype": "JSON",
1758
+ "responseDatatype": "JSON",
1759
+ "headers": {},
1760
+ "responseObjects": [
1761
+ {
1762
+ "type": "default",
1763
+ "key": "",
1764
+ "mockFile": "mockdatafiles/devicemodelServiceExportDeviceView-default.json"
1765
+ }
1766
+ ]
1767
+ },
1768
+ {
1769
+ "name": "devicemodelServiceBulkListDevice",
1770
+ "protocol": "REST",
1771
+ "method": "POST",
1772
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-device?{query}",
1773
+ "requestSchema": "schema.json",
1774
+ "responseSchema": "schema.json",
1775
+ "timeout": 0,
1776
+ "sendEmpty": false,
1777
+ "requestDatatype": "JSON",
1778
+ "responseDatatype": "JSON",
1779
+ "headers": {},
1780
+ "responseObjects": [
1781
+ {
1782
+ "type": "default",
1783
+ "key": "",
1784
+ "mockFile": ""
1785
+ }
1786
+ ]
1787
+ },
1788
+ {
1789
+ "name": "devicemodelServiceExtRefUpdate",
1790
+ "protocol": "REST",
1791
+ "method": "POST",
1792
+ "entitypath": "{base_path}/{version}/devicemodel/ext-ref-update?{query}",
1793
+ "requestSchema": "schema.json",
1794
+ "responseSchema": "schema.json",
1795
+ "timeout": 0,
1796
+ "sendEmpty": false,
1797
+ "requestDatatype": "JSON",
1798
+ "responseDatatype": "JSON",
1799
+ "headers": {},
1800
+ "responseObjects": [
1801
+ {
1802
+ "type": "default",
1803
+ "key": "",
1804
+ "mockFile": ""
1805
+ }
1806
+ ]
1807
+ },
1808
+ {
1809
+ "name": "devicemodelServiceBulkListDeviceFamily",
1810
+ "protocol": "REST",
1811
+ "method": "POST",
1812
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-device-family?{query}",
1813
+ "requestSchema": "schema.json",
1814
+ "responseSchema": "schema.json",
1815
+ "timeout": 0,
1816
+ "sendEmpty": false,
1817
+ "requestDatatype": "JSON",
1818
+ "responseDatatype": "JSON",
1819
+ "headers": {},
1820
+ "responseObjects": [
1821
+ {
1822
+ "type": "default",
1823
+ "key": "",
1824
+ "mockFile": ""
1825
+ }
1826
+ ]
1827
+ },
1828
+ {
1829
+ "name": "devicemodelServiceBulkListComponent",
1830
+ "protocol": "REST",
1831
+ "method": "POST",
1832
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-component?{query}",
1833
+ "requestSchema": "schema.json",
1834
+ "responseSchema": "schema.json",
1835
+ "timeout": 0,
1836
+ "sendEmpty": false,
1837
+ "requestDatatype": "JSON",
1838
+ "responseDatatype": "JSON",
1839
+ "headers": {},
1840
+ "responseObjects": [
1841
+ {
1842
+ "type": "default",
1843
+ "key": "",
1844
+ "mockFile": ""
1845
+ }
1846
+ ]
1847
+ },
1848
+ {
1849
+ "name": "devicemodelServiceUpdateLicenseFeature",
1850
+ "protocol": "REST",
1851
+ "method": "PUT",
1852
+ "entitypath": "{base_path}/{version}/devicemodel/license-feature/{pathv1}?{query}",
1853
+ "requestSchema": "schema.json",
1854
+ "responseSchema": "schema.json",
1855
+ "timeout": 0,
1856
+ "sendEmpty": false,
1857
+ "requestDatatype": "JSON",
1858
+ "responseDatatype": "JSON",
1859
+ "headers": {},
1860
+ "responseObjects": [
1861
+ {
1862
+ "type": "default",
1863
+ "key": "",
1864
+ "mockFile": ""
1865
+ }
1866
+ ]
1867
+ },
1868
+ {
1869
+ "name": "devicemodelServiceDeleteLicenseFeature",
1870
+ "protocol": "REST",
1871
+ "method": "DELETE",
1872
+ "entitypath": "{base_path}/{version}/devicemodel/license-feature/{pathv1}?{query}",
1873
+ "requestSchema": "schema.json",
1874
+ "responseSchema": "schema.json",
1875
+ "timeout": 0,
1876
+ "sendEmpty": false,
1877
+ "requestDatatype": "JSON",
1878
+ "responseDatatype": "JSON",
1879
+ "headers": {},
1880
+ "responseObjects": [
1881
+ {
1882
+ "type": "default",
1883
+ "key": "",
1884
+ "mockFile": ""
1885
+ }
1886
+ ]
1887
+ },
1888
+ {
1889
+ "name": "devicemodelServiceGetLicenseFeature",
1890
+ "protocol": "REST",
1891
+ "method": "GET",
1892
+ "entitypath": "{base_path}/{version}/devicemodel/license-feature/{pathv1}?{query}",
1893
+ "requestSchema": "schema.json",
1894
+ "responseSchema": "schema.json",
1895
+ "timeout": 0,
1896
+ "sendEmpty": false,
1897
+ "sendGetBody": false,
1898
+ "requestDatatype": "JSON",
1899
+ "responseDatatype": "JSON",
1900
+ "headers": {},
1901
+ "responseObjects": [
1902
+ {
1903
+ "type": "default",
1904
+ "key": "",
1905
+ "mockFile": ""
1906
+ }
1907
+ ]
1908
+ },
1909
+ {
1910
+ "name": "devicemodelServiceGetDeviceView",
1911
+ "protocol": "REST",
1912
+ "method": "GET",
1913
+ "entitypath": "{base_path}/{version}/devicemodel/device-view/{pathv1}?{query}",
1914
+ "requestSchema": "schema.json",
1915
+ "responseSchema": "schema.json",
1916
+ "timeout": 0,
1917
+ "sendEmpty": false,
1918
+ "sendGetBody": false,
1919
+ "requestDatatype": "JSON",
1920
+ "responseDatatype": "JSON",
1921
+ "headers": {},
1922
+ "responseObjects": [
1923
+ {
1924
+ "type": "default",
1925
+ "key": "",
1926
+ "mockFile": ""
1927
+ }
1928
+ ]
1929
+ },
1930
+ {
1931
+ "name": "devicemodelServiceCreateDevice",
1932
+ "protocol": "REST",
1933
+ "method": "POST",
1934
+ "entitypath": "{base_path}/{version}/devicemodel/device?{query}",
1935
+ "requestSchema": "schema.json",
1936
+ "responseSchema": "schema.json",
1937
+ "timeout": 0,
1938
+ "sendEmpty": false,
1939
+ "requestDatatype": "JSON",
1940
+ "responseDatatype": "JSON",
1941
+ "headers": {},
1942
+ "responseObjects": [
1943
+ {
1944
+ "type": "default",
1945
+ "key": "",
1946
+ "mockFile": ""
1947
+ }
1948
+ ]
1949
+ },
1950
+ {
1951
+ "name": "devicemodelServiceListDevice",
1952
+ "protocol": "REST",
1953
+ "method": "GET",
1954
+ "entitypath": "{base_path}/{version}/devicemodel/device?{query}",
1955
+ "requestSchema": "schema.json",
1956
+ "responseSchema": "schema.json",
1957
+ "timeout": 0,
1958
+ "sendEmpty": false,
1959
+ "sendGetBody": false,
1960
+ "requestDatatype": "JSON",
1961
+ "responseDatatype": "JSON",
1962
+ "headers": {},
1963
+ "responseObjects": [
1964
+ {
1965
+ "type": "default",
1966
+ "key": "",
1967
+ "mockFile": ""
1968
+ }
1969
+ ]
1970
+ },
1971
+ {
1972
+ "name": "devicemodelServiceBulkListSubinterface",
1973
+ "protocol": "REST",
1974
+ "method": "POST",
1975
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-subinterface?{query}",
1976
+ "requestSchema": "schema.json",
1977
+ "responseSchema": "schema.json",
1978
+ "timeout": 0,
1979
+ "sendEmpty": false,
1980
+ "requestDatatype": "JSON",
1981
+ "responseDatatype": "JSON",
1982
+ "headers": {},
1983
+ "responseObjects": [
1984
+ {
1985
+ "type": "default",
1986
+ "key": "",
1987
+ "mockFile": ""
1988
+ }
1989
+ ]
1990
+ },
1991
+ {
1992
+ "name": "devicemodelServiceBulkListLastPublishedNotification",
1993
+ "protocol": "REST",
1994
+ "method": "POST",
1995
+ "entitypath": "{base_path}/{version}/devicemodel/bulk-list-last-published-notification?{query}",
1996
+ "requestSchema": "schema.json",
1997
+ "responseSchema": "schema.json",
1998
+ "timeout": 0,
1999
+ "sendEmpty": false,
2000
+ "requestDatatype": "JSON",
2001
+ "responseDatatype": "JSON",
2002
+ "headers": {},
2003
+ "responseObjects": [
2004
+ {
2005
+ "type": "default",
2006
+ "key": "",
2007
+ "mockFile": ""
2008
+ }
2009
+ ]
2010
+ },
2011
+ {
2012
+ "name": "devicemodelServiceUpdateComponent",
2013
+ "protocol": "REST",
2014
+ "method": "PUT",
2015
+ "entitypath": "{base_path}/{version}/devicemodel/component/{pathv1}?{query}",
2016
+ "requestSchema": "schema.json",
2017
+ "responseSchema": "schema.json",
2018
+ "timeout": 0,
2019
+ "sendEmpty": false,
2020
+ "requestDatatype": "JSON",
2021
+ "responseDatatype": "JSON",
2022
+ "headers": {},
2023
+ "responseObjects": [
2024
+ {
2025
+ "type": "default",
2026
+ "key": "",
2027
+ "mockFile": ""
2028
+ }
2029
+ ]
2030
+ },
2031
+ {
2032
+ "name": "devicemodelServiceDeleteComponent",
2033
+ "protocol": "REST",
2034
+ "method": "DELETE",
2035
+ "entitypath": "{base_path}/{version}/devicemodel/component/{pathv1}?{query}",
2036
+ "requestSchema": "schema.json",
2037
+ "responseSchema": "schema.json",
2038
+ "timeout": 0,
2039
+ "sendEmpty": false,
2040
+ "requestDatatype": "JSON",
2041
+ "responseDatatype": "JSON",
2042
+ "headers": {},
2043
+ "responseObjects": [
2044
+ {
2045
+ "type": "default",
2046
+ "key": "",
2047
+ "mockFile": ""
2048
+ }
2049
+ ]
2050
+ },
2051
+ {
2052
+ "name": "devicemodelServiceGetComponent",
2053
+ "protocol": "REST",
2054
+ "method": "GET",
2055
+ "entitypath": "{base_path}/{version}/devicemodel/component/{pathv1}?{query}",
2056
+ "requestSchema": "schema.json",
2057
+ "responseSchema": "schema.json",
2058
+ "timeout": 0,
2059
+ "sendEmpty": false,
2060
+ "sendGetBody": false,
2061
+ "requestDatatype": "JSON",
2062
+ "responseDatatype": "JSON",
2063
+ "headers": {},
2064
+ "responseObjects": [
2065
+ {
2066
+ "type": "default",
2067
+ "key": "",
2068
+ "mockFile": ""
2069
+ }
2070
+ ]
2071
+ },
2072
+ {
2073
+ "name": "devicemodelServiceCreateCaCertificate",
2074
+ "protocol": "REST",
2075
+ "method": "POST",
2076
+ "entitypath": "{base_path}/{version}/devicemodel/ca-certificate?{query}",
2077
+ "requestSchema": "schema.json",
2078
+ "responseSchema": "schema.json",
2079
+ "timeout": 0,
2080
+ "sendEmpty": false,
2081
+ "requestDatatype": "JSON",
2082
+ "responseDatatype": "JSON",
2083
+ "headers": {},
2084
+ "responseObjects": [
2085
+ {
2086
+ "type": "default",
2087
+ "key": "",
2088
+ "mockFile": ""
2089
+ }
2090
+ ]
2091
+ },
2092
+ {
2093
+ "name": "devicemodelServiceListCaCertificate",
2094
+ "protocol": "REST",
2095
+ "method": "GET",
2096
+ "entitypath": "{base_path}/{version}/devicemodel/ca-certificate?{query}",
2097
+ "requestSchema": "schema.json",
2098
+ "responseSchema": "schema.json",
2099
+ "timeout": 0,
2100
+ "sendEmpty": false,
2101
+ "sendGetBody": false,
2102
+ "requestDatatype": "JSON",
2103
+ "responseDatatype": "JSON",
2104
+ "headers": {},
2105
+ "responseObjects": [
2106
+ {
2107
+ "type": "default",
2108
+ "key": "",
2109
+ "mockFile": ""
2110
+ }
2111
+ ]
2112
+ }
2113
+ ]
2114
+ }