@itentialopensource/adapter-sectigo_certification_manager 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 (112) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +45 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +1323 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +13 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +646 -0
  13. package/README.md +343 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +18 -0
  16. package/TAB1.md +10 -0
  17. package/TAB2.md +325 -0
  18. package/TROUBLESHOOT.md +47 -0
  19. package/adapter.js +20171 -0
  20. package/adapterBase.js +1452 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +50 -0
  24. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  25. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  26. package/entities/.system/schema.json +19 -0
  27. package/entities/.system/schemaTokenReq.json +53 -0
  28. package/entities/.system/schemaTokenResp.json +53 -0
  29. package/entities/ACMEEVDetailsValidation/action.json +24 -0
  30. package/entities/ACMEEVDetailsValidation/schema.json +19 -0
  31. package/entities/Administrators/action.json +230 -0
  32. package/entities/Administrators/schema.json +29 -0
  33. package/entities/AssignmentRules/action.json +127 -0
  34. package/entities/AssignmentRules/schema.json +24 -0
  35. package/entities/AzureAccounts/action.json +67 -0
  36. package/entities/AzureAccounts/schema.json +21 -0
  37. package/entities/CertificateBuckets/action.json +207 -0
  38. package/entities/CertificateBuckets/schema.json +28 -0
  39. package/entities/ClientCertificates/action.json +270 -0
  40. package/entities/ClientCertificates/schema.json +31 -0
  41. package/entities/CustomFields/action.json +106 -0
  42. package/entities/CustomFields/schema.json +23 -0
  43. package/entities/DeviceCertificates/action.json +289 -0
  44. package/entities/DeviceCertificates/schema.json +32 -0
  45. package/entities/DomainControlValidation/action.json +265 -0
  46. package/entities/DomainControlValidation/schema.json +31 -0
  47. package/entities/Domains/action.json +206 -0
  48. package/entities/Domains/schema.json +28 -0
  49. package/entities/MSADDiscoveryTasks/action.json +126 -0
  50. package/entities/MSADDiscoveryTasks/schema.json +24 -0
  51. package/entities/MSAgents/action.json +106 -0
  52. package/entities/MSAgents/schema.json +23 -0
  53. package/entities/NetworkAgents/action.json +250 -0
  54. package/entities/NetworkAgents/schema.json +30 -0
  55. package/entities/NetworkDiscoveryTasks/action.json +126 -0
  56. package/entities/NetworkDiscoveryTasks/schema.json +24 -0
  57. package/entities/Notifications/action.json +106 -0
  58. package/entities/Notifications/schema.json +23 -0
  59. package/entities/Operations/action.json +66 -0
  60. package/entities/Operations/schema.json +21 -0
  61. package/entities/Organizations/action.json +148 -0
  62. package/entities/Organizations/schema.json +36 -0
  63. package/entities/Persons/action.json +209 -0
  64. package/entities/Persons/schema.json +28 -0
  65. package/entities/Reports/action.json +104 -0
  66. package/entities/Reports/schema.json +34 -0
  67. package/entities/SSLCertificates/action.json +370 -0
  68. package/entities/SSLCertificates/schema.json +36 -0
  69. package/entities/SectigoPublicACMEAccounts/action.json +208 -0
  70. package/entities/SectigoPublicACMEAccounts/schema.json +28 -0
  71. package/entities/SectigoPublicACMEServers/action.json +25 -0
  72. package/entities/SectigoPublicACMEServers/schema.json +19 -0
  73. package/entities/TemplateAdministrators/action.json +106 -0
  74. package/entities/TemplateAdministrators/schema.json +23 -0
  75. package/entities/UniversalACMEAccounts/action.json +147 -0
  76. package/entities/UniversalACMEAccounts/schema.json +25 -0
  77. package/error.json +190 -0
  78. package/metadata.json +81 -0
  79. package/package.json +81 -0
  80. package/pronghorn.json +11368 -0
  81. package/propertiesDecorators.json +14 -0
  82. package/propertiesSchema.json +1574 -0
  83. package/refs?service=git-upload-pack +0 -0
  84. package/report/Sectigo-Certificate-Management-OpenAPI.json +20192 -0
  85. package/report/adapterInfo.json +10 -0
  86. package/report/auto-adapter-openapi.json +8898 -0
  87. package/report/creationReport.json +1485 -0
  88. package/sampleProperties.json +265 -0
  89. package/test/integration/adapterTestBasicGet.js +83 -0
  90. package/test/integration/adapterTestConnectivity.js +118 -0
  91. package/test/integration/adapterTestIntegration.js +5256 -0
  92. package/test/unit/adapterBaseTestUnit.js +1024 -0
  93. package/test/unit/adapterTestUnit.js +7204 -0
  94. package/utils/adapterInfo.js +206 -0
  95. package/utils/addAuth.js +94 -0
  96. package/utils/artifactize.js +146 -0
  97. package/utils/basicGet.js +50 -0
  98. package/utils/checkMigrate.js +63 -0
  99. package/utils/entitiesToDB.js +179 -0
  100. package/utils/findPath.js +74 -0
  101. package/utils/methodDocumentor.js +273 -0
  102. package/utils/modify.js +152 -0
  103. package/utils/packModificationScript.js +35 -0
  104. package/utils/patches2bundledDeps.js +90 -0
  105. package/utils/pre-commit.sh +32 -0
  106. package/utils/removeHooks.js +20 -0
  107. package/utils/setup.js +33 -0
  108. package/utils/taskMover.js +309 -0
  109. package/utils/tbScript.js +239 -0
  110. package/utils/tbUtils.js +489 -0
  111. package/utils/testRunner.js +298 -0
  112. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,1485 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 16
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 6
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 21
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "^5.10.1"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 78
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 20172
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 186
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 186
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 344
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 647
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 48
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 212
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 208
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 14
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 7205
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 458
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 5257
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 195
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for SectigoPublicACMEAccounts entity",
117
+ "value": 10
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for ClientCertificates entity",
122
+ "value": 13
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for MSAgents entity",
127
+ "value": 5
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for DomainControlValidation entity",
132
+ "value": 13
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for AssignmentRules entity",
137
+ "value": 6
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for TemplateAdministrators entity",
142
+ "value": 5
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for SSLCertificates entity",
147
+ "value": 18
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for Administrators entity",
152
+ "value": 11
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for MSADDiscoveryTasks entity",
157
+ "value": 6
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for AzureAccounts entity",
162
+ "value": 3
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for NetworkDiscoveryTasks entity",
167
+ "value": 6
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for Reports entity",
172
+ "value": 5
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for UniversalACMEAccounts entity",
177
+ "value": 7
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for Domains entity",
182
+ "value": 10
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for Organizations entity",
187
+ "value": 7
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for CustomFields entity",
192
+ "value": 5
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for DeviceCertificates entity",
197
+ "value": 14
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for NetworkAgents entity",
202
+ "value": 12
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for CertificateBuckets entity",
207
+ "value": 10
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for Notifications entity",
212
+ "value": 5
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Number of actions for Persons entity",
217
+ "value": 10
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Number of actions for SectigoPublicACMEServers entity",
222
+ "value": 1
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Number of actions for Operations entity",
227
+ "value": 3
228
+ },
229
+ {
230
+ "owner": "actionJson",
231
+ "description": "Number of actions for ACMEEVDetailsValidation entity",
232
+ "value": 1
233
+ },
234
+ {
235
+ "owner": "actionJson",
236
+ "description": "Total number of actions",
237
+ "value": 186
238
+ },
239
+ {
240
+ "owner": "actionJson",
241
+ "description": "Total number of entities",
242
+ "value": 24
243
+ },
244
+ {
245
+ "owner": "schemaJson",
246
+ "description": "Number of schemas for SectigoPublicACMEAccounts entity",
247
+ "value": 1
248
+ },
249
+ {
250
+ "owner": "schemaJson",
251
+ "description": "Number of schemas for ClientCertificates entity",
252
+ "value": 1
253
+ },
254
+ {
255
+ "owner": "schemaJson",
256
+ "description": "Number of schemas for MSAgents entity",
257
+ "value": 1
258
+ },
259
+ {
260
+ "owner": "schemaJson",
261
+ "description": "Number of schemas for DomainControlValidation entity",
262
+ "value": 1
263
+ },
264
+ {
265
+ "owner": "schemaJson",
266
+ "description": "Number of schemas for AssignmentRules entity",
267
+ "value": 1
268
+ },
269
+ {
270
+ "owner": "schemaJson",
271
+ "description": "Number of schemas for TemplateAdministrators entity",
272
+ "value": 1
273
+ },
274
+ {
275
+ "owner": "schemaJson",
276
+ "description": "Number of schemas for SSLCertificates entity",
277
+ "value": 1
278
+ },
279
+ {
280
+ "owner": "schemaJson",
281
+ "description": "Number of schemas for Administrators entity",
282
+ "value": 1
283
+ },
284
+ {
285
+ "owner": "schemaJson",
286
+ "description": "Number of schemas for MSADDiscoveryTasks entity",
287
+ "value": 1
288
+ },
289
+ {
290
+ "owner": "schemaJson",
291
+ "description": "Number of schemas for AzureAccounts entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "schemaJson",
296
+ "description": "Number of schemas for NetworkDiscoveryTasks entity",
297
+ "value": 1
298
+ },
299
+ {
300
+ "owner": "schemaJson",
301
+ "description": "Number of schemas for Reports entity",
302
+ "value": 1
303
+ },
304
+ {
305
+ "owner": "schemaJson",
306
+ "description": "Number of schemas for UniversalACMEAccounts entity",
307
+ "value": 1
308
+ },
309
+ {
310
+ "owner": "schemaJson",
311
+ "description": "Number of schemas for Domains entity",
312
+ "value": 1
313
+ },
314
+ {
315
+ "owner": "schemaJson",
316
+ "description": "Number of schemas for Organizations entity",
317
+ "value": 1
318
+ },
319
+ {
320
+ "owner": "schemaJson",
321
+ "description": "Number of schemas for CustomFields entity",
322
+ "value": 1
323
+ },
324
+ {
325
+ "owner": "schemaJson",
326
+ "description": "Number of schemas for DeviceCertificates entity",
327
+ "value": 1
328
+ },
329
+ {
330
+ "owner": "schemaJson",
331
+ "description": "Number of schemas for NetworkAgents entity",
332
+ "value": 1
333
+ },
334
+ {
335
+ "owner": "schemaJson",
336
+ "description": "Number of schemas for CertificateBuckets entity",
337
+ "value": 1
338
+ },
339
+ {
340
+ "owner": "schemaJson",
341
+ "description": "Number of schemas for Notifications entity",
342
+ "value": 1
343
+ },
344
+ {
345
+ "owner": "schemaJson",
346
+ "description": "Number of schemas for Persons entity",
347
+ "value": 1
348
+ },
349
+ {
350
+ "owner": "schemaJson",
351
+ "description": "Number of schemas for SectigoPublicACMEServers entity",
352
+ "value": 1
353
+ },
354
+ {
355
+ "owner": "schemaJson",
356
+ "description": "Number of schemas for Operations entity",
357
+ "value": 1
358
+ },
359
+ {
360
+ "owner": "schemaJson",
361
+ "description": "Number of schemas for ACMEEVDetailsValidation entity",
362
+ "value": 1
363
+ },
364
+ {
365
+ "owner": "schemaJson",
366
+ "description": "Total number of schemas",
367
+ "value": 24
368
+ },
369
+ {
370
+ "owner": "mockdata",
371
+ "description": "Number of mock data files for SectigoPublicACMEAccounts entity",
372
+ "value": 0
373
+ },
374
+ {
375
+ "owner": "mockdata",
376
+ "description": "Number of mock data files for ClientCertificates entity",
377
+ "value": 0
378
+ },
379
+ {
380
+ "owner": "mockdata",
381
+ "description": "Number of mock data files for MSAgents entity",
382
+ "value": 0
383
+ },
384
+ {
385
+ "owner": "mockdata",
386
+ "description": "Number of mock data files for DomainControlValidation entity",
387
+ "value": 0
388
+ },
389
+ {
390
+ "owner": "mockdata",
391
+ "description": "Number of mock data files for AssignmentRules entity",
392
+ "value": 0
393
+ },
394
+ {
395
+ "owner": "mockdata",
396
+ "description": "Number of mock data files for TemplateAdministrators entity",
397
+ "value": 0
398
+ },
399
+ {
400
+ "owner": "mockdata",
401
+ "description": "Number of mock data files for SSLCertificates entity",
402
+ "value": 0
403
+ },
404
+ {
405
+ "owner": "mockdata",
406
+ "description": "Number of mock data files for Administrators entity",
407
+ "value": 0
408
+ },
409
+ {
410
+ "owner": "mockdata",
411
+ "description": "Number of mock data files for MSADDiscoveryTasks entity",
412
+ "value": 0
413
+ },
414
+ {
415
+ "owner": "mockdata",
416
+ "description": "Number of mock data files for AzureAccounts entity",
417
+ "value": 0
418
+ },
419
+ {
420
+ "owner": "mockdata",
421
+ "description": "Number of mock data files for NetworkDiscoveryTasks entity",
422
+ "value": 0
423
+ },
424
+ {
425
+ "owner": "mockdata",
426
+ "description": "Number of mock data files for Reports entity",
427
+ "value": 0
428
+ },
429
+ {
430
+ "owner": "mockdata",
431
+ "description": "Number of mock data files for UniversalACMEAccounts entity",
432
+ "value": 0
433
+ },
434
+ {
435
+ "owner": "mockdata",
436
+ "description": "Number of mock data files for Domains entity",
437
+ "value": 0
438
+ },
439
+ {
440
+ "owner": "mockdata",
441
+ "description": "Number of mock data files for Organizations entity",
442
+ "value": 0
443
+ },
444
+ {
445
+ "owner": "mockdata",
446
+ "description": "Number of mock data files for CustomFields entity",
447
+ "value": 0
448
+ },
449
+ {
450
+ "owner": "mockdata",
451
+ "description": "Number of mock data files for DeviceCertificates entity",
452
+ "value": 0
453
+ },
454
+ {
455
+ "owner": "mockdata",
456
+ "description": "Number of mock data files for NetworkAgents entity",
457
+ "value": 0
458
+ },
459
+ {
460
+ "owner": "mockdata",
461
+ "description": "Number of mock data files for CertificateBuckets entity",
462
+ "value": 0
463
+ },
464
+ {
465
+ "owner": "mockdata",
466
+ "description": "Number of mock data files for Notifications entity",
467
+ "value": 0
468
+ },
469
+ {
470
+ "owner": "mockdata",
471
+ "description": "Number of mock data files for Persons entity",
472
+ "value": 0
473
+ },
474
+ {
475
+ "owner": "mockdata",
476
+ "description": "Number of mock data files for SectigoPublicACMEServers entity",
477
+ "value": 0
478
+ },
479
+ {
480
+ "owner": "mockdata",
481
+ "description": "Number of mock data files for Operations entity",
482
+ "value": 0
483
+ },
484
+ {
485
+ "owner": "mockdata",
486
+ "description": "Number of mock data files for ACMEEVDetailsValidation entity",
487
+ "value": 0
488
+ },
489
+ {
490
+ "owner": "mockdata",
491
+ "description": "Total number of mock data files",
492
+ "value": 0
493
+ },
494
+ {
495
+ "owner": "actionJson",
496
+ "description": "Number of actions for .system entity",
497
+ "value": 2
498
+ },
499
+ {
500
+ "owner": "schemaJson",
501
+ "description": "Number of schemas for .system entity",
502
+ "value": 3
503
+ },
504
+ {
505
+ "owner": "mockdata",
506
+ "description": "Number of mock data files for .system entity",
507
+ "value": 2
508
+ },
509
+ {
510
+ "owner": "System",
511
+ "description": "System entity files",
512
+ "value": 6
513
+ },
514
+ {
515
+ "owner": "usecases",
516
+ "description": "Number of workflows",
517
+ "value": 0
518
+ },
519
+ {
520
+ "owner": "staticFile",
521
+ "description": "Number of lines of code in adapterBase.js",
522
+ "value": 1453
523
+ },
524
+ {
525
+ "owner": "staticFile",
526
+ "description": "Number of static files added",
527
+ "value": 37
528
+ },
529
+ {
530
+ "owner": "Overall",
531
+ "description": "Total lines of Code",
532
+ "value": 34087
533
+ },
534
+ {
535
+ "owner": "Overall",
536
+ "description": "Total Tests",
537
+ "value": 653
538
+ },
539
+ {
540
+ "owner": "Overall",
541
+ "description": "Total Files",
542
+ "value": 100
543
+ }
544
+ ],
545
+ "warnings": [],
546
+ "apiParsingReport": {
547
+ "no_mockdata": [
548
+ {
549
+ "fnName": "listAcmeAccountClients",
550
+ "method": "get",
551
+ "path": "/api/acme/v2/account/{id}/client"
552
+ },
553
+ {
554
+ "fnName": "listAcmeAccountDomains",
555
+ "method": "get",
556
+ "path": "/api/acme/v2/account/{id}/domain"
557
+ },
558
+ {
559
+ "fnName": "addDomainsToPublicAcmeAccount",
560
+ "method": "post",
561
+ "path": "/api/acme/v2/account/{id}/domain"
562
+ },
563
+ {
564
+ "fnName": "removeDomainsFromPublicAcmeAccount",
565
+ "method": "delete",
566
+ "path": "/api/acme/v2/account/{id}/domain"
567
+ },
568
+ {
569
+ "fnName": "getPublicAcmeAccountDetails",
570
+ "method": "get",
571
+ "path": "/api/acme/v2/account/{id}"
572
+ },
573
+ {
574
+ "fnName": "updatePublicAcmeAccount",
575
+ "method": "put",
576
+ "path": "/api/acme/v2/account/{id}"
577
+ },
578
+ {
579
+ "fnName": "deletePublicAcmeAccount",
580
+ "method": "delete",
581
+ "path": "/api/acme/v2/account/{id}"
582
+ },
583
+ {
584
+ "fnName": "getPublicAcmeAccountsList",
585
+ "method": "get",
586
+ "path": "/api/acme/v2/account"
587
+ },
588
+ {
589
+ "fnName": "createPublicAcmeAccount",
590
+ "method": "post",
591
+ "path": "/api/acme/v2/account"
592
+ },
593
+ {
594
+ "fnName": "deletePublicAcmeAccountClient",
595
+ "method": "delete",
596
+ "path": "/api/acme/v2/account/{id}/client/{clientId}"
597
+ },
598
+ {
599
+ "fnName": "renewClientCertificateBySerialNumber",
600
+ "method": "post",
601
+ "path": "/api/smime/v2/renew/serial/{serial}"
602
+ },
603
+ {
604
+ "fnName": "deleteClientCertificateById",
605
+ "method": "delete",
606
+ "path": "/api/smime/v2/{certId}"
607
+ },
608
+ {
609
+ "fnName": "getClientCertificateList",
610
+ "method": "get",
611
+ "path": "/api/smime/v2"
612
+ },
613
+ {
614
+ "fnName": "revokeClientCertificatesByEmail",
615
+ "method": "post",
616
+ "path": "/api/smime/v2/revoke"
617
+ },
618
+ {
619
+ "fnName": "getClientCertificateListByPersonEmail",
620
+ "method": "get",
621
+ "path": "/api/smime/v2/byPersonEmail/{email}"
622
+ },
623
+ {
624
+ "fnName": "revokeClientCertificateBySerialNumber",
625
+ "method": "post",
626
+ "path": "/api/smime/v2/revoke/serial/{serial}"
627
+ },
628
+ {
629
+ "fnName": "enrollClientCertificate",
630
+ "method": "post",
631
+ "path": "/api/smime/v2/enroll"
632
+ },
633
+ {
634
+ "fnName": "getClientCertCustomFields",
635
+ "method": "get",
636
+ "path": "/api/smime/v2/customFields"
637
+ },
638
+ {
639
+ "fnName": "revokeClientCertificateByOrderNumber",
640
+ "method": "post",
641
+ "path": "/api/smime/v2/revoke/order/{orderNum}"
642
+ },
643
+ {
644
+ "fnName": "getClientCertificateListByPersonId",
645
+ "method": "get",
646
+ "path": "/api/smime/v2/byPersonId/{pid}"
647
+ },
648
+ {
649
+ "fnName": "getClientCertProfiles",
650
+ "method": "get",
651
+ "path": "/api/smime/v2/types"
652
+ },
653
+ {
654
+ "fnName": "renewClientCertificateByOrderNumber",
655
+ "method": "post",
656
+ "path": "/api/smime/v2/renew/order/{orderNum}"
657
+ },
658
+ {
659
+ "fnName": "collectClientCertificate",
660
+ "method": "get",
661
+ "path": "/api/smime/v2/collect/{orderNum}"
662
+ },
663
+ {
664
+ "fnName": "getMsAgentDetails",
665
+ "method": "get",
666
+ "path": "/api/agent/v1/ms/{id}"
667
+ },
668
+ {
669
+ "fnName": "updateMsAgent",
670
+ "method": "put",
671
+ "path": "/api/agent/v1/ms/{id}"
672
+ },
673
+ {
674
+ "fnName": "deleteMsAgent",
675
+ "method": "delete",
676
+ "path": "/api/agent/v1/ms/{id}"
677
+ },
678
+ {
679
+ "fnName": "getMsAgentList",
680
+ "method": "get",
681
+ "path": "/api/agent/v1/ms"
682
+ },
683
+ {
684
+ "fnName": "addMsAgent",
685
+ "method": "post",
686
+ "path": "/api/agent/v1/ms"
687
+ },
688
+ {
689
+ "fnName": "submitCnameDcv",
690
+ "method": "post",
691
+ "path": "/api/dcv/v2/validation/submit/domain/cname"
692
+ },
693
+ {
694
+ "fnName": "deleteDcv",
695
+ "method": "post",
696
+ "path": "/api/dcv/v2/validation/delete"
697
+ },
698
+ {
699
+ "fnName": "submitEmailDcv",
700
+ "method": "post",
701
+ "path": "/api/dcv/v2/validation/submit/domain/email"
702
+ },
703
+ {
704
+ "fnName": "startCnameDcv",
705
+ "method": "post",
706
+ "path": "/api/dcv/v2/validation/start/domain/cname"
707
+ },
708
+ {
709
+ "fnName": "listAllDcv",
710
+ "method": "get",
711
+ "path": "/api/dcv/v2/validation"
712
+ },
713
+ {
714
+ "fnName": "getDcvStatus",
715
+ "method": "post",
716
+ "path": "/api/dcv/v2/validation/status"
717
+ },
718
+ {
719
+ "fnName": "startEmailDcv",
720
+ "method": "post",
721
+ "path": "/api/dcv/v2/validation/start/domain/email"
722
+ },
723
+ {
724
+ "fnName": "clearDomainDcv",
725
+ "method": "post",
726
+ "path": "/api/dcv/v2/validation/clear"
727
+ },
728
+ {
729
+ "fnName": "syncDcv",
730
+ "method": "post",
731
+ "path": "/api/dcv/v2/validation/sync"
732
+ },
733
+ {
734
+ "fnName": "submitHttpDcv",
735
+ "method": "post",
736
+ "path": "/api/dcv/v2/validation/submit/domain/http"
737
+ },
738
+ {
739
+ "fnName": "startHttpsDcv",
740
+ "method": "post",
741
+ "path": "/api/dcv/v2/validation/start/domain/https"
742
+ },
743
+ {
744
+ "fnName": "submitHttpsDcv",
745
+ "method": "post",
746
+ "path": "/api/dcv/v2/validation/submit/domain/https"
747
+ },
748
+ {
749
+ "fnName": "startHttpDcv",
750
+ "method": "post",
751
+ "path": "/api/dcv/v2/validation/start/domain/http"
752
+ },
753
+ {
754
+ "fnName": "findAssignmentRuleById",
755
+ "method": "get",
756
+ "path": "/api/discovery/v1/assignmentrule/{ruleId}"
757
+ },
758
+ {
759
+ "fnName": "deleteAssignmentRule",
760
+ "method": "delete",
761
+ "path": "/api/discovery/v1/assignmentrule/{ruleId}"
762
+ },
763
+ {
764
+ "fnName": "getAssignmentRulesCount",
765
+ "method": "get",
766
+ "path": "/api/discovery/v1/assignmentrule/count"
767
+ },
768
+ {
769
+ "fnName": "getAssignmentRulesIdList",
770
+ "method": "get",
771
+ "path": "/api/discovery/v1/assignmentrule"
772
+ },
773
+ {
774
+ "fnName": "updateAssignmentRule",
775
+ "method": "put",
776
+ "path": "/api/discovery/v1/assignmentrule"
777
+ },
778
+ {
779
+ "fnName": "createAssignmentRule",
780
+ "method": "post",
781
+ "path": "/api/discovery/v1/assignmentrule"
782
+ },
783
+ {
784
+ "fnName": "getAdminTemplateDetails",
785
+ "method": "get",
786
+ "path": "/api/admin-template/v1/{id}"
787
+ },
788
+ {
789
+ "fnName": "updateAdminTemplate",
790
+ "method": "put",
791
+ "path": "/api/admin-template/v1/{id}"
792
+ },
793
+ {
794
+ "fnName": "deleteAdminTemplate",
795
+ "method": "delete",
796
+ "path": "/api/admin-template/v1/{id}"
797
+ },
798
+ {
799
+ "fnName": "listAdminTemplates",
800
+ "method": "get",
801
+ "path": "/api/admin-template/v1"
802
+ },
803
+ {
804
+ "fnName": "createAdminTemplate",
805
+ "method": "post",
806
+ "path": "/api/admin-template/v1"
807
+ },
808
+ {
809
+ "fnName": "renewSslCertificateById",
810
+ "method": "post",
811
+ "path": "/api/ssl/v1/renewById/{sslId}"
812
+ },
813
+ {
814
+ "fnName": "approveSslCertificateById",
815
+ "method": "post",
816
+ "path": "/api/ssl/v1/approve/{id}"
817
+ },
818
+ {
819
+ "fnName": "getSslCertificateDetails",
820
+ "method": "get",
821
+ "path": "/api/ssl/v1/{sslId}"
822
+ },
823
+ {
824
+ "fnName": "deleteSslCertificateById",
825
+ "method": "delete",
826
+ "path": "/api/ssl/v1/{sslId}"
827
+ },
828
+ {
829
+ "fnName": "downloadSslFromKeyStore",
830
+ "method": "get",
831
+ "path": "/api/ssl/v1/keystore/{sslId}/{formatType}"
832
+ },
833
+ {
834
+ "fnName": "replaceSslCertificateById",
835
+ "method": "post",
836
+ "path": "/api/ssl/v1/replace/{sslId}"
837
+ },
838
+ {
839
+ "fnName": "getSslCertificatesList",
840
+ "method": "get",
841
+ "path": "/api/ssl/v1"
842
+ },
843
+ {
844
+ "fnName": "updateSslCertificateDetails",
845
+ "method": "put",
846
+ "path": "/api/ssl/v1"
847
+ },
848
+ {
849
+ "fnName": "enrollSslCertificateWithKeyGen",
850
+ "method": "post",
851
+ "path": "/api/ssl/v1/enroll-keygen"
852
+ },
853
+ {
854
+ "fnName": "getSslCustomFields",
855
+ "method": "get",
856
+ "path": "/api/ssl/v1/customFields"
857
+ },
858
+ {
859
+ "fnName": "enrollSslCertificate",
860
+ "method": "post",
861
+ "path": "/api/ssl/v1/enroll"
862
+ },
863
+ {
864
+ "fnName": "revokeSslCertificateById",
865
+ "method": "post",
866
+ "path": "/api/ssl/v1/revoke/{id}"
867
+ },
868
+ {
869
+ "fnName": "getSslCertTypes",
870
+ "method": "get",
871
+ "path": "/api/ssl/v1/types"
872
+ },
873
+ {
874
+ "fnName": "collectSslCertificate",
875
+ "method": "get",
876
+ "path": "/api/ssl/v1/collect/{sslId}"
877
+ },
878
+ {
879
+ "fnName": "importSslCertificate",
880
+ "method": "post",
881
+ "path": "/api/ssl/v1/import"
882
+ },
883
+ {
884
+ "fnName": "revokeSslCertificateBySerialNumber",
885
+ "method": "post",
886
+ "path": "/api/ssl/v1/revoke/serial/{serialNumber}"
887
+ },
888
+ {
889
+ "fnName": "declineSslCertificateById",
890
+ "method": "post",
891
+ "path": "/api/ssl/v1/decline/{id}"
892
+ },
893
+ {
894
+ "fnName": "renewSslCertificateBySerialNumber",
895
+ "method": "post",
896
+ "path": "/api/ssl/v1/renew/{renewId}"
897
+ },
898
+ {
899
+ "fnName": "getAdminDetails",
900
+ "method": "get",
901
+ "path": "/api/admin/v1/{id}"
902
+ },
903
+ {
904
+ "fnName": "updateAdminAccount",
905
+ "method": "put",
906
+ "path": "/api/admin/v1/{id}"
907
+ },
908
+ {
909
+ "fnName": "deleteAdminUser",
910
+ "method": "delete",
911
+ "path": "/api/admin/v1/{id}"
912
+ },
913
+ {
914
+ "fnName": "getAvailableAdminRoles",
915
+ "method": "get",
916
+ "path": "/api/admin/v1/roles"
917
+ },
918
+ {
919
+ "fnName": "getAvailableIdentityProviders",
920
+ "method": "get",
921
+ "path": "/api/admin/v1/idp"
922
+ },
923
+ {
924
+ "fnName": "listAdminUsers",
925
+ "method": "get",
926
+ "path": "/api/admin/v1"
927
+ },
928
+ {
929
+ "fnName": "createAdminAccount",
930
+ "method": "post",
931
+ "path": "/api/admin/v1"
932
+ },
933
+ {
934
+ "fnName": "unlinkFromTemplate",
935
+ "method": "put",
936
+ "path": "/api/admin/v1/{id}/unlink"
937
+ },
938
+ {
939
+ "fnName": "getAvailablePrivilegesForRoles",
940
+ "method": "get",
941
+ "path": "/api/admin/v1/privileges"
942
+ },
943
+ {
944
+ "fnName": "getPasswordStatus",
945
+ "method": "get",
946
+ "path": "/api/admin/v1/password"
947
+ },
948
+ {
949
+ "fnName": "changeAdminPassword",
950
+ "method": "post",
951
+ "path": "/api/admin/v1/changepassword"
952
+ },
953
+ {
954
+ "fnName": "updateMsAdScanTask",
955
+ "method": "put",
956
+ "path": "/api/discovery/v4/ad_task/{id}"
957
+ },
958
+ {
959
+ "fnName": "getMsAdScanTask",
960
+ "method": "get",
961
+ "path": "/api/discovery/v4/ad_task/{taskId}"
962
+ },
963
+ {
964
+ "fnName": "deleteMsAdScanTask",
965
+ "method": "delete",
966
+ "path": "/api/discovery/v4/ad_task/{taskId}"
967
+ },
968
+ {
969
+ "fnName": "getMsAdScanTaskList",
970
+ "method": "get",
971
+ "path": "/api/discovery/v4/ad_task"
972
+ },
973
+ {
974
+ "fnName": "createMsAdScanTask",
975
+ "method": "post",
976
+ "path": "/api/discovery/v4/ad_task"
977
+ },
978
+ {
979
+ "fnName": "startMsAdScanTask",
980
+ "method": "post",
981
+ "path": "/api/discovery/v4/ad_task/{taskId}/start"
982
+ },
983
+ {
984
+ "fnName": "getAzureResourceGroups",
985
+ "method": "get",
986
+ "path": "/api/azure/v1/accounts/{accountId}/resource-groups"
987
+ },
988
+ {
989
+ "fnName": "getVault",
990
+ "method": "get",
991
+ "path": "/api/azure/v1/accounts/{accountId}/subscriptions/{subscriptionId}/resource-groups/{resourceGroup}/vaults"
992
+ },
993
+ {
994
+ "fnName": "getAzureAccounts",
995
+ "method": "get",
996
+ "path": "/api/azure/v1/accounts"
997
+ },
998
+ {
999
+ "fnName": "startNetworkScanTask",
1000
+ "method": "post",
1001
+ "path": "/api/discovery/v4/net_task/{taskId}/start"
1002
+ },
1003
+ {
1004
+ "fnName": "getNetworkScanTaskList",
1005
+ "method": "get",
1006
+ "path": "/api/discovery/v4/net_task"
1007
+ },
1008
+ {
1009
+ "fnName": "createNetworkTask",
1010
+ "method": "post",
1011
+ "path": "/api/discovery/v4/net_task"
1012
+ },
1013
+ {
1014
+ "fnName": "updateNetworkTask",
1015
+ "method": "put",
1016
+ "path": "/api/discovery/v4/net_task/{id}"
1017
+ },
1018
+ {
1019
+ "fnName": "getNetworkTask",
1020
+ "method": "get",
1021
+ "path": "/api/discovery/v4/net_task/{taskId}"
1022
+ },
1023
+ {
1024
+ "fnName": "deleteNetworkScanTask",
1025
+ "method": "delete",
1026
+ "path": "/api/discovery/v4/net_task/{taskId}"
1027
+ },
1028
+ {
1029
+ "fnName": "generateSslCertificatesLog",
1030
+ "method": "post",
1031
+ "path": "/api/report/v1/ssl-certificates"
1032
+ },
1033
+ {
1034
+ "fnName": "generateDomainsLog1",
1035
+ "method": "post",
1036
+ "path": "/api/report/v1/domains"
1037
+ },
1038
+ {
1039
+ "fnName": "generateActivityReport",
1040
+ "method": "post",
1041
+ "path": "/api/report/v1/activity"
1042
+ },
1043
+ {
1044
+ "fnName": "generateDeviceCertificatesLog",
1045
+ "method": "post",
1046
+ "path": "/api/report/v1/device-certificates"
1047
+ },
1048
+ {
1049
+ "fnName": "generateSmimeCertificatesLog",
1050
+ "method": "post",
1051
+ "path": "/api/report/v1/client-certificates"
1052
+ },
1053
+ {
1054
+ "fnName": "deleteUniversalAcmeAccountClient",
1055
+ "method": "delete",
1056
+ "path": "/api/acme/v1/pca/account/{id}/client/{clientId}"
1057
+ },
1058
+ {
1059
+ "fnName": "getUniversalAcmeAccountDetails",
1060
+ "method": "get",
1061
+ "path": "/api/acme/v1/pca/account/{id}"
1062
+ },
1063
+ {
1064
+ "fnName": "updateUniversalAcmeAccount",
1065
+ "method": "put",
1066
+ "path": "/api/acme/v1/pca/account/{id}"
1067
+ },
1068
+ {
1069
+ "fnName": "deleteUniversalAcmeAccount",
1070
+ "method": "delete",
1071
+ "path": "/api/acme/v1/pca/account/{id}"
1072
+ },
1073
+ {
1074
+ "fnName": "getUniversalAcmeAccountsList",
1075
+ "method": "get",
1076
+ "path": "/api/acme/v1/pca/account"
1077
+ },
1078
+ {
1079
+ "fnName": "createUniversalAcmeAccount",
1080
+ "method": "post",
1081
+ "path": "/api/acme/v1/pca/account"
1082
+ },
1083
+ {
1084
+ "fnName": "getUniversalAcmeAccountClientsList",
1085
+ "method": "get",
1086
+ "path": "/api/acme/v1/pca/account/{id}/client"
1087
+ },
1088
+ {
1089
+ "fnName": "listDomains",
1090
+ "method": "get",
1091
+ "path": "/api/domain/v1"
1092
+ },
1093
+ {
1094
+ "fnName": "createDomain",
1095
+ "method": "post",
1096
+ "path": "/api/domain/v1"
1097
+ },
1098
+ {
1099
+ "fnName": "approveDomainDelegation",
1100
+ "method": "post",
1101
+ "path": "/api/domain/v1/{id}/delegation/approve"
1102
+ },
1103
+ {
1104
+ "fnName": "delegateDomain",
1105
+ "method": "post",
1106
+ "path": "/api/domain/v1/{id}/delegation"
1107
+ },
1108
+ {
1109
+ "fnName": "removeDomainDelegation",
1110
+ "method": "delete",
1111
+ "path": "/api/domain/v1/{id}/delegation"
1112
+ },
1113
+ {
1114
+ "fnName": "suspendDomain",
1115
+ "method": "put",
1116
+ "path": "/api/domain/v1/{id}/suspend"
1117
+ },
1118
+ {
1119
+ "fnName": "rejectDomainDelegation",
1120
+ "method": "post",
1121
+ "path": "/api/domain/v1/{id}/delegation/reject"
1122
+ },
1123
+ {
1124
+ "fnName": "getDomainDetails",
1125
+ "method": "get",
1126
+ "path": "/api/domain/v1/{id}"
1127
+ },
1128
+ {
1129
+ "fnName": "deleteDomain",
1130
+ "method": "delete",
1131
+ "path": "/api/domain/v1/{id}"
1132
+ },
1133
+ {
1134
+ "fnName": "activateDomain",
1135
+ "method": "put",
1136
+ "path": "/api/domain/v1/{id}/activate"
1137
+ },
1138
+ {
1139
+ "fnName": "getOrgList",
1140
+ "method": "get",
1141
+ "path": "/api/organization/v1"
1142
+ },
1143
+ {
1144
+ "fnName": "createOrganization",
1145
+ "method": "post",
1146
+ "path": "/api/organization/v1"
1147
+ },
1148
+ {
1149
+ "fnName": "getOrgDetails",
1150
+ "method": "get",
1151
+ "path": "/api/organization/v1/{id}"
1152
+ },
1153
+ {
1154
+ "fnName": "updateOrganization",
1155
+ "method": "put",
1156
+ "path": "/api/organization/v1/{id}"
1157
+ },
1158
+ {
1159
+ "fnName": "deleteOrg",
1160
+ "method": "delete",
1161
+ "path": "/api/organization/v1/{id}"
1162
+ },
1163
+ {
1164
+ "fnName": "getOrgListByCertType",
1165
+ "method": "get",
1166
+ "path": "/api/organization/v1/report-type/{report-type}"
1167
+ },
1168
+ {
1169
+ "fnName": "getOrgsByRole",
1170
+ "method": "get",
1171
+ "path": "/api/organization/v1/managed-by/{role}"
1172
+ },
1173
+ {
1174
+ "fnName": "readCustomFieldsByCertType",
1175
+ "method": "get",
1176
+ "path": "/api/customField/v2"
1177
+ },
1178
+ {
1179
+ "fnName": "updateCustomField",
1180
+ "method": "put",
1181
+ "path": "/api/customField/v2"
1182
+ },
1183
+ {
1184
+ "fnName": "createCustomField",
1185
+ "method": "post",
1186
+ "path": "/api/customField/v2"
1187
+ },
1188
+ {
1189
+ "fnName": "getCustomFieldDetails",
1190
+ "method": "get",
1191
+ "path": "/api/customField/v2/{id}"
1192
+ },
1193
+ {
1194
+ "fnName": "deleteCustomField",
1195
+ "method": "delete",
1196
+ "path": "/api/customField/v2/{id}"
1197
+ },
1198
+ {
1199
+ "fnName": "collectDeviceCertificate",
1200
+ "method": "get",
1201
+ "path": "/api/device/v1/collect/{deviceCertId}"
1202
+ },
1203
+ {
1204
+ "fnName": "getDeviceCertificatesList",
1205
+ "method": "get",
1206
+ "path": "/api/device/v1"
1207
+ },
1208
+ {
1209
+ "fnName": "renewDeviceCertificateBySerialNumber",
1210
+ "method": "post",
1211
+ "path": "/api/device/v1/renew/serial/{serialNumber}"
1212
+ },
1213
+ {
1214
+ "fnName": "getDeviceCertificatesDetails",
1215
+ "method": "get",
1216
+ "path": "/api/device/v1/{deviceCertId}"
1217
+ },
1218
+ {
1219
+ "fnName": "revokeDeviceCertificateById",
1220
+ "method": "post",
1221
+ "path": "/api/device/v1/revoke/order/{deviceCertId}"
1222
+ },
1223
+ {
1224
+ "fnName": "deleteDeviceCertificateById",
1225
+ "method": "delete",
1226
+ "path": "/api/device/v1/{certId}"
1227
+ },
1228
+ {
1229
+ "fnName": "approveDeviceCertificate",
1230
+ "method": "post",
1231
+ "path": "/api/device/v1/approve/{deviceCertId}"
1232
+ },
1233
+ {
1234
+ "fnName": "declineDeviceCertificate",
1235
+ "method": "post",
1236
+ "path": "/api/device/v1/decline/{deviceCertId}"
1237
+ },
1238
+ {
1239
+ "fnName": "revokeDeviceCertificateBySerialNumber",
1240
+ "method": "post",
1241
+ "path": "/api/device/v1/revoke/serial/{sn}"
1242
+ },
1243
+ {
1244
+ "fnName": "getDeviceProfiles",
1245
+ "method": "get",
1246
+ "path": "/api/device/v1/types"
1247
+ },
1248
+ {
1249
+ "fnName": "replaceDeviceCertificateById",
1250
+ "method": "post",
1251
+ "path": "/api/device/v1/replace/order/{deviceCertId}"
1252
+ },
1253
+ {
1254
+ "fnName": "getDeviceCustomFields",
1255
+ "method": "get",
1256
+ "path": "/api/device/v1/customFields"
1257
+ },
1258
+ {
1259
+ "fnName": "enrollDeviceCertificate",
1260
+ "method": "post",
1261
+ "path": "/api/device/v1/enroll"
1262
+ },
1263
+ {
1264
+ "fnName": "renewDeviceCertificateById",
1265
+ "method": "post",
1266
+ "path": "/api/device/v1/renew/order/{deviceCertId}"
1267
+ },
1268
+ {
1269
+ "fnName": "getNetworkAgentServerNodeDetails",
1270
+ "method": "get",
1271
+ "path": "/api/agent/v1/network/{agentId}/server/{serverId}/node/{id}"
1272
+ },
1273
+ {
1274
+ "fnName": "getNetworkAgentServersList",
1275
+ "method": "get",
1276
+ "path": "/api/agent/v1/network/{agentId}/server"
1277
+ },
1278
+ {
1279
+ "fnName": "addServerToNetworkAgent",
1280
+ "method": "post",
1281
+ "path": "/api/agent/v1/network/{agentId}/server"
1282
+ },
1283
+ {
1284
+ "fnName": "getNetworkAgentList",
1285
+ "method": "get",
1286
+ "path": "/api/agent/v1/network"
1287
+ },
1288
+ {
1289
+ "fnName": "addNetworkAgent",
1290
+ "method": "post",
1291
+ "path": "/api/agent/v1/network"
1292
+ },
1293
+ {
1294
+ "fnName": "getNetworkAgentServerDetails",
1295
+ "method": "get",
1296
+ "path": "/api/agent/v1/network/{agentId}/server/{id}"
1297
+ },
1298
+ {
1299
+ "fnName": "updateServerDetails",
1300
+ "method": "put",
1301
+ "path": "/api/agent/v1/network/{agentId}/server/{id}"
1302
+ },
1303
+ {
1304
+ "fnName": "deleteServerFromNetworkAgent",
1305
+ "method": "delete",
1306
+ "path": "/api/agent/v1/network/{agentId}/server/{id}"
1307
+ },
1308
+ {
1309
+ "fnName": "getNetworkAgentDetails",
1310
+ "method": "get",
1311
+ "path": "/api/agent/v1/network/{id}"
1312
+ },
1313
+ {
1314
+ "fnName": "updateNetworkAgent",
1315
+ "method": "put",
1316
+ "path": "/api/agent/v1/network/{id}"
1317
+ },
1318
+ {
1319
+ "fnName": "deleteNetworkAgent",
1320
+ "method": "delete",
1321
+ "path": "/api/agent/v1/network/{id}"
1322
+ },
1323
+ {
1324
+ "fnName": "getNetworkAgentServersList1",
1325
+ "method": "get",
1326
+ "path": "/api/agent/v1/network/{agentId}/server/{serverId}/node"
1327
+ },
1328
+ {
1329
+ "fnName": "resetClientSecret",
1330
+ "method": "put",
1331
+ "path": "/api/discovery/v1/bucket/{bucketId}/reset-client-secret"
1332
+ },
1333
+ {
1334
+ "fnName": "getCertificateList",
1335
+ "method": "get",
1336
+ "path": "/api/discovery/v1/bucket/{bucketId}/certificates"
1337
+ },
1338
+ {
1339
+ "fnName": "runRulesForCertificateBucket",
1340
+ "method": "post",
1341
+ "path": "/api/discovery/v1/bucket/{bucketId}/runrules"
1342
+ },
1343
+ {
1344
+ "fnName": "findCertificateBucketById",
1345
+ "method": "get",
1346
+ "path": "/api/discovery/v1/bucket/{bucketId}"
1347
+ },
1348
+ {
1349
+ "fnName": "updateCertificateBucket",
1350
+ "method": "put",
1351
+ "path": "/api/discovery/v1/bucket/{bucketId}"
1352
+ },
1353
+ {
1354
+ "fnName": "deleteCertificateBucket",
1355
+ "method": "delete",
1356
+ "path": "/api/discovery/v1/bucket/{bucketId}"
1357
+ },
1358
+ {
1359
+ "fnName": "getCertificateBucketsList",
1360
+ "method": "get",
1361
+ "path": "/api/discovery/v1/bucket"
1362
+ },
1363
+ {
1364
+ "fnName": "createCertificateBucket",
1365
+ "method": "post",
1366
+ "path": "/api/discovery/v1/bucket"
1367
+ },
1368
+ {
1369
+ "fnName": "assignCertificatesInCertificateBucket",
1370
+ "method": "post",
1371
+ "path": "/api/discovery/v1/bucket/{bucketId}/assign"
1372
+ },
1373
+ {
1374
+ "fnName": "delegateOrganizationsToCertificateBucket",
1375
+ "method": "put",
1376
+ "path": "/api/discovery/v1/bucket/{bucketId}/delegations"
1377
+ },
1378
+ {
1379
+ "fnName": "getNotifyTypes",
1380
+ "method": "get",
1381
+ "path": "/api/notification/v1/types"
1382
+ },
1383
+ {
1384
+ "fnName": "getNotifyList",
1385
+ "method": "get",
1386
+ "path": "/api/notification/v1"
1387
+ },
1388
+ {
1389
+ "fnName": "createNotification",
1390
+ "method": "post",
1391
+ "path": "/api/notification/v1"
1392
+ },
1393
+ {
1394
+ "fnName": "updateNotification",
1395
+ "method": "put",
1396
+ "path": "/api/notification/v1/{notificationId}"
1397
+ },
1398
+ {
1399
+ "fnName": "deleteNotification",
1400
+ "method": "delete",
1401
+ "path": "/api/notification/v1/{notificationId}"
1402
+ },
1403
+ {
1404
+ "fnName": "getPersonInfoById",
1405
+ "method": "get",
1406
+ "path": "/api/person/v2/{id}"
1407
+ },
1408
+ {
1409
+ "fnName": "updatePerson",
1410
+ "method": "put",
1411
+ "path": "/api/person/v2/{id}"
1412
+ },
1413
+ {
1414
+ "fnName": "deletePerson",
1415
+ "method": "delete",
1416
+ "path": "/api/person/v2/{id}"
1417
+ },
1418
+ {
1419
+ "fnName": "listPersons",
1420
+ "method": "get",
1421
+ "path": "/api/person/v2"
1422
+ },
1423
+ {
1424
+ "fnName": "createPerson",
1425
+ "method": "post",
1426
+ "path": "/api/person/v2"
1427
+ },
1428
+ {
1429
+ "fnName": "getEndpointList",
1430
+ "method": "get",
1431
+ "path": "/api/person/v2/{id}/invitation/endpoint"
1432
+ },
1433
+ {
1434
+ "fnName": "importKey",
1435
+ "method": "post",
1436
+ "path": "/api/person/v2/{personId}/import-key"
1437
+ },
1438
+ {
1439
+ "fnName": "getEndpointAccountList",
1440
+ "method": "get",
1441
+ "path": "/api/person/v2/{id}/invitation/endpoint/{endpointId}/account"
1442
+ },
1443
+ {
1444
+ "fnName": "sendInvitation",
1445
+ "method": "post",
1446
+ "path": "/api/person/v2/{id}/invitation/send"
1447
+ },
1448
+ {
1449
+ "fnName": "getPersonIdByEmail",
1450
+ "method": "get",
1451
+ "path": "/api/person/v2/id/byEmail/{email}"
1452
+ },
1453
+ {
1454
+ "fnName": "getPublicAcmeServersList",
1455
+ "method": "get",
1456
+ "path": "/api/acme/v1/server"
1457
+ },
1458
+ {
1459
+ "fnName": "getOperationsList",
1460
+ "method": "get",
1461
+ "path": "/api/discovery/v1/{type}/{taskId}/operation"
1462
+ },
1463
+ {
1464
+ "fnName": "stopOperation",
1465
+ "method": "post",
1466
+ "path": "/api/discovery/v1/{type}/{taskId}/operation/{opId}/stop"
1467
+ },
1468
+ {
1469
+ "fnName": "getOperationResult",
1470
+ "method": "get",
1471
+ "path": "/api/discovery/v1/{type}/{taskId}/operation/{opId}/result"
1472
+ },
1473
+ {
1474
+ "fnName": "acmeEvDetailsValidation",
1475
+ "method": "post",
1476
+ "path": "/api/acme/v1/evdetails/validation"
1477
+ }
1478
+ ],
1479
+ "errors": [],
1480
+ "warnings": [],
1481
+ "callsTotal": 186,
1482
+ "callsConverted": 186,
1483
+ "no_mockdata_num": 186
1484
+ }
1485
+ }