@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.
- package/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/.jshintrc +3 -0
- package/AUTH.md +45 -0
- package/BROKER.md +211 -0
- package/CALLS.md +1323 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +646 -0
- package/README.md +343 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +18 -0
- package/TAB1.md +10 -0
- package/TAB2.md +325 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +20171 -0
- package/adapterBase.js +1452 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/ACMEEVDetailsValidation/action.json +24 -0
- package/entities/ACMEEVDetailsValidation/schema.json +19 -0
- package/entities/Administrators/action.json +230 -0
- package/entities/Administrators/schema.json +29 -0
- package/entities/AssignmentRules/action.json +127 -0
- package/entities/AssignmentRules/schema.json +24 -0
- package/entities/AzureAccounts/action.json +67 -0
- package/entities/AzureAccounts/schema.json +21 -0
- package/entities/CertificateBuckets/action.json +207 -0
- package/entities/CertificateBuckets/schema.json +28 -0
- package/entities/ClientCertificates/action.json +270 -0
- package/entities/ClientCertificates/schema.json +31 -0
- package/entities/CustomFields/action.json +106 -0
- package/entities/CustomFields/schema.json +23 -0
- package/entities/DeviceCertificates/action.json +289 -0
- package/entities/DeviceCertificates/schema.json +32 -0
- package/entities/DomainControlValidation/action.json +265 -0
- package/entities/DomainControlValidation/schema.json +31 -0
- package/entities/Domains/action.json +206 -0
- package/entities/Domains/schema.json +28 -0
- package/entities/MSADDiscoveryTasks/action.json +126 -0
- package/entities/MSADDiscoveryTasks/schema.json +24 -0
- package/entities/MSAgents/action.json +106 -0
- package/entities/MSAgents/schema.json +23 -0
- package/entities/NetworkAgents/action.json +250 -0
- package/entities/NetworkAgents/schema.json +30 -0
- package/entities/NetworkDiscoveryTasks/action.json +126 -0
- package/entities/NetworkDiscoveryTasks/schema.json +24 -0
- package/entities/Notifications/action.json +106 -0
- package/entities/Notifications/schema.json +23 -0
- package/entities/Operations/action.json +66 -0
- package/entities/Operations/schema.json +21 -0
- package/entities/Organizations/action.json +148 -0
- package/entities/Organizations/schema.json +36 -0
- package/entities/Persons/action.json +209 -0
- package/entities/Persons/schema.json +28 -0
- package/entities/Reports/action.json +104 -0
- package/entities/Reports/schema.json +34 -0
- package/entities/SSLCertificates/action.json +370 -0
- package/entities/SSLCertificates/schema.json +36 -0
- package/entities/SectigoPublicACMEAccounts/action.json +208 -0
- package/entities/SectigoPublicACMEAccounts/schema.json +28 -0
- package/entities/SectigoPublicACMEServers/action.json +25 -0
- package/entities/SectigoPublicACMEServers/schema.json +19 -0
- package/entities/TemplateAdministrators/action.json +106 -0
- package/entities/TemplateAdministrators/schema.json +23 -0
- package/entities/UniversalACMEAccounts/action.json +147 -0
- package/entities/UniversalACMEAccounts/schema.json +25 -0
- package/error.json +190 -0
- package/metadata.json +81 -0
- package/package.json +81 -0
- package/pronghorn.json +11368 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1574 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/Sectigo-Certificate-Management-OpenAPI.json +20192 -0
- package/report/adapterInfo.json +10 -0
- package/report/auto-adapter-openapi.json +8898 -0
- package/report/creationReport.json +1485 -0
- package/sampleProperties.json +265 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +118 -0
- package/test/integration/adapterTestIntegration.js +5256 -0
- package/test/unit/adapterBaseTestUnit.js +1024 -0
- package/test/unit/adapterTestUnit.js +7204 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +152 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +239 -0
- package/utils/tbUtils.js +489 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +193 -0
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "renewSslCertificateById",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/renewById/{pathv1}?{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": "approveSslCertificateById",
|
|
25
|
+
"protocol": "REST",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/approve/{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": "getSslCertificateDetails",
|
|
45
|
+
"protocol": "REST",
|
|
46
|
+
"method": "GET",
|
|
47
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/{pathv1}?{query}",
|
|
48
|
+
"requestSchema": "schema.json",
|
|
49
|
+
"responseSchema": "schema.json",
|
|
50
|
+
"timeout": 0,
|
|
51
|
+
"sendEmpty": false,
|
|
52
|
+
"sendGetBody": false,
|
|
53
|
+
"requestDatatype": "JSON",
|
|
54
|
+
"responseDatatype": "JSON",
|
|
55
|
+
"headers": {},
|
|
56
|
+
"responseObjects": [
|
|
57
|
+
{
|
|
58
|
+
"type": "default",
|
|
59
|
+
"key": "",
|
|
60
|
+
"mockFile": ""
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "deleteSslCertificateById",
|
|
66
|
+
"protocol": "REST",
|
|
67
|
+
"method": "DELETE",
|
|
68
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/{pathv1}?{query}",
|
|
69
|
+
"requestSchema": "schema.json",
|
|
70
|
+
"responseSchema": "schema.json",
|
|
71
|
+
"timeout": 0,
|
|
72
|
+
"sendEmpty": 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": "downloadSslFromKeyStore",
|
|
86
|
+
"protocol": "REST",
|
|
87
|
+
"method": "GET",
|
|
88
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/keystore/{pathv1}/{pathv2}?{query}",
|
|
89
|
+
"requestSchema": "schema.json",
|
|
90
|
+
"responseSchema": "schema.json",
|
|
91
|
+
"timeout": 0,
|
|
92
|
+
"sendEmpty": false,
|
|
93
|
+
"sendGetBody": false,
|
|
94
|
+
"requestDatatype": "JSON",
|
|
95
|
+
"responseDatatype": "JSON",
|
|
96
|
+
"headers": {},
|
|
97
|
+
"responseObjects": [
|
|
98
|
+
{
|
|
99
|
+
"type": "default",
|
|
100
|
+
"key": "",
|
|
101
|
+
"mockFile": ""
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "replaceSslCertificateById",
|
|
107
|
+
"protocol": "REST",
|
|
108
|
+
"method": "POST",
|
|
109
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/replace/{pathv1}?{query}",
|
|
110
|
+
"requestSchema": "schema.json",
|
|
111
|
+
"responseSchema": "schema.json",
|
|
112
|
+
"timeout": 0,
|
|
113
|
+
"sendEmpty": false,
|
|
114
|
+
"requestDatatype": "JSON",
|
|
115
|
+
"responseDatatype": "JSON",
|
|
116
|
+
"headers": {},
|
|
117
|
+
"responseObjects": [
|
|
118
|
+
{
|
|
119
|
+
"type": "default",
|
|
120
|
+
"key": "",
|
|
121
|
+
"mockFile": ""
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "getSslCertificatesList",
|
|
127
|
+
"protocol": "REST",
|
|
128
|
+
"method": "GET",
|
|
129
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1?{query}",
|
|
130
|
+
"requestSchema": "schema.json",
|
|
131
|
+
"responseSchema": "schema.json",
|
|
132
|
+
"timeout": 0,
|
|
133
|
+
"sendEmpty": false,
|
|
134
|
+
"sendGetBody": false,
|
|
135
|
+
"requestDatatype": "JSON",
|
|
136
|
+
"responseDatatype": "JSON",
|
|
137
|
+
"headers": {},
|
|
138
|
+
"responseObjects": [
|
|
139
|
+
{
|
|
140
|
+
"type": "default",
|
|
141
|
+
"key": "",
|
|
142
|
+
"mockFile": ""
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "updateSslCertificateDetails",
|
|
148
|
+
"protocol": "REST",
|
|
149
|
+
"method": "PUT",
|
|
150
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1?{query}",
|
|
151
|
+
"requestSchema": "schema.json",
|
|
152
|
+
"responseSchema": "schema.json",
|
|
153
|
+
"timeout": 0,
|
|
154
|
+
"sendEmpty": false,
|
|
155
|
+
"requestDatatype": "JSON",
|
|
156
|
+
"responseDatatype": "JSON",
|
|
157
|
+
"headers": {},
|
|
158
|
+
"responseObjects": [
|
|
159
|
+
{
|
|
160
|
+
"type": "default",
|
|
161
|
+
"key": "",
|
|
162
|
+
"mockFile": ""
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "enrollSslCertificateWithKeyGen",
|
|
168
|
+
"protocol": "REST",
|
|
169
|
+
"method": "POST",
|
|
170
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/enroll-keygen?{query}",
|
|
171
|
+
"requestSchema": "schema.json",
|
|
172
|
+
"responseSchema": "schema.json",
|
|
173
|
+
"timeout": 0,
|
|
174
|
+
"sendEmpty": false,
|
|
175
|
+
"requestDatatype": "JSON",
|
|
176
|
+
"responseDatatype": "JSON",
|
|
177
|
+
"headers": {},
|
|
178
|
+
"responseObjects": [
|
|
179
|
+
{
|
|
180
|
+
"type": "default",
|
|
181
|
+
"key": "",
|
|
182
|
+
"mockFile": ""
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "getSslCustomFields",
|
|
188
|
+
"protocol": "REST",
|
|
189
|
+
"method": "GET",
|
|
190
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/customFields?{query}",
|
|
191
|
+
"requestSchema": "schema.json",
|
|
192
|
+
"responseSchema": "schema.json",
|
|
193
|
+
"timeout": 0,
|
|
194
|
+
"sendEmpty": false,
|
|
195
|
+
"sendGetBody": false,
|
|
196
|
+
"requestDatatype": "JSON",
|
|
197
|
+
"responseDatatype": "JSON",
|
|
198
|
+
"headers": {},
|
|
199
|
+
"responseObjects": [
|
|
200
|
+
{
|
|
201
|
+
"type": "default",
|
|
202
|
+
"key": "",
|
|
203
|
+
"mockFile": ""
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "enrollSslCertificate",
|
|
209
|
+
"protocol": "REST",
|
|
210
|
+
"method": "POST",
|
|
211
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/enroll?{query}",
|
|
212
|
+
"requestSchema": "schema.json",
|
|
213
|
+
"responseSchema": "schema.json",
|
|
214
|
+
"timeout": 0,
|
|
215
|
+
"sendEmpty": false,
|
|
216
|
+
"requestDatatype": "JSON",
|
|
217
|
+
"responseDatatype": "JSON",
|
|
218
|
+
"headers": {},
|
|
219
|
+
"responseObjects": [
|
|
220
|
+
{
|
|
221
|
+
"type": "default",
|
|
222
|
+
"key": "",
|
|
223
|
+
"mockFile": ""
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "revokeSslCertificateById",
|
|
229
|
+
"protocol": "REST",
|
|
230
|
+
"method": "POST",
|
|
231
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/revoke/{pathv1}?{query}",
|
|
232
|
+
"requestSchema": "schema.json",
|
|
233
|
+
"responseSchema": "schema.json",
|
|
234
|
+
"timeout": 0,
|
|
235
|
+
"sendEmpty": false,
|
|
236
|
+
"requestDatatype": "JSON",
|
|
237
|
+
"responseDatatype": "JSON",
|
|
238
|
+
"headers": {},
|
|
239
|
+
"responseObjects": [
|
|
240
|
+
{
|
|
241
|
+
"type": "default",
|
|
242
|
+
"key": "",
|
|
243
|
+
"mockFile": ""
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "getSslCertTypes",
|
|
249
|
+
"protocol": "REST",
|
|
250
|
+
"method": "GET",
|
|
251
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/types?{query}",
|
|
252
|
+
"requestSchema": "schema.json",
|
|
253
|
+
"responseSchema": "schema.json",
|
|
254
|
+
"timeout": 0,
|
|
255
|
+
"sendEmpty": false,
|
|
256
|
+
"sendGetBody": false,
|
|
257
|
+
"requestDatatype": "JSON",
|
|
258
|
+
"responseDatatype": "JSON",
|
|
259
|
+
"headers": {},
|
|
260
|
+
"responseObjects": [
|
|
261
|
+
{
|
|
262
|
+
"type": "default",
|
|
263
|
+
"key": "",
|
|
264
|
+
"mockFile": ""
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "collectSslCertificate",
|
|
270
|
+
"protocol": "REST",
|
|
271
|
+
"method": "GET",
|
|
272
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/collect/{pathv1}?{query}",
|
|
273
|
+
"requestSchema": "schema.json",
|
|
274
|
+
"responseSchema": "schema.json",
|
|
275
|
+
"timeout": 0,
|
|
276
|
+
"sendEmpty": false,
|
|
277
|
+
"sendGetBody": false,
|
|
278
|
+
"requestDatatype": "JSON",
|
|
279
|
+
"responseDatatype": "JSON",
|
|
280
|
+
"headers": {},
|
|
281
|
+
"responseObjects": [
|
|
282
|
+
{
|
|
283
|
+
"type": "default",
|
|
284
|
+
"key": "",
|
|
285
|
+
"mockFile": ""
|
|
286
|
+
}
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "importSslCertificate",
|
|
291
|
+
"protocol": "REST",
|
|
292
|
+
"method": "POST",
|
|
293
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/import?{query}",
|
|
294
|
+
"requestSchema": "schema.json",
|
|
295
|
+
"responseSchema": "schema.json",
|
|
296
|
+
"timeout": 0,
|
|
297
|
+
"sendEmpty": false,
|
|
298
|
+
"requestDatatype": "FORM",
|
|
299
|
+
"responseDatatype": "JSON",
|
|
300
|
+
"headers": {},
|
|
301
|
+
"responseObjects": [
|
|
302
|
+
{
|
|
303
|
+
"type": "default",
|
|
304
|
+
"key": "",
|
|
305
|
+
"mockFile": ""
|
|
306
|
+
}
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "revokeSslCertificateBySerialNumber",
|
|
311
|
+
"protocol": "REST",
|
|
312
|
+
"method": "POST",
|
|
313
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/revoke/serial/{pathv1}?{query}",
|
|
314
|
+
"requestSchema": "schema.json",
|
|
315
|
+
"responseSchema": "schema.json",
|
|
316
|
+
"timeout": 0,
|
|
317
|
+
"sendEmpty": false,
|
|
318
|
+
"requestDatatype": "JSON",
|
|
319
|
+
"responseDatatype": "JSON",
|
|
320
|
+
"headers": {},
|
|
321
|
+
"responseObjects": [
|
|
322
|
+
{
|
|
323
|
+
"type": "default",
|
|
324
|
+
"key": "",
|
|
325
|
+
"mockFile": ""
|
|
326
|
+
}
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "declineSslCertificateById",
|
|
331
|
+
"protocol": "REST",
|
|
332
|
+
"method": "POST",
|
|
333
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/decline/{pathv1}?{query}",
|
|
334
|
+
"requestSchema": "schema.json",
|
|
335
|
+
"responseSchema": "schema.json",
|
|
336
|
+
"timeout": 0,
|
|
337
|
+
"sendEmpty": false,
|
|
338
|
+
"requestDatatype": "JSON",
|
|
339
|
+
"responseDatatype": "JSON",
|
|
340
|
+
"headers": {},
|
|
341
|
+
"responseObjects": [
|
|
342
|
+
{
|
|
343
|
+
"type": "default",
|
|
344
|
+
"key": "",
|
|
345
|
+
"mockFile": ""
|
|
346
|
+
}
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "renewSslCertificateBySerialNumber",
|
|
351
|
+
"protocol": "REST",
|
|
352
|
+
"method": "POST",
|
|
353
|
+
"entitypath": "{base_path}/{version}/api/ssl/v1/renew/{pathv1}?{query}",
|
|
354
|
+
"requestSchema": "schema.json",
|
|
355
|
+
"responseSchema": "schema.json",
|
|
356
|
+
"timeout": 0,
|
|
357
|
+
"sendEmpty": false,
|
|
358
|
+
"requestDatatype": "JSON",
|
|
359
|
+
"responseDatatype": "JSON",
|
|
360
|
+
"headers": {},
|
|
361
|
+
"responseObjects": [
|
|
362
|
+
{
|
|
363
|
+
"type": "default",
|
|
364
|
+
"key": "",
|
|
365
|
+
"mockFile": ""
|
|
366
|
+
}
|
|
367
|
+
]
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "renewSslCertificateById",
|
|
12
|
+
"enum": [
|
|
13
|
+
"renewSslCertificateById",
|
|
14
|
+
"approveSslCertificateById",
|
|
15
|
+
"getSslCertificateDetails",
|
|
16
|
+
"deleteSslCertificateById",
|
|
17
|
+
"downloadSslFromKeyStore",
|
|
18
|
+
"replaceSslCertificateById",
|
|
19
|
+
"getSslCertificatesList",
|
|
20
|
+
"updateSslCertificateDetails",
|
|
21
|
+
"enrollSslCertificateWithKeyGen",
|
|
22
|
+
"getSslCustomFields",
|
|
23
|
+
"enrollSslCertificate",
|
|
24
|
+
"revokeSslCertificateById",
|
|
25
|
+
"getSslCertTypes",
|
|
26
|
+
"collectSslCertificate",
|
|
27
|
+
"importSslCertificate",
|
|
28
|
+
"revokeSslCertificateBySerialNumber",
|
|
29
|
+
"declineSslCertificateById",
|
|
30
|
+
"renewSslCertificateBySerialNumber"
|
|
31
|
+
],
|
|
32
|
+
"external_name": "ph_request_type"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"definitions": {}
|
|
36
|
+
}
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "listAcmeAccountClients",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}/client?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"sendGetBody": false,
|
|
13
|
+
"requestDatatype": "JSON",
|
|
14
|
+
"responseDatatype": "JSON",
|
|
15
|
+
"headers": {},
|
|
16
|
+
"responseObjects": [
|
|
17
|
+
{
|
|
18
|
+
"type": "default",
|
|
19
|
+
"key": "",
|
|
20
|
+
"mockFile": ""
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "listAcmeAccountDomains",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}/domain?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"sendGetBody": false,
|
|
34
|
+
"requestDatatype": "JSON",
|
|
35
|
+
"responseDatatype": "JSON",
|
|
36
|
+
"headers": {},
|
|
37
|
+
"responseObjects": [
|
|
38
|
+
{
|
|
39
|
+
"type": "default",
|
|
40
|
+
"key": "",
|
|
41
|
+
"mockFile": ""
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "addDomainsToPublicAcmeAccount",
|
|
47
|
+
"protocol": "REST",
|
|
48
|
+
"method": "POST",
|
|
49
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}/domain?{query}",
|
|
50
|
+
"requestSchema": "schema.json",
|
|
51
|
+
"responseSchema": "schema.json",
|
|
52
|
+
"timeout": 0,
|
|
53
|
+
"sendEmpty": false,
|
|
54
|
+
"requestDatatype": "JSON",
|
|
55
|
+
"responseDatatype": "JSON",
|
|
56
|
+
"headers": {},
|
|
57
|
+
"responseObjects": [
|
|
58
|
+
{
|
|
59
|
+
"type": "default",
|
|
60
|
+
"key": "",
|
|
61
|
+
"mockFile": ""
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "removeDomainsFromPublicAcmeAccount",
|
|
67
|
+
"protocol": "REST",
|
|
68
|
+
"method": "DELETE",
|
|
69
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}/domain?{query}",
|
|
70
|
+
"requestSchema": "schema.json",
|
|
71
|
+
"responseSchema": "schema.json",
|
|
72
|
+
"timeout": 0,
|
|
73
|
+
"sendEmpty": false,
|
|
74
|
+
"requestDatatype": "JSON",
|
|
75
|
+
"responseDatatype": "JSON",
|
|
76
|
+
"headers": {},
|
|
77
|
+
"responseObjects": [
|
|
78
|
+
{
|
|
79
|
+
"type": "default",
|
|
80
|
+
"key": "",
|
|
81
|
+
"mockFile": ""
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "getPublicAcmeAccountDetails",
|
|
87
|
+
"protocol": "REST",
|
|
88
|
+
"method": "GET",
|
|
89
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}?{query}",
|
|
90
|
+
"requestSchema": "schema.json",
|
|
91
|
+
"responseSchema": "schema.json",
|
|
92
|
+
"timeout": 0,
|
|
93
|
+
"sendEmpty": false,
|
|
94
|
+
"sendGetBody": false,
|
|
95
|
+
"requestDatatype": "JSON",
|
|
96
|
+
"responseDatatype": "JSON",
|
|
97
|
+
"headers": {},
|
|
98
|
+
"responseObjects": [
|
|
99
|
+
{
|
|
100
|
+
"type": "default",
|
|
101
|
+
"key": "",
|
|
102
|
+
"mockFile": ""
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "updatePublicAcmeAccount",
|
|
108
|
+
"protocol": "REST",
|
|
109
|
+
"method": "PUT",
|
|
110
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}?{query}",
|
|
111
|
+
"requestSchema": "schema.json",
|
|
112
|
+
"responseSchema": "schema.json",
|
|
113
|
+
"timeout": 0,
|
|
114
|
+
"sendEmpty": false,
|
|
115
|
+
"requestDatatype": "JSON",
|
|
116
|
+
"responseDatatype": "JSON",
|
|
117
|
+
"headers": {},
|
|
118
|
+
"responseObjects": [
|
|
119
|
+
{
|
|
120
|
+
"type": "default",
|
|
121
|
+
"key": "",
|
|
122
|
+
"mockFile": ""
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "deletePublicAcmeAccount",
|
|
128
|
+
"protocol": "REST",
|
|
129
|
+
"method": "DELETE",
|
|
130
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}?{query}",
|
|
131
|
+
"requestSchema": "schema.json",
|
|
132
|
+
"responseSchema": "schema.json",
|
|
133
|
+
"timeout": 0,
|
|
134
|
+
"sendEmpty": false,
|
|
135
|
+
"requestDatatype": "JSON",
|
|
136
|
+
"responseDatatype": "JSON",
|
|
137
|
+
"headers": {},
|
|
138
|
+
"responseObjects": [
|
|
139
|
+
{
|
|
140
|
+
"type": "default",
|
|
141
|
+
"key": "",
|
|
142
|
+
"mockFile": ""
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "getPublicAcmeAccountsList",
|
|
148
|
+
"protocol": "REST",
|
|
149
|
+
"method": "GET",
|
|
150
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account?{query}",
|
|
151
|
+
"requestSchema": "schema.json",
|
|
152
|
+
"responseSchema": "schema.json",
|
|
153
|
+
"timeout": 0,
|
|
154
|
+
"sendEmpty": false,
|
|
155
|
+
"sendGetBody": false,
|
|
156
|
+
"requestDatatype": "JSON",
|
|
157
|
+
"responseDatatype": "JSON",
|
|
158
|
+
"headers": {},
|
|
159
|
+
"responseObjects": [
|
|
160
|
+
{
|
|
161
|
+
"type": "default",
|
|
162
|
+
"key": "",
|
|
163
|
+
"mockFile": ""
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "createPublicAcmeAccount",
|
|
169
|
+
"protocol": "REST",
|
|
170
|
+
"method": "POST",
|
|
171
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account?{query}",
|
|
172
|
+
"requestSchema": "schema.json",
|
|
173
|
+
"responseSchema": "schema.json",
|
|
174
|
+
"timeout": 0,
|
|
175
|
+
"sendEmpty": false,
|
|
176
|
+
"requestDatatype": "JSON",
|
|
177
|
+
"responseDatatype": "JSON",
|
|
178
|
+
"headers": {},
|
|
179
|
+
"responseObjects": [
|
|
180
|
+
{
|
|
181
|
+
"type": "default",
|
|
182
|
+
"key": "",
|
|
183
|
+
"mockFile": ""
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "deletePublicAcmeAccountClient",
|
|
189
|
+
"protocol": "REST",
|
|
190
|
+
"method": "DELETE",
|
|
191
|
+
"entitypath": "{base_path}/{version}/api/acme/v2/account/{pathv1}/client/{pathv2}?{query}",
|
|
192
|
+
"requestSchema": "schema.json",
|
|
193
|
+
"responseSchema": "schema.json",
|
|
194
|
+
"timeout": 0,
|
|
195
|
+
"sendEmpty": false,
|
|
196
|
+
"requestDatatype": "JSON",
|
|
197
|
+
"responseDatatype": "JSON",
|
|
198
|
+
"headers": {},
|
|
199
|
+
"responseObjects": [
|
|
200
|
+
{
|
|
201
|
+
"type": "default",
|
|
202
|
+
"key": "",
|
|
203
|
+
"mockFile": ""
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
}
|
|
207
|
+
]
|
|
208
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "listAcmeAccountClients",
|
|
12
|
+
"enum": [
|
|
13
|
+
"listAcmeAccountClients",
|
|
14
|
+
"listAcmeAccountDomains",
|
|
15
|
+
"addDomainsToPublicAcmeAccount",
|
|
16
|
+
"removeDomainsFromPublicAcmeAccount",
|
|
17
|
+
"getPublicAcmeAccountDetails",
|
|
18
|
+
"updatePublicAcmeAccount",
|
|
19
|
+
"deletePublicAcmeAccount",
|
|
20
|
+
"getPublicAcmeAccountsList",
|
|
21
|
+
"createPublicAcmeAccount",
|
|
22
|
+
"deletePublicAcmeAccountClient"
|
|
23
|
+
],
|
|
24
|
+
"external_name": "ph_request_type"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"definitions": {}
|
|
28
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getPublicAcmeServersList",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/acme/v1/server?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"sendGetBody": false,
|
|
13
|
+
"requestDatatype": "JSON",
|
|
14
|
+
"responseDatatype": "JSON",
|
|
15
|
+
"headers": {},
|
|
16
|
+
"responseObjects": [
|
|
17
|
+
{
|
|
18
|
+
"type": "default",
|
|
19
|
+
"key": "",
|
|
20
|
+
"mockFile": ""
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "getPublicAcmeServersList",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getPublicAcmeServersList"
|
|
14
|
+
],
|
|
15
|
+
"external_name": "ph_request_type"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"definitions": {}
|
|
19
|
+
}
|