@itentialopensource/adapter-digicert_pki 0.1.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +0 -1
- package/.jshintrc +3 -0
- package/CALLS.md +957 -3
- package/CHANGELOG.md +16 -1
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/adapter.js +13682 -334
- package/adapterBase.js +538 -873
- package/changelogs/changelog.md +16 -0
- package/entities/ACME/action.json +166 -0
- package/entities/ACME/mockdatafiles/createAcmeAuthentication-default.json +21 -0
- package/entities/ACME/mockdatafiles/getAcmeAuthentication-default.json +21 -0
- package/entities/ACME/mockdatafiles/listAcmeAuthentication-default.json +41 -0
- package/entities/ACME/mockdatafiles/updateAcmeAuthentication-default.json +21 -0
- package/entities/ACME/schema.json +125 -0
- package/entities/AuthenticationCACertificates/action.json +107 -0
- package/entities/AuthenticationCACertificates/schema.json +155 -0
- package/entities/AuthenticationCATemplates/action.json +187 -0
- package/entities/AuthenticationCATemplates/mockdatafiles/createAuthenticationCATemplate-default.json +33 -0
- package/entities/AuthenticationCATemplates/mockdatafiles/getAuthenticationCATemplate-default.json +33 -0
- package/entities/AuthenticationCATemplates/mockdatafiles/updateAuthenticationCATemplate-default.json +33 -0
- package/entities/AuthenticationCATemplates/schema.json +137 -0
- package/entities/AuthenticationCertificates/action.json +166 -0
- package/entities/AuthenticationCertificates/mockdatafiles/addAuthenticationCertificate-default.json +48 -0
- package/entities/AuthenticationCertificates/mockdatafiles/getAuthenticationCertificateDetails-default.json +49 -0
- package/entities/AuthenticationCertificates/mockdatafiles/listAuthenticationCertificates-default.json +93 -0
- package/entities/AuthenticationCertificates/mockdatafiles/updateAuthenticationCertificate-default.json +48 -0
- package/entities/AuthenticationCertificates/schema.json +202 -0
- package/entities/BatchCertificateEnrollment/action.json +268 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/batchCSREnroll-default.json +22 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/batchEnrollWithKeyGen-default.json +22 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/batchEnrollWithKeyGenMac-default.json +22 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/downloadCertificates-default.json +18 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/getBatchJobSettings-default.json +22 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/regenerateBatchJobPasscode-default.json +22 -0
- package/entities/BatchCertificateEnrollment/mockdatafiles/updateBatchJobSettings-default.json +22 -0
- package/entities/BatchCertificateEnrollment/schema.json +284 -0
- package/entities/CertificateProfiles/action.json +206 -0
- package/entities/CertificateProfiles/mockdatafiles/listCertificateProfiles-default.json +219 -0
- package/entities/CertificateProfiles/schema.json +116 -0
- package/entities/CertificateRequests/action.json +25 -0
- package/entities/CertificateRequests/mockdatafiles/getRequestStatus-default.json +5 -0
- package/entities/CertificateRequests/schema.json +30 -0
- package/entities/CertificateTemplates/action.json +186 -0
- package/entities/CertificateTemplates/schema.json +104 -0
- package/entities/Certificates/action.json +312 -0
- package/entities/Certificates/mockdatafiles/downloadApprovedCertificate-default.json +47 -0
- package/entities/Certificates/mockdatafiles/renewBySerial-default.json +23 -0
- package/entities/Certificates/mockdatafiles/renewCertificate-default.json +31 -0
- package/entities/Certificates/schema.json +462 -0
- package/entities/DeviceProfiles/action.json +126 -0
- package/entities/DeviceProfiles/mockdatafiles/createDeviceProfile-default.json +28 -0
- package/entities/DeviceProfiles/mockdatafiles/getDeviceProfile-default.json +28 -0
- package/entities/DeviceProfiles/mockdatafiles/listdeviceprofiles-default.json +53 -0
- package/entities/DeviceProfiles/mockdatafiles/updateDeviceProfile-default.json +28 -0
- package/entities/DeviceProfiles/schema.json +57 -0
- package/entities/Devices/action.json +166 -0
- package/entities/Devices/mockdatafiles/archiveDevice-default.json +33 -0
- package/entities/Devices/mockdatafiles/disableDevice-default.json +33 -0
- package/entities/Devices/mockdatafiles/enableDevice-default.json +33 -0
- package/entities/Devices/mockdatafiles/restoreDevice-default.json +33 -0
- package/entities/Devices/schema.json +103 -0
- package/entities/DevicesV2/action.json +186 -0
- package/entities/DevicesV2/mockdatafiles/archiveDeviceV2-default.json +33 -0
- package/entities/DevicesV2/mockdatafiles/disableDeviceV2-default.json +33 -0
- package/entities/DevicesV2/mockdatafiles/enableDeviceV2-default.json +33 -0
- package/entities/DevicesV2/mockdatafiles/restoreDeviceV2-default.json +33 -0
- package/entities/DevicesV2/schema.json +115 -0
- package/entities/Divisions/action.json +288 -0
- package/entities/Divisions/schema.json +164 -0
- package/entities/EnrollmentProfilePasscodes/action.json +186 -0
- package/entities/EnrollmentProfilePasscodes/schema.json +181 -0
- package/entities/EnrollmentProfiles/action.json +191 -0
- package/entities/EnrollmentProfiles/mockdatafiles/getEnrollmentProfile-default.json +153 -0
- package/entities/EnrollmentProfiles/mockdatafiles/getEnrollmentProfileSpecification-default.json +125 -0
- package/entities/EnrollmentProfiles/mockdatafiles/updateEnrollmentProfile-default.json +117 -0
- package/entities/EnrollmentProfiles/schema.json +148 -0
- package/entities/ExternalBatchCertificateEnrollment/action.json +150 -0
- package/entities/ExternalBatchCertificateEnrollment/mockdatafiles/batchEnrollExternal-default.json +16 -0
- package/entities/ExternalBatchCertificateEnrollment/mockdatafiles/downloadByCertificateValue-default.json +154 -0
- package/entities/ExternalBatchCertificateEnrollment/mockdatafiles/downloadByCommonName-default.json +150 -0
- package/entities/ExternalBatchCertificateEnrollment/mockdatafiles/downloadByJobIdAndCertificateValue-default.json +36 -0
- package/entities/ExternalBatchCertificateEnrollment/mockdatafiles/downloadByJobIdAndCommonName-default.json +130 -0
- package/entities/ExternalBatchCertificateEnrollment/mockdatafiles/downloadByJobIdAndUniqueId-default.json +42 -0
- package/entities/ExternalBatchCertificateEnrollment/schema.json +102 -0
- package/entities/Gateways/action.json +187 -0
- package/entities/Gateways/schema.json +126 -0
- package/entities/ICAs/action.json +46 -0
- package/entities/ICAs/schema.json +163 -0
- package/entities/OCSPGroups/action.json +167 -0
- package/entities/OCSPGroups/schema.json +466 -0
- package/metadata.json +49 -0
- package/package.json +22 -25
- package/pronghorn.json +23155 -266
- package/propertiesSchema.json +455 -42
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +3224 -0
- package/report/adapter-openapi.yaml +2185 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691508686598.json +120 -0
- package/report/updateReport1692203137726.json +120 -0
- package/report/updateReport1694467869659.json +120 -0
- package/report/updateReport1698422457936.json +120 -0
- package/sampleProperties.json +67 -6
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +4704 -32
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +5211 -148
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +71 -23
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,126 @@
|
|
|
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": "",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getGatewayDetails",
|
|
14
|
+
"updateGateway",
|
|
15
|
+
"listGateways",
|
|
16
|
+
"createGateway",
|
|
17
|
+
"enableGateway",
|
|
18
|
+
"disableGateway",
|
|
19
|
+
"deleteGateway",
|
|
20
|
+
"restoreGateway",
|
|
21
|
+
"downloadGatewayConfig"
|
|
22
|
+
],
|
|
23
|
+
"external_name": "ph_request_type"
|
|
24
|
+
},
|
|
25
|
+
"gatewayId": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "Gateway ID.",
|
|
28
|
+
"parse": false,
|
|
29
|
+
"encode": false,
|
|
30
|
+
"encrypt": {
|
|
31
|
+
"type": "AES",
|
|
32
|
+
"key": ""
|
|
33
|
+
},
|
|
34
|
+
"external_name": "gateway_id"
|
|
35
|
+
},
|
|
36
|
+
"accountId": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"description": "Limits results to gateways for an account with the given ID.",
|
|
39
|
+
"parse": false,
|
|
40
|
+
"encode": false,
|
|
41
|
+
"encrypt": {
|
|
42
|
+
"type": "AES",
|
|
43
|
+
"key": ""
|
|
44
|
+
},
|
|
45
|
+
"external_name": "account_id"
|
|
46
|
+
},
|
|
47
|
+
"ipAddress": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "Limits results to gateways with IP address restrictions containing the given string.",
|
|
50
|
+
"parse": false,
|
|
51
|
+
"encode": false,
|
|
52
|
+
"encrypt": {
|
|
53
|
+
"type": "AES",
|
|
54
|
+
"key": ""
|
|
55
|
+
},
|
|
56
|
+
"external_name": "ip_address"
|
|
57
|
+
},
|
|
58
|
+
"createdAtFrom": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"description": "Limits results to gateways created **after** the given date and time (UTC). Use with `created_at_to` to search for gateways with a `created_at` date in a specific range.",
|
|
61
|
+
"parse": false,
|
|
62
|
+
"encode": false,
|
|
63
|
+
"encrypt": {
|
|
64
|
+
"type": "AES",
|
|
65
|
+
"key": ""
|
|
66
|
+
},
|
|
67
|
+
"external_name": "created_at_from"
|
|
68
|
+
},
|
|
69
|
+
"createdAtTo": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "Limits results to gateways created **before** the given date and time (UTC). Use with `created_at_from` to search for gateways with a `created_at` date in a specific rang...(description truncated)",
|
|
72
|
+
"parse": false,
|
|
73
|
+
"encode": false,
|
|
74
|
+
"encrypt": {
|
|
75
|
+
"type": "AES",
|
|
76
|
+
"key": ""
|
|
77
|
+
},
|
|
78
|
+
"external_name": "created_at_to"
|
|
79
|
+
},
|
|
80
|
+
"configStatus": {
|
|
81
|
+
"type": "",
|
|
82
|
+
"description": "Limits results to gateways with the given `config_status`.",
|
|
83
|
+
"parse": false,
|
|
84
|
+
"encode": false,
|
|
85
|
+
"encrypt": {
|
|
86
|
+
"type": "AES",
|
|
87
|
+
"key": ""
|
|
88
|
+
},
|
|
89
|
+
"external_name": "config_status"
|
|
90
|
+
},
|
|
91
|
+
"macAddress": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"description": "Limits results to gateways hosted on servers with MAC addresses that contain the given string.",
|
|
94
|
+
"parse": false,
|
|
95
|
+
"encode": false,
|
|
96
|
+
"encrypt": {
|
|
97
|
+
"type": "AES",
|
|
98
|
+
"key": ""
|
|
99
|
+
},
|
|
100
|
+
"external_name": "mac_address"
|
|
101
|
+
},
|
|
102
|
+
"sortBy": {
|
|
103
|
+
"type": "",
|
|
104
|
+
"description": "Sorts results by the given property. Case-insensitive.",
|
|
105
|
+
"parse": false,
|
|
106
|
+
"encode": false,
|
|
107
|
+
"encrypt": {
|
|
108
|
+
"type": "AES",
|
|
109
|
+
"key": ""
|
|
110
|
+
},
|
|
111
|
+
"external_name": "sort_by"
|
|
112
|
+
},
|
|
113
|
+
"sortDirection": {
|
|
114
|
+
"type": "",
|
|
115
|
+
"description": "Sorts results in ascending or descending order by the value of the `sort_by` property. Case-insensitive.",
|
|
116
|
+
"parse": false,
|
|
117
|
+
"encode": false,
|
|
118
|
+
"encrypt": {
|
|
119
|
+
"type": "AES",
|
|
120
|
+
"key": ""
|
|
121
|
+
},
|
|
122
|
+
"external_name": "sort_direction"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"definitions": {}
|
|
126
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getICA",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v1/managed-ca/{pathv1}?{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": "listICAs",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/v1/managed-ca?{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
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
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": "",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getICA",
|
|
14
|
+
"listICAs"
|
|
15
|
+
],
|
|
16
|
+
"external_name": "ph_request_type"
|
|
17
|
+
},
|
|
18
|
+
"icaId": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Intermediate CA ID.",
|
|
21
|
+
"parse": false,
|
|
22
|
+
"encode": false,
|
|
23
|
+
"encrypt": {
|
|
24
|
+
"type": "AES",
|
|
25
|
+
"key": ""
|
|
26
|
+
},
|
|
27
|
+
"external_name": "ica_id"
|
|
28
|
+
},
|
|
29
|
+
"accountId": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "Limits results to ICAs for an account with the given ID.",
|
|
32
|
+
"parse": false,
|
|
33
|
+
"encode": false,
|
|
34
|
+
"encrypt": {
|
|
35
|
+
"type": "AES",
|
|
36
|
+
"key": ""
|
|
37
|
+
},
|
|
38
|
+
"external_name": "account_id"
|
|
39
|
+
},
|
|
40
|
+
"divisionId": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"description": "Limits results to ICAs for a division with the given ID.",
|
|
43
|
+
"parse": false,
|
|
44
|
+
"encode": false,
|
|
45
|
+
"encrypt": {
|
|
46
|
+
"type": "AES",
|
|
47
|
+
"key": ""
|
|
48
|
+
},
|
|
49
|
+
"external_name": "division_id"
|
|
50
|
+
},
|
|
51
|
+
"commonName": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "Limits results to ICAs with the given common name.",
|
|
54
|
+
"parse": false,
|
|
55
|
+
"encode": false,
|
|
56
|
+
"encrypt": {
|
|
57
|
+
"type": "AES",
|
|
58
|
+
"key": ""
|
|
59
|
+
},
|
|
60
|
+
"external_name": "common_name"
|
|
61
|
+
},
|
|
62
|
+
"serialNumber": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"description": "Limits results to ICAs with the given serial number.",
|
|
65
|
+
"parse": false,
|
|
66
|
+
"encode": false,
|
|
67
|
+
"encrypt": {
|
|
68
|
+
"type": "AES",
|
|
69
|
+
"key": ""
|
|
70
|
+
},
|
|
71
|
+
"external_name": "serial_number"
|
|
72
|
+
},
|
|
73
|
+
"includePemCaBody": {
|
|
74
|
+
"type": "boolean",
|
|
75
|
+
"description": "If true (default), each returned ICA record includes a `body` field with the PEM-formatted ICA certificate body. If false, ICA records omit the `body` field.",
|
|
76
|
+
"parse": false,
|
|
77
|
+
"encode": false,
|
|
78
|
+
"encrypt": {
|
|
79
|
+
"type": "AES",
|
|
80
|
+
"key": ""
|
|
81
|
+
},
|
|
82
|
+
"external_name": "include_pem_ca_body"
|
|
83
|
+
},
|
|
84
|
+
"includePemCaChain": {
|
|
85
|
+
"type": "boolean",
|
|
86
|
+
"description": "If true (default), each returned ICA record includes a `chain` field containing details about each certificate in the ICA certificate chain. If false, ICA records omit th...(description truncated)",
|
|
87
|
+
"parse": false,
|
|
88
|
+
"encode": false,
|
|
89
|
+
"encrypt": {
|
|
90
|
+
"type": "AES",
|
|
91
|
+
"key": ""
|
|
92
|
+
},
|
|
93
|
+
"external_name": "include_pem_ca_chain"
|
|
94
|
+
},
|
|
95
|
+
"validFromFrom": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"description": "Limits results to ICAs with a `valid_from` value on or after the given date or date-time. Use with `valid_from_to` to search for ICAs with a `valid_from` date in a specif...(description truncated)",
|
|
98
|
+
"parse": false,
|
|
99
|
+
"encode": false,
|
|
100
|
+
"encrypt": {
|
|
101
|
+
"type": "AES",
|
|
102
|
+
"key": ""
|
|
103
|
+
},
|
|
104
|
+
"external_name": "valid_from_from"
|
|
105
|
+
},
|
|
106
|
+
"validFromTo": {
|
|
107
|
+
"type": "string",
|
|
108
|
+
"description": "Limits results to ICAs with a `valid_from` value on or before the given date or date-time. Use with `valid_from_from` to search for ICAs with a `valid_from` date in a spe...(description truncated)",
|
|
109
|
+
"parse": false,
|
|
110
|
+
"encode": false,
|
|
111
|
+
"encrypt": {
|
|
112
|
+
"type": "AES",
|
|
113
|
+
"key": ""
|
|
114
|
+
},
|
|
115
|
+
"external_name": "valid_from_to"
|
|
116
|
+
},
|
|
117
|
+
"validToFrom": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Limits results to ICAs with a `valid_to` value on or after the given date or date-time. Use with `valid_to_to` to search for ICAs with a `valid_to` date in a specific ran...(description truncated)",
|
|
120
|
+
"parse": false,
|
|
121
|
+
"encode": false,
|
|
122
|
+
"encrypt": {
|
|
123
|
+
"type": "AES",
|
|
124
|
+
"key": ""
|
|
125
|
+
},
|
|
126
|
+
"external_name": "valid_to_from"
|
|
127
|
+
},
|
|
128
|
+
"validToTo": {
|
|
129
|
+
"type": "string",
|
|
130
|
+
"description": "Limits results to ICAs with a `valid_to` value on or before the given date or date-time. Use with `valid_to_from` to search for ICAs with a `valid_to` date in a specific ...(description truncated)",
|
|
131
|
+
"parse": false,
|
|
132
|
+
"encode": false,
|
|
133
|
+
"encrypt": {
|
|
134
|
+
"type": "AES",
|
|
135
|
+
"key": ""
|
|
136
|
+
},
|
|
137
|
+
"external_name": "valid_to_to"
|
|
138
|
+
},
|
|
139
|
+
"sortBy": {
|
|
140
|
+
"type": "",
|
|
141
|
+
"description": "Sorts results by the given property. Case-insensitive. If not provided, results are sorted in descending order by date created (`created_at`).",
|
|
142
|
+
"parse": false,
|
|
143
|
+
"encode": false,
|
|
144
|
+
"encrypt": {
|
|
145
|
+
"type": "AES",
|
|
146
|
+
"key": ""
|
|
147
|
+
},
|
|
148
|
+
"external_name": "sort_by"
|
|
149
|
+
},
|
|
150
|
+
"sortDirection": {
|
|
151
|
+
"type": "",
|
|
152
|
+
"description": "Sorts results in ascending or descending order by the value of the `sort_by` property. Case-insensitive.",
|
|
153
|
+
"parse": false,
|
|
154
|
+
"encode": false,
|
|
155
|
+
"encrypt": {
|
|
156
|
+
"type": "AES",
|
|
157
|
+
"key": ""
|
|
158
|
+
},
|
|
159
|
+
"external_name": "sort_direction"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"definitions": {}
|
|
163
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "listOCSPGroups",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group?{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": "createOCSPGroup",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "POST",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"requestDatatype": "JSON",
|
|
34
|
+
"responseDatatype": "JSON",
|
|
35
|
+
"headers": {},
|
|
36
|
+
"responseObjects": [
|
|
37
|
+
{
|
|
38
|
+
"type": "default",
|
|
39
|
+
"key": "",
|
|
40
|
+
"mockFile": ""
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "getOCSPGroupDetails",
|
|
46
|
+
"protocol": "REST",
|
|
47
|
+
"method": "GET",
|
|
48
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group/{pathv1}?{query}",
|
|
49
|
+
"requestSchema": "schema.json",
|
|
50
|
+
"responseSchema": "schema.json",
|
|
51
|
+
"timeout": 0,
|
|
52
|
+
"sendEmpty": false,
|
|
53
|
+
"sendGetBody": 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": "updateOCSPGroup",
|
|
67
|
+
"protocol": "REST",
|
|
68
|
+
"method": "PUT",
|
|
69
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group/{pathv1}?{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": "deleteOCSPGroup",
|
|
87
|
+
"protocol": "REST",
|
|
88
|
+
"method": "DELETE",
|
|
89
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group/{pathv1}?{query}",
|
|
90
|
+
"requestSchema": "schema.json",
|
|
91
|
+
"responseSchema": "schema.json",
|
|
92
|
+
"timeout": 0,
|
|
93
|
+
"sendEmpty": 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": "addCertsOCSPGroup",
|
|
107
|
+
"protocol": "REST",
|
|
108
|
+
"method": "PUT",
|
|
109
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group/{pathv1}/add-certificates?{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": "removeCertsOCSPGroup",
|
|
127
|
+
"protocol": "REST",
|
|
128
|
+
"method": "PUT",
|
|
129
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group/{pathv1}/remove-certificates?{query}",
|
|
130
|
+
"requestSchema": "schema.json",
|
|
131
|
+
"responseSchema": "schema.json",
|
|
132
|
+
"timeout": 0,
|
|
133
|
+
"sendEmpty": false,
|
|
134
|
+
"requestDatatype": "JSON",
|
|
135
|
+
"responseDatatype": "JSON",
|
|
136
|
+
"headers": {},
|
|
137
|
+
"responseObjects": [
|
|
138
|
+
{
|
|
139
|
+
"type": "default",
|
|
140
|
+
"key": "",
|
|
141
|
+
"mockFile": ""
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "listOCSPGroupCerts",
|
|
147
|
+
"protocol": "REST",
|
|
148
|
+
"method": "GET",
|
|
149
|
+
"entitypath": "{base_path}/{version}/api/v1/ocsp-group/{pathv1}/certificates?{query}",
|
|
150
|
+
"requestSchema": "schema.json",
|
|
151
|
+
"responseSchema": "schema.json",
|
|
152
|
+
"timeout": 0,
|
|
153
|
+
"sendEmpty": false,
|
|
154
|
+
"sendGetBody": false,
|
|
155
|
+
"requestDatatype": "JSON",
|
|
156
|
+
"responseDatatype": "JSON",
|
|
157
|
+
"headers": {},
|
|
158
|
+
"responseObjects": [
|
|
159
|
+
{
|
|
160
|
+
"type": "default",
|
|
161
|
+
"key": "",
|
|
162
|
+
"mockFile": ""
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|