@itentialopensource/adapter-paloalto_prismacloud 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/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +48 -0
- package/CONTRIBUTING.md +158 -0
- package/LICENSE +201 -0
- package/README.md +687 -0
- package/adapter.js +11372 -0
- package/adapterBase.js +1028 -0
- package/entities/.generic/action.json +109 -0
- package/entities/.generic/schema.json +23 -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/AccessKeys/action.json +126 -0
- package/entities/AccessKeys/schema.json +24 -0
- package/entities/AccountGroups/action.json +148 -0
- package/entities/AccountGroups/schema.json +25 -0
- package/entities/AlertRules/action.json +25 -0
- package/entities/AlertRules/schema.json +19 -0
- package/entities/AlertsIncomplete/action.json +107 -0
- package/entities/AlertsIncomplete/schema.json +23 -0
- package/entities/AssetInventory/action.json +129 -0
- package/entities/AssetInventory/schema.json +24 -0
- package/entities/AuditLogs/action.json +25 -0
- package/entities/AuditLogs/schema.json +19 -0
- package/entities/CloudAccounts/action.json +409 -0
- package/entities/CloudAccounts/schema.json +38 -0
- package/entities/ComplianceDashboard/action.json +87 -0
- package/entities/ComplianceDashboard/schema.json +22 -0
- package/entities/CompliancePosture/action.json +151 -0
- package/entities/CompliancePosture/schema.json +58 -0
- package/entities/ComplianceStandards/action.json +109 -0
- package/entities/ComplianceStandards/schema.json +23 -0
- package/entities/InfrastructureAsCode/action.json +86 -0
- package/entities/InfrastructureAsCode/schema.json +22 -0
- package/entities/IntegrationsIncomplete/action.json +148 -0
- package/entities/IntegrationsIncomplete/schema.json +25 -0
- package/entities/Licensing/action.json +24 -0
- package/entities/Licensing/schema.json +19 -0
- package/entities/Login/action.json +45 -0
- package/entities/Login/schema.json +20 -0
- package/entities/Policy/action.json +209 -0
- package/entities/Policy/schema.json +149 -0
- package/entities/Search/action.json +24 -0
- package/entities/Search/schema.json +19 -0
- package/entities/Settings/action.json +45 -0
- package/entities/Settings/schema.json +20 -0
- package/entities/SupportApp/action.json +25 -0
- package/entities/SupportApp/schema.json +19 -0
- package/entities/TimeRangeModelInfoOnly/action.json +25 -0
- package/entities/TimeRangeModelInfoOnly/schema.json +19 -0
- package/entities/UserProfile/action.json +271 -0
- package/entities/UserProfile/schema.json +42 -0
- package/entities/UserRoles/action.json +127 -0
- package/entities/UserRoles/schema.json +24 -0
- package/error.json +184 -0
- package/package.json +84 -0
- package/pronghorn.json +6555 -0
- package/propertiesSchema.json +840 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/creationReport.json +1019 -0
- package/report/openapi-prisma.json +10213 -0
- package/sampleProperties.json +106 -0
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +3712 -0
- package/test/unit/adapterBaseTestUnit.js +944 -0
- package/test/unit/adapterTestUnit.js +4219 -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 +224 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/pre-commit.sh +27 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +169 -0
- package/utils/tbUtils.js +445 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +190 -0
- package/workflows/README.md +3 -0
|
@@ -0,0 +1,1019 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": [],
|
|
3
|
+
"statistics": [
|
|
4
|
+
{
|
|
5
|
+
"owner": "errorJson",
|
|
6
|
+
"description": "Standard adapter errors available for use",
|
|
7
|
+
"value": 30
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"owner": "packageJson",
|
|
11
|
+
"description": "Number of production dependencies",
|
|
12
|
+
"value": 13
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"owner": "packageJson",
|
|
16
|
+
"description": "Number of development dependencies",
|
|
17
|
+
"value": 7
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"owner": "packageJson",
|
|
21
|
+
"description": "Number of npm scripts",
|
|
22
|
+
"value": 22
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"owner": "packageJson",
|
|
26
|
+
"description": "Runtime Library dependency",
|
|
27
|
+
"value": "^4.44.11"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"owner": "propertiesSchemaJson",
|
|
31
|
+
"description": "Adapter properties defined in the propertiesSchema file",
|
|
32
|
+
"value": 64
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"owner": "adapterJS",
|
|
36
|
+
"description": "Lines of code generated in adapter.js",
|
|
37
|
+
"value": 11373
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"owner": "adapterJS",
|
|
41
|
+
"description": "Number of Functions added to adapter.js",
|
|
42
|
+
"value": 110
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"owner": "pronghornJson",
|
|
46
|
+
"description": "Number of Methods added to pronghorn.json",
|
|
47
|
+
"value": 110
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"owner": "readmeMd",
|
|
51
|
+
"description": "Number of lines in the README.md",
|
|
52
|
+
"value": 688
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"owner": "unitTestJS",
|
|
56
|
+
"description": "Number of lines of code in unit tests",
|
|
57
|
+
"value": 4220
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"owner": "unitTestJS",
|
|
61
|
+
"description": "Number of unit tests",
|
|
62
|
+
"value": 253
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"owner": "integrationTestJS",
|
|
66
|
+
"description": "Number of lines of code in integration tests",
|
|
67
|
+
"value": 3713
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"owner": "integrationTestJS",
|
|
71
|
+
"description": "Number of integration tests",
|
|
72
|
+
"value": 115
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"owner": "actionJson",
|
|
76
|
+
"description": "Number of actions for Login entity",
|
|
77
|
+
"value": 2
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"owner": "actionJson",
|
|
81
|
+
"description": "Number of actions for UserProfile entity",
|
|
82
|
+
"value": 13
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"owner": "actionJson",
|
|
86
|
+
"description": "Number of actions for UserRoles entity",
|
|
87
|
+
"value": 6
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"owner": "actionJson",
|
|
91
|
+
"description": "Number of actions for AccessKeys entity",
|
|
92
|
+
"value": 6
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"owner": "actionJson",
|
|
96
|
+
"description": "Number of actions for CloudAccounts entity",
|
|
97
|
+
"value": 20
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"owner": "actionJson",
|
|
101
|
+
"description": "Number of actions for AccountGroups entity",
|
|
102
|
+
"value": 7
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"owner": "actionJson",
|
|
106
|
+
"description": "Number of actions for Policy entity",
|
|
107
|
+
"value": 10
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"owner": "actionJson",
|
|
111
|
+
"description": "Number of actions for TimeRangeModelInfoOnly entity",
|
|
112
|
+
"value": 1
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"owner": "actionJson",
|
|
116
|
+
"description": "Number of actions for AlertsIncomplete entity",
|
|
117
|
+
"value": 5
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"owner": "actionJson",
|
|
121
|
+
"description": "Number of actions for AssetInventory entity",
|
|
122
|
+
"value": 6
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"owner": "actionJson",
|
|
126
|
+
"description": "Number of actions for CompliancePosture entity",
|
|
127
|
+
"value": 7
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"owner": "actionJson",
|
|
131
|
+
"description": "Number of actions for ComplianceDashboard entity",
|
|
132
|
+
"value": 4
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"owner": "actionJson",
|
|
136
|
+
"description": "Number of actions for ComplianceStandards entity",
|
|
137
|
+
"value": 5
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"owner": "actionJson",
|
|
141
|
+
"description": "Number of actions for AuditLogs entity",
|
|
142
|
+
"value": 1
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"owner": "actionJson",
|
|
146
|
+
"description": "Number of actions for Licensing entity",
|
|
147
|
+
"value": 1
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"owner": "actionJson",
|
|
151
|
+
"description": "Number of actions for Search entity",
|
|
152
|
+
"value": 1
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"owner": "actionJson",
|
|
156
|
+
"description": "Number of actions for AlertRules entity",
|
|
157
|
+
"value": 1
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"owner": "actionJson",
|
|
161
|
+
"description": "Number of actions for IntegrationsIncomplete entity",
|
|
162
|
+
"value": 7
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"owner": "actionJson",
|
|
166
|
+
"description": "Number of actions for Settings entity",
|
|
167
|
+
"value": 2
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"owner": "actionJson",
|
|
171
|
+
"description": "Number of actions for InfrastructureAsCode entity",
|
|
172
|
+
"value": 4
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"owner": "actionJson",
|
|
176
|
+
"description": "Number of actions for SupportApp entity",
|
|
177
|
+
"value": 1
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"owner": "actionJson",
|
|
181
|
+
"description": "Total number of actions",
|
|
182
|
+
"value": 110
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"owner": "actionJson",
|
|
186
|
+
"description": "Total number of entities",
|
|
187
|
+
"value": 21
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"owner": "schemaJson",
|
|
191
|
+
"description": "Number of schemas for Login entity",
|
|
192
|
+
"value": 1
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"owner": "schemaJson",
|
|
196
|
+
"description": "Number of schemas for UserProfile entity",
|
|
197
|
+
"value": 1
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"owner": "schemaJson",
|
|
201
|
+
"description": "Number of schemas for UserRoles entity",
|
|
202
|
+
"value": 1
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"owner": "schemaJson",
|
|
206
|
+
"description": "Number of schemas for AccessKeys entity",
|
|
207
|
+
"value": 1
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"owner": "schemaJson",
|
|
211
|
+
"description": "Number of schemas for CloudAccounts entity",
|
|
212
|
+
"value": 1
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"owner": "schemaJson",
|
|
216
|
+
"description": "Number of schemas for AccountGroups entity",
|
|
217
|
+
"value": 1
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"owner": "schemaJson",
|
|
221
|
+
"description": "Number of schemas for Policy entity",
|
|
222
|
+
"value": 1
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"owner": "schemaJson",
|
|
226
|
+
"description": "Number of schemas for TimeRangeModelInfoOnly entity",
|
|
227
|
+
"value": 1
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"owner": "schemaJson",
|
|
231
|
+
"description": "Number of schemas for AlertsIncomplete entity",
|
|
232
|
+
"value": 1
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"owner": "schemaJson",
|
|
236
|
+
"description": "Number of schemas for AssetInventory entity",
|
|
237
|
+
"value": 1
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"owner": "schemaJson",
|
|
241
|
+
"description": "Number of schemas for CompliancePosture entity",
|
|
242
|
+
"value": 1
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"owner": "schemaJson",
|
|
246
|
+
"description": "Number of schemas for ComplianceDashboard entity",
|
|
247
|
+
"value": 1
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"owner": "schemaJson",
|
|
251
|
+
"description": "Number of schemas for ComplianceStandards entity",
|
|
252
|
+
"value": 1
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"owner": "schemaJson",
|
|
256
|
+
"description": "Number of schemas for AuditLogs entity",
|
|
257
|
+
"value": 1
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"owner": "schemaJson",
|
|
261
|
+
"description": "Number of schemas for Licensing entity",
|
|
262
|
+
"value": 1
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"owner": "schemaJson",
|
|
266
|
+
"description": "Number of schemas for Search entity",
|
|
267
|
+
"value": 1
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"owner": "schemaJson",
|
|
271
|
+
"description": "Number of schemas for AlertRules entity",
|
|
272
|
+
"value": 1
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"owner": "schemaJson",
|
|
276
|
+
"description": "Number of schemas for IntegrationsIncomplete entity",
|
|
277
|
+
"value": 1
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"owner": "schemaJson",
|
|
281
|
+
"description": "Number of schemas for Settings entity",
|
|
282
|
+
"value": 1
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"owner": "schemaJson",
|
|
286
|
+
"description": "Number of schemas for InfrastructureAsCode entity",
|
|
287
|
+
"value": 1
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"owner": "schemaJson",
|
|
291
|
+
"description": "Number of schemas for SupportApp entity",
|
|
292
|
+
"value": 1
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"owner": "schemaJson",
|
|
296
|
+
"description": "Total number of schemas",
|
|
297
|
+
"value": 21
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"owner": "mockdata",
|
|
301
|
+
"description": "Number of mock data files for Login entity",
|
|
302
|
+
"value": 0
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"owner": "mockdata",
|
|
306
|
+
"description": "Number of mock data files for UserProfile entity",
|
|
307
|
+
"value": 0
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"owner": "mockdata",
|
|
311
|
+
"description": "Number of mock data files for UserRoles entity",
|
|
312
|
+
"value": 0
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"owner": "mockdata",
|
|
316
|
+
"description": "Number of mock data files for AccessKeys entity",
|
|
317
|
+
"value": 0
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"owner": "mockdata",
|
|
321
|
+
"description": "Number of mock data files for CloudAccounts entity",
|
|
322
|
+
"value": 0
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"owner": "mockdata",
|
|
326
|
+
"description": "Number of mock data files for AccountGroups entity",
|
|
327
|
+
"value": 0
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"owner": "mockdata",
|
|
331
|
+
"description": "Number of mock data files for Policy entity",
|
|
332
|
+
"value": 0
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"owner": "mockdata",
|
|
336
|
+
"description": "Number of mock data files for TimeRangeModelInfoOnly entity",
|
|
337
|
+
"value": 0
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"owner": "mockdata",
|
|
341
|
+
"description": "Number of mock data files for AlertsIncomplete entity",
|
|
342
|
+
"value": 0
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"owner": "mockdata",
|
|
346
|
+
"description": "Number of mock data files for AssetInventory entity",
|
|
347
|
+
"value": 0
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"owner": "mockdata",
|
|
351
|
+
"description": "Number of mock data files for CompliancePosture entity",
|
|
352
|
+
"value": 0
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"owner": "mockdata",
|
|
356
|
+
"description": "Number of mock data files for ComplianceDashboard entity",
|
|
357
|
+
"value": 0
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"owner": "mockdata",
|
|
361
|
+
"description": "Number of mock data files for ComplianceStandards entity",
|
|
362
|
+
"value": 0
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"owner": "mockdata",
|
|
366
|
+
"description": "Number of mock data files for AuditLogs entity",
|
|
367
|
+
"value": 0
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"owner": "mockdata",
|
|
371
|
+
"description": "Number of mock data files for Licensing entity",
|
|
372
|
+
"value": 0
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"owner": "mockdata",
|
|
376
|
+
"description": "Number of mock data files for Search entity",
|
|
377
|
+
"value": 0
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"owner": "mockdata",
|
|
381
|
+
"description": "Number of mock data files for AlertRules entity",
|
|
382
|
+
"value": 0
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"owner": "mockdata",
|
|
386
|
+
"description": "Number of mock data files for IntegrationsIncomplete entity",
|
|
387
|
+
"value": 0
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"owner": "mockdata",
|
|
391
|
+
"description": "Number of mock data files for Settings entity",
|
|
392
|
+
"value": 0
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"owner": "mockdata",
|
|
396
|
+
"description": "Number of mock data files for InfrastructureAsCode entity",
|
|
397
|
+
"value": 0
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"owner": "mockdata",
|
|
401
|
+
"description": "Number of mock data files for SupportApp entity",
|
|
402
|
+
"value": 0
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"owner": "mockdata",
|
|
406
|
+
"description": "Total number of mock data files",
|
|
407
|
+
"value": 0
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"owner": "actionJson",
|
|
411
|
+
"description": "Number of actions for .system entity",
|
|
412
|
+
"value": 2
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"owner": "schemaJson",
|
|
416
|
+
"description": "Number of schemas for .system entity",
|
|
417
|
+
"value": 3
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"owner": "mockdata",
|
|
421
|
+
"description": "Number of mock data files for .system entity",
|
|
422
|
+
"value": 2
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"owner": "System",
|
|
426
|
+
"description": "System entity files",
|
|
427
|
+
"value": 6
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"owner": "usecases",
|
|
431
|
+
"description": "Number of workflows",
|
|
432
|
+
"value": 0
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"owner": "staticFile",
|
|
436
|
+
"description": "Number of lines of code in adapterBase.js",
|
|
437
|
+
"value": 1029
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"owner": "staticFile",
|
|
441
|
+
"description": "Number of static files added",
|
|
442
|
+
"value": 34
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"owner": "Overall",
|
|
446
|
+
"description": "Total lines of Code",
|
|
447
|
+
"value": 20335
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"owner": "Overall",
|
|
451
|
+
"description": "Total Tests",
|
|
452
|
+
"value": 368
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"owner": "Overall",
|
|
456
|
+
"description": "Total Files",
|
|
457
|
+
"value": 90
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"apiParsingReport": {
|
|
461
|
+
"no_mockdata": [
|
|
462
|
+
{
|
|
463
|
+
"fnName": "loginGenerateToken",
|
|
464
|
+
"method": "post",
|
|
465
|
+
"path": "/login"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"fnName": "refreshToken",
|
|
469
|
+
"method": "get",
|
|
470
|
+
"path": "/auth_token/extend"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"fnName": "updateSSOBypassAllowedUsers",
|
|
474
|
+
"method": "put",
|
|
475
|
+
"path": "/auth_token/extend"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"fnName": "profile",
|
|
479
|
+
"method": "get",
|
|
480
|
+
"path": "/user/me"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"fnName": "updateProfile",
|
|
484
|
+
"method": "put",
|
|
485
|
+
"path": "/user/me"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"fnName": "listUsers",
|
|
489
|
+
"method": "get",
|
|
490
|
+
"path": "/user"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"fnName": "addNewUserProfilev2",
|
|
494
|
+
"method": "post",
|
|
495
|
+
"path": "/v2/user"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"fnName": "listUsernames",
|
|
499
|
+
"method": "get",
|
|
500
|
+
"path": "/user/name"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"fnName": "listUserRoleType",
|
|
504
|
+
"method": "get",
|
|
505
|
+
"path": "/user/role/type"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"fnName": "getUsersProfileOtherthanyourown",
|
|
509
|
+
"method": "get",
|
|
510
|
+
"path": "/user/{email-id}"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"fnName": "updateUserProfileOtherthanyourown",
|
|
514
|
+
"method": "post",
|
|
515
|
+
"path": "/user/{email-id}"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"fnName": "deleteUserProfile",
|
|
519
|
+
"method": "delete",
|
|
520
|
+
"path": "/user/USER_ID_HERE"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"fnName": "updateUserStatus",
|
|
524
|
+
"method": "patch",
|
|
525
|
+
"path": "/user/{email-id}/status/TRUE_FALSE"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"fnName": "listEmailDomains",
|
|
529
|
+
"method": "get",
|
|
530
|
+
"path": "/user/domain"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"fnName": "listSSOBypassAllowedUsers",
|
|
534
|
+
"method": "get",
|
|
535
|
+
"path": "/user/saml/bypass"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"fnName": "listUserRoles",
|
|
539
|
+
"method": "get",
|
|
540
|
+
"path": "/user/role"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"fnName": "addUserRole",
|
|
544
|
+
"method": "post",
|
|
545
|
+
"path": "/user/role"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"fnName": "listUserRoleNames",
|
|
549
|
+
"method": "get",
|
|
550
|
+
"path": "/user/role/name"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"fnName": "userRoleInfo",
|
|
554
|
+
"method": "get",
|
|
555
|
+
"path": "/user/role/ROLE_ID_HERE"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"fnName": "updateUserRole",
|
|
559
|
+
"method": "put",
|
|
560
|
+
"path": "/user/role/ROLE_ID_HERE"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"fnName": "deleteUserRole",
|
|
564
|
+
"method": "delete",
|
|
565
|
+
"path": "/user/role/ROLE_ID_HERE"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"fnName": "listAccessKeys",
|
|
569
|
+
"method": "get",
|
|
570
|
+
"path": "/access_keys"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"fnName": "listAccessKeysCopy",
|
|
574
|
+
"method": "post",
|
|
575
|
+
"path": "/access_keys"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"fnName": "getAccessKeybyID",
|
|
579
|
+
"method": "get",
|
|
580
|
+
"path": "/access_keys/ACCESS_KEY_ID"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"fnName": "updateAccessKey",
|
|
584
|
+
"method": "put",
|
|
585
|
+
"path": "/access_keys/ACCESS_KEY_ID"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"fnName": "deleteAccessKey",
|
|
589
|
+
"method": "delete",
|
|
590
|
+
"path": "/access_keys/ACCESS_KEY_ID"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"fnName": "updateAccessKeyStatus",
|
|
594
|
+
"method": "patch",
|
|
595
|
+
"path": "/access_keys/ACCESS_KEY_ID/status/TRUE_OR_FALSE"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"fnName": "listCloudAccounts",
|
|
599
|
+
"method": "get",
|
|
600
|
+
"path": "/cloud"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"fnName": "listCloudAccountNames",
|
|
604
|
+
"method": "get",
|
|
605
|
+
"path": "/cloud/name"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"fnName": "listCloudOrgAccounts",
|
|
609
|
+
"method": "get",
|
|
610
|
+
"path": "/cloud/CLOUD_TYPE/CLOUD_ACCOUNT_ID/project"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"fnName": "listCloudTypes",
|
|
614
|
+
"method": "get",
|
|
615
|
+
"path": "/cloud/type"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"fnName": "addCloudAccountAWS",
|
|
619
|
+
"method": "post",
|
|
620
|
+
"path": "/cloud/aws"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"fnName": "addCloudAccountAzure",
|
|
624
|
+
"method": "post",
|
|
625
|
+
"path": "/cloud/azure"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"fnName": "addCloudAccountGCP",
|
|
629
|
+
"method": "post",
|
|
630
|
+
"path": "/cloud/gcp"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"fnName": "addCloudAccountAliCloud",
|
|
634
|
+
"method": "post",
|
|
635
|
+
"path": "/cloud/alibaba_cloud"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"fnName": "cloudAccountInfo",
|
|
639
|
+
"method": "get",
|
|
640
|
+
"path": "/cloud/CLOUD_TYPE/CLOUD_ID"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"fnName": "updateCloudAccountAWS",
|
|
644
|
+
"method": "put",
|
|
645
|
+
"path": "/cloud/CLOUD_TYPE/CLOUD_ID"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"fnName": "addCloudAccountAzure1",
|
|
649
|
+
"method": "post",
|
|
650
|
+
"path": "/cloud/azure/CLOUD_ACCOUNT_ID"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"fnName": "addCloudAccountGCP1",
|
|
654
|
+
"method": "put",
|
|
655
|
+
"path": "/cloud/gcp/CLOUD_ACCOUNT_ID"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"fnName": "cAUTIONDELETECloudAccount",
|
|
659
|
+
"method": "delete",
|
|
660
|
+
"path": "/cloud/gcp/CLOUD_ACCOUNT_ID"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"fnName": "addCloudAccountAliCloud1",
|
|
664
|
+
"method": "post",
|
|
665
|
+
"path": "/cloud/alibaba_cloud/CLOUD_ACCOUNT_ID"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"fnName": "patchCloudAccount",
|
|
669
|
+
"method": "patch",
|
|
670
|
+
"path": "/CLOUD_TYPE/CLOUD_ID"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"fnName": "getCloudAccountStatusAWS",
|
|
674
|
+
"method": "post",
|
|
675
|
+
"path": "/cloud/status/aws"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"fnName": "getCloudAccountStatusAzure",
|
|
679
|
+
"method": "post",
|
|
680
|
+
"path": "/cloud/status/azure"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"fnName": "getCloudAccountStatusGCP",
|
|
684
|
+
"method": "post",
|
|
685
|
+
"path": "/cloud/status/gcp"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"fnName": "getCloudAccountStatusAliCloud",
|
|
689
|
+
"method": "post",
|
|
690
|
+
"path": "/cloud/status/alibaba_cloud"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"fnName": "updateCloudAccountStatus",
|
|
694
|
+
"method": "patch",
|
|
695
|
+
"path": "/cloud/ACCOUNT_ID/status/TRUE_FALSE"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"fnName": "listAccountGroups",
|
|
699
|
+
"method": "get",
|
|
700
|
+
"path": "/cloud/group"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"fnName": "accountAccountGroup",
|
|
704
|
+
"method": "post",
|
|
705
|
+
"path": "/cloud/group"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"fnName": "listAccountGroupNames",
|
|
709
|
+
"method": "get",
|
|
710
|
+
"path": "/cloud/group/name"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"fnName": "listAccountGroupNamesbyCloudType",
|
|
714
|
+
"method": "get",
|
|
715
|
+
"path": "/cloud/group/name/CLOUD_TYPE"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"fnName": "accountGroupInfo",
|
|
719
|
+
"method": "get",
|
|
720
|
+
"path": "/cloud/group/ACCOUNT_GROUP_ID"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"fnName": "updateAccountGroup",
|
|
724
|
+
"method": "put",
|
|
725
|
+
"path": "/cloud/group/ACCOUNT_GROUP_ID"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"fnName": "deleteAccountGroup",
|
|
729
|
+
"method": "delete",
|
|
730
|
+
"path": "/cloud/group/ACCOUNT_GROUP_ID"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"fnName": "listPolicyFilters",
|
|
734
|
+
"method": "get",
|
|
735
|
+
"path": "/filter/policy/suggest"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"fnName": "listPolicyFilterAutocompleteSuggestions",
|
|
739
|
+
"method": "post",
|
|
740
|
+
"path": "/filter/policy/suggest"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"fnName": "listPolicies",
|
|
744
|
+
"method": "get",
|
|
745
|
+
"path": "/policy"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"fnName": "incompleteCOMPLEXAddPolicy",
|
|
749
|
+
"method": "post",
|
|
750
|
+
"path": "/policy"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"fnName": "incompleteCOMPLEXUpdatePolicy",
|
|
754
|
+
"method": "put",
|
|
755
|
+
"path": "/policy"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"fnName": "listPoliciesV2",
|
|
759
|
+
"method": "get",
|
|
760
|
+
"path": "/v2/policy"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"fnName": "policyInfo",
|
|
764
|
+
"method": "get",
|
|
765
|
+
"path": "/policy/POLICY_ID"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"fnName": "deletePolicy",
|
|
769
|
+
"method": "delete",
|
|
770
|
+
"path": "/policy/POLICY_ID"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"fnName": "updatePolicyStatus",
|
|
774
|
+
"method": "patch",
|
|
775
|
+
"path": "/policy/POLICY_ID/status/TRUE_FALSE"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"fnName": "listPolicyComplianceStandards",
|
|
779
|
+
"method": "get",
|
|
780
|
+
"path": "/policy/compliance"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"fnName": "absoluteTime",
|
|
784
|
+
"method": "get",
|
|
785
|
+
"path": "/"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"fnName": "listAlertFilters",
|
|
789
|
+
"method": "get",
|
|
790
|
+
"path": "/filter/alert/suggest"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"fnName": "listAlertFiltersCopy",
|
|
794
|
+
"method": "post",
|
|
795
|
+
"path": "/alert/policy"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"fnName": "listAlertsV2",
|
|
799
|
+
"method": "get",
|
|
800
|
+
"path": "/v2/alert"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"fnName": "alertInfo",
|
|
804
|
+
"method": "get",
|
|
805
|
+
"path": "/alert/P-117144"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"fnName": "listAlertRemediationCommands",
|
|
809
|
+
"method": "post",
|
|
810
|
+
"path": "/remediation"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"fnName": "listInventoryFiltersV2",
|
|
814
|
+
"method": "get",
|
|
815
|
+
"path": "/filter/v2/inventory/suggest"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"fnName": "listInventoryDashboardFilterAutocompleteSuggestionsV2",
|
|
819
|
+
"method": "post",
|
|
820
|
+
"path": "/filter/v2/inventory/suggest"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"fnName": "listSavedAssetInventoryFilters",
|
|
824
|
+
"method": "get",
|
|
825
|
+
"path": "/filter/inventory"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"fnName": "listSavedAssetInventoryFiltersCopy",
|
|
829
|
+
"method": "get",
|
|
830
|
+
"path": "/filter/inventory/SAVED_INVENTORY_NAME"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"fnName": "assetInventoryViewV2",
|
|
834
|
+
"method": "get",
|
|
835
|
+
"path": "/v2/inventory"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"fnName": "assetInventoryTrendViewV2",
|
|
839
|
+
"method": "get",
|
|
840
|
+
"path": "/v2/inventory/trend"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"fnName": "getComplianceStatisticsBreakdown",
|
|
844
|
+
"method": "get",
|
|
845
|
+
"path": "/compliance/posture"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"fnName": "getComplianceStatisticsforComplianceStandardID",
|
|
849
|
+
"method": "get",
|
|
850
|
+
"path": "/compliance/posture/fd9e3d3a-29a0-4ddc-b058-6f7eabd7d85a"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"fnName": "getComplianceStatisticsforRequirementID",
|
|
854
|
+
"method": "get",
|
|
855
|
+
"path": "/compliance/posture/fd9e3d3a-29a0-4ddc-b058-6f7eabd7d85a/a467eb11-b55b-4484-83ba-f55a7ef4358b"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"fnName": "getComplianceStatisticsOverTime",
|
|
859
|
+
"method": "get",
|
|
860
|
+
"path": "/compliance/posture/trend"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"fnName": "getComplianceStatisticsOverTimeforComplianceStandardID",
|
|
864
|
+
"method": "get",
|
|
865
|
+
"path": "/compliance/posture/trend/fd9e3d3a-29a0-4ddc-b058-6f7eabd7d85a"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"fnName": "getComplianceStatisticsOverTimeforRequirementID",
|
|
869
|
+
"method": "get",
|
|
870
|
+
"path": "/compliance/posture/trend/fd9e3d3a-29a0-4ddc-b058-6f7eabd7d85a/a467eb11-b55b-4484-83ba-f55a7ef4358b"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"fnName": "getComplianceOverviewFiltersandOptions",
|
|
874
|
+
"method": "get",
|
|
875
|
+
"path": "/filter/compliance/posture/suggest"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"fnName": "complianceResourceStatisticsBreakdown",
|
|
879
|
+
"method": "get",
|
|
880
|
+
"path": "/compliance/dashboard"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"fnName": "overallComplianceResourceStatisticsOverTime",
|
|
884
|
+
"method": "get",
|
|
885
|
+
"path": "/compliance/dashboard/history"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"fnName": "getComplianceDashboardFilters",
|
|
889
|
+
"method": "get",
|
|
890
|
+
"path": "/filter/compliance/suggest"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"fnName": "getComplianceDashboardFiltersCopy",
|
|
894
|
+
"method": "post",
|
|
895
|
+
"path": "/filter/compliance/suggest"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"fnName": "listComplianceStandards",
|
|
899
|
+
"method": "get",
|
|
900
|
+
"path": "/compliance"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"fnName": "listComplianceStandardsbyID",
|
|
904
|
+
"method": "get",
|
|
905
|
+
"path": "/compliance/COMPLIANCE_ID_HERE"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"fnName": "listComplianceRequirementsbyID",
|
|
909
|
+
"method": "get",
|
|
910
|
+
"path": "/compliance/COMPLIANCE_ID_HERE/requirement"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"fnName": "getComplianceRequirementbyID",
|
|
914
|
+
"method": "get",
|
|
915
|
+
"path": "/compliance/requirement/REQUIREMENT_ID_HERE"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"fnName": "listComplianceRequirementSections",
|
|
919
|
+
"method": "get",
|
|
920
|
+
"path": "/compliance/REQUIREMENT_ID_HERE/section"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"fnName": "prismaCloudAuditLogs",
|
|
924
|
+
"method": "get",
|
|
925
|
+
"path": "/audit/redlock"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"fnName": "licensingUsageCountforCompute",
|
|
929
|
+
"method": "post",
|
|
930
|
+
"path": "/usage/compute/twistlock"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"fnName": "httpsApiPrismacloudIoSearchConfig",
|
|
934
|
+
"method": "post",
|
|
935
|
+
"path": "/search/config"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"fnName": "listAlertRulesV2",
|
|
939
|
+
"method": "get",
|
|
940
|
+
"path": "/v2/alert/rule"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"fnName": "testIntegrationIncomplete",
|
|
944
|
+
"method": "post",
|
|
945
|
+
"path": "/integration/test"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"fnName": "listMetadataforAllIntegrations",
|
|
949
|
+
"method": "get",
|
|
950
|
+
"path": "/integration/name"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"fnName": "listAllIntegrationTypes",
|
|
954
|
+
"method": "get",
|
|
955
|
+
"path": "/integration/type"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"fnName": "listAllIntegrations",
|
|
959
|
+
"method": "get",
|
|
960
|
+
"path": "/integration"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"fnName": "getIntegrationsByID",
|
|
964
|
+
"method": "get",
|
|
965
|
+
"path": "/integration/INTEG_ID"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"fnName": "updateIntegration",
|
|
969
|
+
"method": "post",
|
|
970
|
+
"path": "/integration/INTEG_ID"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"fnName": "deleteIntegration",
|
|
974
|
+
"method": "delete",
|
|
975
|
+
"path": "/integration/INTEG_ID"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"fnName": "enterpriseSettings",
|
|
979
|
+
"method": "get",
|
|
980
|
+
"path": "/settings/enterprise"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"fnName": "enterpriseSettingsCopy",
|
|
984
|
+
"method": "post",
|
|
985
|
+
"path": "/settings/enterprise"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"fnName": "addScanAsset",
|
|
989
|
+
"method": "post",
|
|
990
|
+
"path": "/iac/v2/scans"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"fnName": "initiateScanJob",
|
|
994
|
+
"method": "post",
|
|
995
|
+
"path": "/iac/v2/scans/SCAN_ID"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"fnName": "getScanJobStatus",
|
|
999
|
+
"method": "get",
|
|
1000
|
+
"path": "/iac/v2/scans/SCAN_ID/status"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"fnName": "getScanResultDetails",
|
|
1004
|
+
"method": "get",
|
|
1005
|
+
"path": "/iac/v2/scans/SCAN_ID/results"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"fnName": "getSupportAppCustomers",
|
|
1009
|
+
"method": "get",
|
|
1010
|
+
"path": "/_support/customer"
|
|
1011
|
+
}
|
|
1012
|
+
],
|
|
1013
|
+
"errors": [],
|
|
1014
|
+
"warnings": [],
|
|
1015
|
+
"callsTotal": 110,
|
|
1016
|
+
"callsConverted": 110,
|
|
1017
|
+
"no_mockdata_num": 110
|
|
1018
|
+
}
|
|
1019
|
+
}
|