@aws-sdk/client-codeguru-security 3.986.0 → 3.988.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/dist-cjs/index.js +32 -710
- package/dist-cjs/models/CodeGuruSecurityServiceException.js +12 -0
- package/dist-cjs/models/errors.js +118 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +526 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +50 -44
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var CodeGuruSecurityServiceException = require('./models/CodeGuruSecurityServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,631 +113,6 @@ class CodeGuruSecurityClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class CodeGuruSecurityServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, CodeGuruSecurityServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends CodeGuruSecurityServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
errorCode;
|
|
124
|
-
resourceId;
|
|
125
|
-
resourceType;
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "AccessDeniedException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
|
-
this.errorCode = opts.errorCode;
|
|
134
|
-
this.resourceId = opts.resourceId;
|
|
135
|
-
this.resourceType = opts.resourceType;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
class InternalServerException extends CodeGuruSecurityServiceException {
|
|
139
|
-
name = "InternalServerException";
|
|
140
|
-
$fault = "server";
|
|
141
|
-
$retryable = {};
|
|
142
|
-
error;
|
|
143
|
-
constructor(opts) {
|
|
144
|
-
super({
|
|
145
|
-
name: "InternalServerException",
|
|
146
|
-
$fault: "server",
|
|
147
|
-
...opts,
|
|
148
|
-
});
|
|
149
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
150
|
-
this.error = opts.error;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
class ThrottlingException extends CodeGuruSecurityServiceException {
|
|
154
|
-
name = "ThrottlingException";
|
|
155
|
-
$fault = "client";
|
|
156
|
-
$retryable = {
|
|
157
|
-
throttling: true,
|
|
158
|
-
};
|
|
159
|
-
errorCode;
|
|
160
|
-
serviceCode;
|
|
161
|
-
quotaCode;
|
|
162
|
-
constructor(opts) {
|
|
163
|
-
super({
|
|
164
|
-
name: "ThrottlingException",
|
|
165
|
-
$fault: "client",
|
|
166
|
-
...opts,
|
|
167
|
-
});
|
|
168
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
169
|
-
this.errorCode = opts.errorCode;
|
|
170
|
-
this.serviceCode = opts.serviceCode;
|
|
171
|
-
this.quotaCode = opts.quotaCode;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
class ValidationException extends CodeGuruSecurityServiceException {
|
|
175
|
-
name = "ValidationException";
|
|
176
|
-
$fault = "client";
|
|
177
|
-
errorCode;
|
|
178
|
-
reason;
|
|
179
|
-
fieldList;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ValidationException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
187
|
-
this.errorCode = opts.errorCode;
|
|
188
|
-
this.reason = opts.reason;
|
|
189
|
-
this.fieldList = opts.fieldList;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ConflictException extends CodeGuruSecurityServiceException {
|
|
193
|
-
name = "ConflictException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
errorCode;
|
|
196
|
-
resourceId;
|
|
197
|
-
resourceType;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ConflictException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
205
|
-
this.errorCode = opts.errorCode;
|
|
206
|
-
this.resourceId = opts.resourceId;
|
|
207
|
-
this.resourceType = opts.resourceType;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ResourceNotFoundException extends CodeGuruSecurityServiceException {
|
|
211
|
-
name = "ResourceNotFoundException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
errorCode;
|
|
214
|
-
resourceId;
|
|
215
|
-
resourceType;
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "ResourceNotFoundException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
223
|
-
this.errorCode = opts.errorCode;
|
|
224
|
-
this.resourceId = opts.resourceId;
|
|
225
|
-
this.resourceType = opts.resourceType;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
const _ADE = "AccessDeniedException";
|
|
230
|
-
const _AFM = "AccountFindingsMetric";
|
|
231
|
-
const _BGF = "BatchGetFindings";
|
|
232
|
-
const _BGFE = "BatchGetFindingsError";
|
|
233
|
-
const _BGFEa = "BatchGetFindingsErrors";
|
|
234
|
-
const _BGFR = "BatchGetFindingsRequest";
|
|
235
|
-
const _BGFRa = "BatchGetFindingsResponse";
|
|
236
|
-
const _CE = "ConflictException";
|
|
237
|
-
const _CL = "CodeLine";
|
|
238
|
-
const _CS = "CodeSnippet";
|
|
239
|
-
const _CSR = "CreateScanRequest";
|
|
240
|
-
const _CSRr = "CreateScanResponse";
|
|
241
|
-
const _CSr = "CreateScan";
|
|
242
|
-
const _CUU = "CreateUploadUrl";
|
|
243
|
-
const _CUUR = "CreateUploadUrlRequest";
|
|
244
|
-
const _CUURr = "CreateUploadUrlResponse";
|
|
245
|
-
const _CWFN = "CategoryWithFindingNum";
|
|
246
|
-
const _CWMF = "CategoriesWithMostFindings";
|
|
247
|
-
const _EC = "EncryptionConfig";
|
|
248
|
-
const _F = "Finding";
|
|
249
|
-
const _FI = "FindingIdentifier";
|
|
250
|
-
const _FIi = "FindingIdentifiers";
|
|
251
|
-
const _FML = "FindingsMetricList";
|
|
252
|
-
const _FMVPS = "FindingMetricsValuePerSeverity";
|
|
253
|
-
const _FP = "FilePath";
|
|
254
|
-
const _Fi = "Findings";
|
|
255
|
-
const _GAC = "GetAccountConfiguration";
|
|
256
|
-
const _GACR = "GetAccountConfigurationRequest";
|
|
257
|
-
const _GACRe = "GetAccountConfigurationResponse";
|
|
258
|
-
const _GF = "GetFindings";
|
|
259
|
-
const _GFR = "GetFindingsRequest";
|
|
260
|
-
const _GFRe = "GetFindingsResponse";
|
|
261
|
-
const _GMS = "GetMetricsSummary";
|
|
262
|
-
const _GMSR = "GetMetricsSummaryRequest";
|
|
263
|
-
const _GMSRe = "GetMetricsSummaryResponse";
|
|
264
|
-
const _GS = "GetScan";
|
|
265
|
-
const _GSR = "GetScanRequest";
|
|
266
|
-
const _GSRe = "GetScanResponse";
|
|
267
|
-
const _ISE = "InternalServerException";
|
|
268
|
-
const _LFM = "ListFindingsMetrics";
|
|
269
|
-
const _LFMR = "ListFindingsMetricsRequest";
|
|
270
|
-
const _LFMRi = "ListFindingsMetricsResponse";
|
|
271
|
-
const _LS = "ListScans";
|
|
272
|
-
const _LSR = "ListScansRequest";
|
|
273
|
-
const _LSRi = "ListScansResponse";
|
|
274
|
-
const _LTFR = "ListTagsForResource";
|
|
275
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
276
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
277
|
-
const _MS = "MetricsSummary";
|
|
278
|
-
const _R = "Recommendation";
|
|
279
|
-
const _RHM = "RequestHeaderMap";
|
|
280
|
-
const _RI = "ResourceId";
|
|
281
|
-
const _RNFE = "ResourceNotFoundException";
|
|
282
|
-
const _Re = "Remediation";
|
|
283
|
-
const _Res = "Resource";
|
|
284
|
-
const _SF = "SuggestedFix";
|
|
285
|
-
const _SFu = "SuggestedFixes";
|
|
286
|
-
const _SNWFN = "ScanNameWithFindingNum";
|
|
287
|
-
const _SS = "ScanSummary";
|
|
288
|
-
const _SSc = "ScanSummaries";
|
|
289
|
-
const _SU = "S3Url";
|
|
290
|
-
const _SWMOCF = "ScansWithMostOpenCriticalFindings";
|
|
291
|
-
const _SWMOF = "ScansWithMostOpenFindings";
|
|
292
|
-
const _TE = "ThrottlingException";
|
|
293
|
-
const _TR = "TagResource";
|
|
294
|
-
const _TRR = "TagResourceRequest";
|
|
295
|
-
const _TRRa = "TagResourceResponse";
|
|
296
|
-
const _UAC = "UpdateAccountConfiguration";
|
|
297
|
-
const _UACR = "UpdateAccountConfigurationRequest";
|
|
298
|
-
const _UACRp = "UpdateAccountConfigurationResponse";
|
|
299
|
-
const _UR = "UntagResource";
|
|
300
|
-
const _URR = "UntagResourceRequest";
|
|
301
|
-
const _URRn = "UntagResourceResponse";
|
|
302
|
-
const _V = "Vulnerability";
|
|
303
|
-
const _VE = "ValidationException";
|
|
304
|
-
const _VEF = "ValidationExceptionField";
|
|
305
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
306
|
-
const _aT = "analysisType";
|
|
307
|
-
const _c = "client";
|
|
308
|
-
const _cA = "createdAt";
|
|
309
|
-
const _cAI = "codeArtifactId";
|
|
310
|
-
const _cF = "closedFindings";
|
|
311
|
-
const _cN = "categoryName";
|
|
312
|
-
const _cS = "codeSnippet";
|
|
313
|
-
const _cT = "clientToken";
|
|
314
|
-
const _cWMF = "categoriesWithMostFindings";
|
|
315
|
-
const _co = "content";
|
|
316
|
-
const _cod = "code";
|
|
317
|
-
const _cr = "critical";
|
|
318
|
-
const _d = "date";
|
|
319
|
-
const _dI = "detectorId";
|
|
320
|
-
const _dN = "detectorName";
|
|
321
|
-
const _dT = "detectorTags";
|
|
322
|
-
const _de = "description";
|
|
323
|
-
const _e = "error";
|
|
324
|
-
const _eC = "errorCode";
|
|
325
|
-
const _eCn = "encryptionConfig";
|
|
326
|
-
const _eD = "endDate";
|
|
327
|
-
const _eL = "endLine";
|
|
328
|
-
const _eM = "errorMessage";
|
|
329
|
-
const _f = "findings";
|
|
330
|
-
const _fF = "failedFindings";
|
|
331
|
-
const _fI = "findingId";
|
|
332
|
-
const _fIi = "findingIdentifiers";
|
|
333
|
-
const _fL = "fieldList";
|
|
334
|
-
const _fM = "findingsMetrics";
|
|
335
|
-
const _fN = "findingNumber";
|
|
336
|
-
const _fP = "filePath";
|
|
337
|
-
const _gI = "generatorId";
|
|
338
|
-
const _h = "high";
|
|
339
|
-
const _hE = "httpError";
|
|
340
|
-
const _hQ = "httpQuery";
|
|
341
|
-
const _ht = "http";
|
|
342
|
-
const _i = "id";
|
|
343
|
-
const _iC = "itemCount";
|
|
344
|
-
const _in = "info";
|
|
345
|
-
const _kKA = "kmsKeyArn";
|
|
346
|
-
const _l = "low";
|
|
347
|
-
const _m = "message";
|
|
348
|
-
const _mR = "maxResults";
|
|
349
|
-
const _mS = "metricsSummary";
|
|
350
|
-
const _mTTC = "meanTimeToClose";
|
|
351
|
-
const _me = "medium";
|
|
352
|
-
const _n = "number";
|
|
353
|
-
const _nF = "newFindings";
|
|
354
|
-
const _nOR = "numberOfRevisions";
|
|
355
|
-
const _nT = "nextToken";
|
|
356
|
-
const _na = "name";
|
|
357
|
-
const _oF = "openFindings";
|
|
358
|
-
const _p = "path";
|
|
359
|
-
const _qC = "quotaCode";
|
|
360
|
-
const _r = "resource";
|
|
361
|
-
const _rA = "resourceArn";
|
|
362
|
-
const _rH = "requestHeaders";
|
|
363
|
-
const _rI = "resourceId";
|
|
364
|
-
const _rIu = "runId";
|
|
365
|
-
const _rIul = "ruleId";
|
|
366
|
-
const _rT = "resourceType";
|
|
367
|
-
const _rU = "referenceUrls";
|
|
368
|
-
const _rV = "relatedVulnerabilities";
|
|
369
|
-
const _re = "remediation";
|
|
370
|
-
const _rea = "reason";
|
|
371
|
-
const _rec = "recommendation";
|
|
372
|
-
const _s = "status";
|
|
373
|
-
const _sC = "serviceCode";
|
|
374
|
-
const _sD = "startDate";
|
|
375
|
-
const _sF = "suggestedFixes";
|
|
376
|
-
const _sL = "startLine";
|
|
377
|
-
const _sN = "scanName";
|
|
378
|
-
const _sNA = "scanNameArn";
|
|
379
|
-
const _sRI = "subResourceId";
|
|
380
|
-
const _sS = "scanState";
|
|
381
|
-
const _sT = "scanType";
|
|
382
|
-
const _sU = "s3Url";
|
|
383
|
-
const _sWMOCF = "scansWithMostOpenCriticalFindings";
|
|
384
|
-
const _sWMOF = "scansWithMostOpenFindings";
|
|
385
|
-
const _se = "severity";
|
|
386
|
-
const _ser = "server";
|
|
387
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codegurusecurity";
|
|
388
|
-
const _su = "summaries";
|
|
389
|
-
const _t = "tags";
|
|
390
|
-
const _tK = "tagKeys";
|
|
391
|
-
const _te = "text";
|
|
392
|
-
const _ti = "title";
|
|
393
|
-
const _ty = "type";
|
|
394
|
-
const _u = "url";
|
|
395
|
-
const _uA = "updatedAt";
|
|
396
|
-
const _v = "vulnerability";
|
|
397
|
-
const n0 = "com.amazonaws.codegurusecurity";
|
|
398
|
-
var S3Url = [0, n0, _SU, 8, 0];
|
|
399
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
400
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
401
|
-
[_eC, _m, _rI, _rT],
|
|
402
|
-
[0, 0, 0, 0], 2
|
|
403
|
-
];
|
|
404
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
405
|
-
var AccountFindingsMetric$ = [3, n0, _AFM,
|
|
406
|
-
0,
|
|
407
|
-
[_d, _nF, _cF, _oF, _mTTC],
|
|
408
|
-
[4, () => FindingMetricsValuePerSeverity$, () => FindingMetricsValuePerSeverity$, () => FindingMetricsValuePerSeverity$, () => FindingMetricsValuePerSeverity$]
|
|
409
|
-
];
|
|
410
|
-
var BatchGetFindingsError$ = [3, n0, _BGFE,
|
|
411
|
-
0,
|
|
412
|
-
[_sN, _fI, _eC, _m],
|
|
413
|
-
[0, 0, 0, 0], 4
|
|
414
|
-
];
|
|
415
|
-
var BatchGetFindingsRequest$ = [3, n0, _BGFR,
|
|
416
|
-
0,
|
|
417
|
-
[_fIi],
|
|
418
|
-
[() => FindingIdentifiers], 1
|
|
419
|
-
];
|
|
420
|
-
var BatchGetFindingsResponse$ = [3, n0, _BGFRa,
|
|
421
|
-
0,
|
|
422
|
-
[_f, _fF],
|
|
423
|
-
[() => Findings, () => BatchGetFindingsErrors], 2
|
|
424
|
-
];
|
|
425
|
-
var CategoryWithFindingNum$ = [3, n0, _CWFN,
|
|
426
|
-
0,
|
|
427
|
-
[_cN, _fN],
|
|
428
|
-
[0, 1]
|
|
429
|
-
];
|
|
430
|
-
var CodeLine$ = [3, n0, _CL,
|
|
431
|
-
0,
|
|
432
|
-
[_n, _co],
|
|
433
|
-
[1, 0]
|
|
434
|
-
];
|
|
435
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
436
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
437
|
-
[_eC, _m, _rI, _rT],
|
|
438
|
-
[0, 0, 0, 0], 4
|
|
439
|
-
];
|
|
440
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
441
|
-
var CreateScanRequest$ = [3, n0, _CSR,
|
|
442
|
-
0,
|
|
443
|
-
[_rI, _sN, _cT, _sT, _aT, _t],
|
|
444
|
-
[() => ResourceId$, 0, [0, 4], 0, 0, 128 | 0], 2
|
|
445
|
-
];
|
|
446
|
-
var CreateScanResponse$ = [3, n0, _CSRr,
|
|
447
|
-
0,
|
|
448
|
-
[_sN, _rIu, _rI, _sS, _sNA],
|
|
449
|
-
[0, 0, () => ResourceId$, 0, 0], 4
|
|
450
|
-
];
|
|
451
|
-
var CreateUploadUrlRequest$ = [3, n0, _CUUR,
|
|
452
|
-
0,
|
|
453
|
-
[_sN],
|
|
454
|
-
[0], 1
|
|
455
|
-
];
|
|
456
|
-
var CreateUploadUrlResponse$ = [3, n0, _CUURr,
|
|
457
|
-
0,
|
|
458
|
-
[_sU, _rH, _cAI],
|
|
459
|
-
[[() => S3Url, 0], [() => RequestHeaderMap, 0], 0], 3
|
|
460
|
-
];
|
|
461
|
-
var EncryptionConfig$ = [3, n0, _EC,
|
|
462
|
-
0,
|
|
463
|
-
[_kKA],
|
|
464
|
-
[0]
|
|
465
|
-
];
|
|
466
|
-
var FilePath$ = [3, n0, _FP,
|
|
467
|
-
0,
|
|
468
|
-
[_na, _p, _sL, _eL, _cS],
|
|
469
|
-
[0, 0, 1, 1, () => CodeSnippet]
|
|
470
|
-
];
|
|
471
|
-
var Finding$ = [3, n0, _F,
|
|
472
|
-
0,
|
|
473
|
-
[_cA, _de, _gI, _i, _uA, _ty, _s, _r, _v, _se, _re, _ti, _dT, _dI, _dN, _rIul],
|
|
474
|
-
[4, 0, 0, 0, 4, 0, 0, () => Resource$, () => Vulnerability$, 0, () => Remediation$, 0, 64 | 0, 0, 0, 0]
|
|
475
|
-
];
|
|
476
|
-
var FindingIdentifier$ = [3, n0, _FI,
|
|
477
|
-
0,
|
|
478
|
-
[_sN, _fI],
|
|
479
|
-
[0, 0], 2
|
|
480
|
-
];
|
|
481
|
-
var FindingMetricsValuePerSeverity$ = [3, n0, _FMVPS,
|
|
482
|
-
0,
|
|
483
|
-
[_in, _l, _me, _h, _cr],
|
|
484
|
-
[1, 1, 1, 1, 1]
|
|
485
|
-
];
|
|
486
|
-
var GetAccountConfigurationRequest$ = [3, n0, _GACR,
|
|
487
|
-
0,
|
|
488
|
-
[],
|
|
489
|
-
[]
|
|
490
|
-
];
|
|
491
|
-
var GetAccountConfigurationResponse$ = [3, n0, _GACRe,
|
|
492
|
-
0,
|
|
493
|
-
[_eCn],
|
|
494
|
-
[() => EncryptionConfig$], 1
|
|
495
|
-
];
|
|
496
|
-
var GetFindingsRequest$ = [3, n0, _GFR,
|
|
497
|
-
0,
|
|
498
|
-
[_sN, _nT, _mR, _s],
|
|
499
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _s }]], 1
|
|
500
|
-
];
|
|
501
|
-
var GetFindingsResponse$ = [3, n0, _GFRe,
|
|
502
|
-
0,
|
|
503
|
-
[_f, _nT],
|
|
504
|
-
[() => Findings, 0]
|
|
505
|
-
];
|
|
506
|
-
var GetMetricsSummaryRequest$ = [3, n0, _GMSR,
|
|
507
|
-
0,
|
|
508
|
-
[_d],
|
|
509
|
-
[[4, { [_hQ]: _d }]], 1
|
|
510
|
-
];
|
|
511
|
-
var GetMetricsSummaryResponse$ = [3, n0, _GMSRe,
|
|
512
|
-
0,
|
|
513
|
-
[_mS],
|
|
514
|
-
[() => MetricsSummary$]
|
|
515
|
-
];
|
|
516
|
-
var GetScanRequest$ = [3, n0, _GSR,
|
|
517
|
-
0,
|
|
518
|
-
[_sN, _rIu],
|
|
519
|
-
[[0, 1], [0, { [_hQ]: _rIu }]], 1
|
|
520
|
-
];
|
|
521
|
-
var GetScanResponse$ = [3, n0, _GSRe,
|
|
522
|
-
0,
|
|
523
|
-
[_sN, _rIu, _sS, _cA, _aT, _uA, _nOR, _sNA, _eM],
|
|
524
|
-
[0, 0, 0, 4, 0, 4, 1, 0, 0], 5
|
|
525
|
-
];
|
|
526
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
527
|
-
{ [_e]: _ser, [_hE]: 500 },
|
|
528
|
-
[_e, _m],
|
|
529
|
-
[0, 0]
|
|
530
|
-
];
|
|
531
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
532
|
-
var ListFindingsMetricsRequest$ = [3, n0, _LFMR,
|
|
533
|
-
0,
|
|
534
|
-
[_sD, _eD, _nT, _mR],
|
|
535
|
-
[[4, { [_hQ]: _sD }], [4, { [_hQ]: _eD }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
536
|
-
];
|
|
537
|
-
var ListFindingsMetricsResponse$ = [3, n0, _LFMRi,
|
|
538
|
-
0,
|
|
539
|
-
[_fM, _nT],
|
|
540
|
-
[() => FindingsMetricList, 0]
|
|
541
|
-
];
|
|
542
|
-
var ListScansRequest$ = [3, n0, _LSR,
|
|
543
|
-
0,
|
|
544
|
-
[_nT, _mR],
|
|
545
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
546
|
-
];
|
|
547
|
-
var ListScansResponse$ = [3, n0, _LSRi,
|
|
548
|
-
0,
|
|
549
|
-
[_su, _nT],
|
|
550
|
-
[() => ScanSummaries, 0]
|
|
551
|
-
];
|
|
552
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
553
|
-
0,
|
|
554
|
-
[_rA],
|
|
555
|
-
[[0, 1]], 1
|
|
556
|
-
];
|
|
557
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
558
|
-
0,
|
|
559
|
-
[_t],
|
|
560
|
-
[128 | 0]
|
|
561
|
-
];
|
|
562
|
-
var MetricsSummary$ = [3, n0, _MS,
|
|
563
|
-
0,
|
|
564
|
-
[_d, _oF, _cWMF, _sWMOF, _sWMOCF],
|
|
565
|
-
[4, () => FindingMetricsValuePerSeverity$, () => CategoriesWithMostFindings, () => ScansWithMostOpenFindings, () => ScansWithMostOpenCriticalFindings]
|
|
566
|
-
];
|
|
567
|
-
var Recommendation$ = [3, n0, _R,
|
|
568
|
-
0,
|
|
569
|
-
[_te, _u],
|
|
570
|
-
[0, 0]
|
|
571
|
-
];
|
|
572
|
-
var Remediation$ = [3, n0, _Re,
|
|
573
|
-
0,
|
|
574
|
-
[_rec, _sF],
|
|
575
|
-
[() => Recommendation$, () => SuggestedFixes]
|
|
576
|
-
];
|
|
577
|
-
var Resource$ = [3, n0, _Res,
|
|
578
|
-
0,
|
|
579
|
-
[_i, _sRI],
|
|
580
|
-
[0, 0]
|
|
581
|
-
];
|
|
582
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
583
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
584
|
-
[_eC, _m, _rI, _rT],
|
|
585
|
-
[0, 0, 0, 0], 4
|
|
586
|
-
];
|
|
587
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
588
|
-
var ScanNameWithFindingNum$ = [3, n0, _SNWFN,
|
|
589
|
-
0,
|
|
590
|
-
[_sN, _fN],
|
|
591
|
-
[0, 1]
|
|
592
|
-
];
|
|
593
|
-
var ScanSummary$ = [3, n0, _SS,
|
|
594
|
-
0,
|
|
595
|
-
[_sS, _cA, _sN, _rIu, _uA, _sNA],
|
|
596
|
-
[0, 4, 0, 0, 4, 0], 4
|
|
597
|
-
];
|
|
598
|
-
var SuggestedFix$ = [3, n0, _SF,
|
|
599
|
-
0,
|
|
600
|
-
[_de, _cod],
|
|
601
|
-
[0, 0]
|
|
602
|
-
];
|
|
603
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
604
|
-
0,
|
|
605
|
-
[_rA, _t],
|
|
606
|
-
[[0, 1], 128 | 0], 2
|
|
607
|
-
];
|
|
608
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
609
|
-
0,
|
|
610
|
-
[],
|
|
611
|
-
[]
|
|
612
|
-
];
|
|
613
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
614
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
615
|
-
[_eC, _m, _sC, _qC],
|
|
616
|
-
[0, 0, 0, 0], 2
|
|
617
|
-
];
|
|
618
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
619
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
620
|
-
0,
|
|
621
|
-
[_rA, _tK],
|
|
622
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
623
|
-
];
|
|
624
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
625
|
-
0,
|
|
626
|
-
[],
|
|
627
|
-
[]
|
|
628
|
-
];
|
|
629
|
-
var UpdateAccountConfigurationRequest$ = [3, n0, _UACR,
|
|
630
|
-
0,
|
|
631
|
-
[_eCn],
|
|
632
|
-
[() => EncryptionConfig$], 1
|
|
633
|
-
];
|
|
634
|
-
var UpdateAccountConfigurationResponse$ = [3, n0, _UACRp,
|
|
635
|
-
0,
|
|
636
|
-
[_eCn],
|
|
637
|
-
[() => EncryptionConfig$], 1
|
|
638
|
-
];
|
|
639
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
640
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
641
|
-
[_eC, _m, _rea, _fL],
|
|
642
|
-
[0, 0, 0, () => ValidationExceptionFieldList], 3
|
|
643
|
-
];
|
|
644
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
645
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
646
|
-
0,
|
|
647
|
-
[_na, _m],
|
|
648
|
-
[0, 0], 2
|
|
649
|
-
];
|
|
650
|
-
var Vulnerability$ = [3, n0, _V,
|
|
651
|
-
0,
|
|
652
|
-
[_rU, _rV, _i, _fP, _iC],
|
|
653
|
-
[64 | 0, 64 | 0, 0, () => FilePath$, 1]
|
|
654
|
-
];
|
|
655
|
-
var CodeGuruSecurityServiceException$ = [-3, _sm, "CodeGuruSecurityServiceException", 0, [], []];
|
|
656
|
-
schema.TypeRegistry.for(_sm).registerError(CodeGuruSecurityServiceException$, CodeGuruSecurityServiceException);
|
|
657
|
-
var BatchGetFindingsErrors = [1, n0, _BGFEa,
|
|
658
|
-
0, () => BatchGetFindingsError$
|
|
659
|
-
];
|
|
660
|
-
var CategoriesWithMostFindings = [1, n0, _CWMF,
|
|
661
|
-
0, () => CategoryWithFindingNum$
|
|
662
|
-
];
|
|
663
|
-
var CodeSnippet = [1, n0, _CS,
|
|
664
|
-
0, () => CodeLine$
|
|
665
|
-
];
|
|
666
|
-
var FindingIdentifiers = [1, n0, _FIi,
|
|
667
|
-
0, () => FindingIdentifier$
|
|
668
|
-
];
|
|
669
|
-
var Findings = [1, n0, _Fi,
|
|
670
|
-
0, () => Finding$
|
|
671
|
-
];
|
|
672
|
-
var FindingsMetricList = [1, n0, _FML,
|
|
673
|
-
0, () => AccountFindingsMetric$
|
|
674
|
-
];
|
|
675
|
-
var ScanSummaries = [1, n0, _SSc,
|
|
676
|
-
0, () => ScanSummary$
|
|
677
|
-
];
|
|
678
|
-
var ScansWithMostOpenCriticalFindings = [1, n0, _SWMOCF,
|
|
679
|
-
0, () => ScanNameWithFindingNum$
|
|
680
|
-
];
|
|
681
|
-
var ScansWithMostOpenFindings = [1, n0, _SWMOF,
|
|
682
|
-
0, () => ScanNameWithFindingNum$
|
|
683
|
-
];
|
|
684
|
-
var SuggestedFixes = [1, n0, _SFu,
|
|
685
|
-
0, () => SuggestedFix$
|
|
686
|
-
];
|
|
687
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
688
|
-
0, () => ValidationExceptionField$
|
|
689
|
-
];
|
|
690
|
-
var RequestHeaderMap = [2, n0, _RHM,
|
|
691
|
-
8, 0, 0
|
|
692
|
-
];
|
|
693
|
-
var ResourceId$ = [4, n0, _RI,
|
|
694
|
-
0,
|
|
695
|
-
[_cAI],
|
|
696
|
-
[0]
|
|
697
|
-
];
|
|
698
|
-
var BatchGetFindings$ = [9, n0, _BGF,
|
|
699
|
-
{ [_ht]: ["POST", "/batchGetFindings", 200] }, () => BatchGetFindingsRequest$, () => BatchGetFindingsResponse$
|
|
700
|
-
];
|
|
701
|
-
var CreateScan$ = [9, n0, _CSr,
|
|
702
|
-
{ [_ht]: ["POST", "/scans", 200] }, () => CreateScanRequest$, () => CreateScanResponse$
|
|
703
|
-
];
|
|
704
|
-
var CreateUploadUrl$ = [9, n0, _CUU,
|
|
705
|
-
{ [_ht]: ["POST", "/uploadUrl", 200] }, () => CreateUploadUrlRequest$, () => CreateUploadUrlResponse$
|
|
706
|
-
];
|
|
707
|
-
var GetAccountConfiguration$ = [9, n0, _GAC,
|
|
708
|
-
{ [_ht]: ["GET", "/accountConfiguration/get", 200] }, () => GetAccountConfigurationRequest$, () => GetAccountConfigurationResponse$
|
|
709
|
-
];
|
|
710
|
-
var GetFindings$ = [9, n0, _GF,
|
|
711
|
-
{ [_ht]: ["GET", "/findings/{scanName}", 200] }, () => GetFindingsRequest$, () => GetFindingsResponse$
|
|
712
|
-
];
|
|
713
|
-
var GetMetricsSummary$ = [9, n0, _GMS,
|
|
714
|
-
{ [_ht]: ["GET", "/metrics/summary", 200] }, () => GetMetricsSummaryRequest$, () => GetMetricsSummaryResponse$
|
|
715
|
-
];
|
|
716
|
-
var GetScan$ = [9, n0, _GS,
|
|
717
|
-
{ [_ht]: ["GET", "/scans/{scanName}", 200] }, () => GetScanRequest$, () => GetScanResponse$
|
|
718
|
-
];
|
|
719
|
-
var ListFindingsMetrics$ = [9, n0, _LFM,
|
|
720
|
-
{ [_ht]: ["GET", "/metrics/findings", 200] }, () => ListFindingsMetricsRequest$, () => ListFindingsMetricsResponse$
|
|
721
|
-
];
|
|
722
|
-
var ListScans$ = [9, n0, _LS,
|
|
723
|
-
{ [_ht]: ["GET", "/scans", 200] }, () => ListScansRequest$, () => ListScansResponse$
|
|
724
|
-
];
|
|
725
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
726
|
-
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
727
|
-
];
|
|
728
|
-
var TagResource$ = [9, n0, _TR,
|
|
729
|
-
{ [_ht]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
730
|
-
];
|
|
731
|
-
var UntagResource$ = [9, n0, _UR,
|
|
732
|
-
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
733
|
-
];
|
|
734
|
-
var UpdateAccountConfiguration$ = [9, n0, _UAC,
|
|
735
|
-
{ [_ht]: ["PUT", "/updateAccountConfiguration", 200] }, () => UpdateAccountConfigurationRequest$, () => UpdateAccountConfigurationResponse$
|
|
736
|
-
];
|
|
737
|
-
|
|
738
116
|
class BatchGetFindingsCommand extends smithyClient.Command
|
|
739
117
|
.classBuilder()
|
|
740
118
|
.ep(commonParams)
|
|
@@ -743,7 +121,7 @@ class BatchGetFindingsCommand extends smithyClient.Command
|
|
|
743
121
|
})
|
|
744
122
|
.s("AwsCodeGuruSecurity", "BatchGetFindings", {})
|
|
745
123
|
.n("CodeGuruSecurityClient", "BatchGetFindingsCommand")
|
|
746
|
-
.sc(BatchGetFindings$)
|
|
124
|
+
.sc(schemas_0.BatchGetFindings$)
|
|
747
125
|
.build() {
|
|
748
126
|
}
|
|
749
127
|
|
|
@@ -755,7 +133,7 @@ class CreateScanCommand extends smithyClient.Command
|
|
|
755
133
|
})
|
|
756
134
|
.s("AwsCodeGuruSecurity", "CreateScan", {})
|
|
757
135
|
.n("CodeGuruSecurityClient", "CreateScanCommand")
|
|
758
|
-
.sc(CreateScan$)
|
|
136
|
+
.sc(schemas_0.CreateScan$)
|
|
759
137
|
.build() {
|
|
760
138
|
}
|
|
761
139
|
|
|
@@ -767,7 +145,7 @@ class CreateUploadUrlCommand extends smithyClient.Command
|
|
|
767
145
|
})
|
|
768
146
|
.s("AwsCodeGuruSecurity", "CreateUploadUrl", {})
|
|
769
147
|
.n("CodeGuruSecurityClient", "CreateUploadUrlCommand")
|
|
770
|
-
.sc(CreateUploadUrl$)
|
|
148
|
+
.sc(schemas_0.CreateUploadUrl$)
|
|
771
149
|
.build() {
|
|
772
150
|
}
|
|
773
151
|
|
|
@@ -779,7 +157,7 @@ class GetAccountConfigurationCommand extends smithyClient.Command
|
|
|
779
157
|
})
|
|
780
158
|
.s("AwsCodeGuruSecurity", "GetAccountConfiguration", {})
|
|
781
159
|
.n("CodeGuruSecurityClient", "GetAccountConfigurationCommand")
|
|
782
|
-
.sc(GetAccountConfiguration$)
|
|
160
|
+
.sc(schemas_0.GetAccountConfiguration$)
|
|
783
161
|
.build() {
|
|
784
162
|
}
|
|
785
163
|
|
|
@@ -791,7 +169,7 @@ class GetFindingsCommand extends smithyClient.Command
|
|
|
791
169
|
})
|
|
792
170
|
.s("AwsCodeGuruSecurity", "GetFindings", {})
|
|
793
171
|
.n("CodeGuruSecurityClient", "GetFindingsCommand")
|
|
794
|
-
.sc(GetFindings$)
|
|
172
|
+
.sc(schemas_0.GetFindings$)
|
|
795
173
|
.build() {
|
|
796
174
|
}
|
|
797
175
|
|
|
@@ -803,7 +181,7 @@ class GetMetricsSummaryCommand extends smithyClient.Command
|
|
|
803
181
|
})
|
|
804
182
|
.s("AwsCodeGuruSecurity", "GetMetricsSummary", {})
|
|
805
183
|
.n("CodeGuruSecurityClient", "GetMetricsSummaryCommand")
|
|
806
|
-
.sc(GetMetricsSummary$)
|
|
184
|
+
.sc(schemas_0.GetMetricsSummary$)
|
|
807
185
|
.build() {
|
|
808
186
|
}
|
|
809
187
|
|
|
@@ -815,7 +193,7 @@ class GetScanCommand extends smithyClient.Command
|
|
|
815
193
|
})
|
|
816
194
|
.s("AwsCodeGuruSecurity", "GetScan", {})
|
|
817
195
|
.n("CodeGuruSecurityClient", "GetScanCommand")
|
|
818
|
-
.sc(GetScan$)
|
|
196
|
+
.sc(schemas_0.GetScan$)
|
|
819
197
|
.build() {
|
|
820
198
|
}
|
|
821
199
|
|
|
@@ -827,7 +205,7 @@ class ListFindingsMetricsCommand extends smithyClient.Command
|
|
|
827
205
|
})
|
|
828
206
|
.s("AwsCodeGuruSecurity", "ListFindingsMetrics", {})
|
|
829
207
|
.n("CodeGuruSecurityClient", "ListFindingsMetricsCommand")
|
|
830
|
-
.sc(ListFindingsMetrics$)
|
|
208
|
+
.sc(schemas_0.ListFindingsMetrics$)
|
|
831
209
|
.build() {
|
|
832
210
|
}
|
|
833
211
|
|
|
@@ -839,7 +217,7 @@ class ListScansCommand extends smithyClient.Command
|
|
|
839
217
|
})
|
|
840
218
|
.s("AwsCodeGuruSecurity", "ListScans", {})
|
|
841
219
|
.n("CodeGuruSecurityClient", "ListScansCommand")
|
|
842
|
-
.sc(ListScans$)
|
|
220
|
+
.sc(schemas_0.ListScans$)
|
|
843
221
|
.build() {
|
|
844
222
|
}
|
|
845
223
|
|
|
@@ -851,7 +229,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
851
229
|
})
|
|
852
230
|
.s("AwsCodeGuruSecurity", "ListTagsForResource", {})
|
|
853
231
|
.n("CodeGuruSecurityClient", "ListTagsForResourceCommand")
|
|
854
|
-
.sc(ListTagsForResource$)
|
|
232
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
855
233
|
.build() {
|
|
856
234
|
}
|
|
857
235
|
|
|
@@ -863,7 +241,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
863
241
|
})
|
|
864
242
|
.s("AwsCodeGuruSecurity", "TagResource", {})
|
|
865
243
|
.n("CodeGuruSecurityClient", "TagResourceCommand")
|
|
866
|
-
.sc(TagResource$)
|
|
244
|
+
.sc(schemas_0.TagResource$)
|
|
867
245
|
.build() {
|
|
868
246
|
}
|
|
869
247
|
|
|
@@ -875,7 +253,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
875
253
|
})
|
|
876
254
|
.s("AwsCodeGuruSecurity", "UntagResource", {})
|
|
877
255
|
.n("CodeGuruSecurityClient", "UntagResourceCommand")
|
|
878
|
-
.sc(UntagResource$)
|
|
256
|
+
.sc(schemas_0.UntagResource$)
|
|
879
257
|
.build() {
|
|
880
258
|
}
|
|
881
259
|
|
|
@@ -887,7 +265,7 @@ class UpdateAccountConfigurationCommand extends smithyClient.Command
|
|
|
887
265
|
})
|
|
888
266
|
.s("AwsCodeGuruSecurity", "UpdateAccountConfiguration", {})
|
|
889
267
|
.n("CodeGuruSecurityClient", "UpdateAccountConfigurationCommand")
|
|
890
|
-
.sc(UpdateAccountConfiguration$)
|
|
268
|
+
.sc(schemas_0.UpdateAccountConfiguration$)
|
|
891
269
|
.build() {
|
|
892
270
|
}
|
|
893
271
|
|
|
@@ -969,100 +347,44 @@ Object.defineProperty(exports, "__Client", {
|
|
|
969
347
|
enumerable: true,
|
|
970
348
|
get: function () { return smithyClient.Client; }
|
|
971
349
|
});
|
|
972
|
-
exports
|
|
973
|
-
|
|
974
|
-
|
|
350
|
+
Object.defineProperty(exports, "CodeGuruSecurityServiceException", {
|
|
351
|
+
enumerable: true,
|
|
352
|
+
get: function () { return CodeGuruSecurityServiceException.CodeGuruSecurityServiceException; }
|
|
353
|
+
});
|
|
975
354
|
exports.AnalysisType = AnalysisType;
|
|
976
|
-
exports.BatchGetFindings$ = BatchGetFindings$;
|
|
977
355
|
exports.BatchGetFindingsCommand = BatchGetFindingsCommand;
|
|
978
|
-
exports.BatchGetFindingsError$ = BatchGetFindingsError$;
|
|
979
|
-
exports.BatchGetFindingsRequest$ = BatchGetFindingsRequest$;
|
|
980
|
-
exports.BatchGetFindingsResponse$ = BatchGetFindingsResponse$;
|
|
981
|
-
exports.CategoryWithFindingNum$ = CategoryWithFindingNum$;
|
|
982
356
|
exports.CodeGuruSecurity = CodeGuruSecurity;
|
|
983
357
|
exports.CodeGuruSecurityClient = CodeGuruSecurityClient;
|
|
984
|
-
exports.CodeGuruSecurityServiceException = CodeGuruSecurityServiceException;
|
|
985
|
-
exports.CodeGuruSecurityServiceException$ = CodeGuruSecurityServiceException$;
|
|
986
|
-
exports.CodeLine$ = CodeLine$;
|
|
987
|
-
exports.ConflictException = ConflictException;
|
|
988
|
-
exports.ConflictException$ = ConflictException$;
|
|
989
|
-
exports.CreateScan$ = CreateScan$;
|
|
990
358
|
exports.CreateScanCommand = CreateScanCommand;
|
|
991
|
-
exports.CreateScanRequest$ = CreateScanRequest$;
|
|
992
|
-
exports.CreateScanResponse$ = CreateScanResponse$;
|
|
993
|
-
exports.CreateUploadUrl$ = CreateUploadUrl$;
|
|
994
359
|
exports.CreateUploadUrlCommand = CreateUploadUrlCommand;
|
|
995
|
-
exports.CreateUploadUrlRequest$ = CreateUploadUrlRequest$;
|
|
996
|
-
exports.CreateUploadUrlResponse$ = CreateUploadUrlResponse$;
|
|
997
|
-
exports.EncryptionConfig$ = EncryptionConfig$;
|
|
998
360
|
exports.ErrorCode = ErrorCode;
|
|
999
|
-
exports.FilePath$ = FilePath$;
|
|
1000
|
-
exports.Finding$ = Finding$;
|
|
1001
|
-
exports.FindingIdentifier$ = FindingIdentifier$;
|
|
1002
|
-
exports.FindingMetricsValuePerSeverity$ = FindingMetricsValuePerSeverity$;
|
|
1003
|
-
exports.GetAccountConfiguration$ = GetAccountConfiguration$;
|
|
1004
361
|
exports.GetAccountConfigurationCommand = GetAccountConfigurationCommand;
|
|
1005
|
-
exports.GetAccountConfigurationRequest$ = GetAccountConfigurationRequest$;
|
|
1006
|
-
exports.GetAccountConfigurationResponse$ = GetAccountConfigurationResponse$;
|
|
1007
|
-
exports.GetFindings$ = GetFindings$;
|
|
1008
362
|
exports.GetFindingsCommand = GetFindingsCommand;
|
|
1009
|
-
exports.GetFindingsRequest$ = GetFindingsRequest$;
|
|
1010
|
-
exports.GetFindingsResponse$ = GetFindingsResponse$;
|
|
1011
|
-
exports.GetMetricsSummary$ = GetMetricsSummary$;
|
|
1012
363
|
exports.GetMetricsSummaryCommand = GetMetricsSummaryCommand;
|
|
1013
|
-
exports.GetMetricsSummaryRequest$ = GetMetricsSummaryRequest$;
|
|
1014
|
-
exports.GetMetricsSummaryResponse$ = GetMetricsSummaryResponse$;
|
|
1015
|
-
exports.GetScan$ = GetScan$;
|
|
1016
364
|
exports.GetScanCommand = GetScanCommand;
|
|
1017
|
-
exports.GetScanRequest$ = GetScanRequest$;
|
|
1018
|
-
exports.GetScanResponse$ = GetScanResponse$;
|
|
1019
|
-
exports.InternalServerException = InternalServerException;
|
|
1020
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1021
|
-
exports.ListFindingsMetrics$ = ListFindingsMetrics$;
|
|
1022
365
|
exports.ListFindingsMetricsCommand = ListFindingsMetricsCommand;
|
|
1023
|
-
exports.ListFindingsMetricsRequest$ = ListFindingsMetricsRequest$;
|
|
1024
|
-
exports.ListFindingsMetricsResponse$ = ListFindingsMetricsResponse$;
|
|
1025
|
-
exports.ListScans$ = ListScans$;
|
|
1026
366
|
exports.ListScansCommand = ListScansCommand;
|
|
1027
|
-
exports.ListScansRequest$ = ListScansRequest$;
|
|
1028
|
-
exports.ListScansResponse$ = ListScansResponse$;
|
|
1029
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1030
367
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1031
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1032
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1033
|
-
exports.MetricsSummary$ = MetricsSummary$;
|
|
1034
|
-
exports.Recommendation$ = Recommendation$;
|
|
1035
|
-
exports.Remediation$ = Remediation$;
|
|
1036
|
-
exports.Resource$ = Resource$;
|
|
1037
|
-
exports.ResourceId$ = ResourceId$;
|
|
1038
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1039
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1040
|
-
exports.ScanNameWithFindingNum$ = ScanNameWithFindingNum$;
|
|
1041
368
|
exports.ScanState = ScanState;
|
|
1042
|
-
exports.ScanSummary$ = ScanSummary$;
|
|
1043
369
|
exports.ScanType = ScanType;
|
|
1044
370
|
exports.Severity = Severity;
|
|
1045
371
|
exports.Status = Status;
|
|
1046
|
-
exports.SuggestedFix$ = SuggestedFix$;
|
|
1047
|
-
exports.TagResource$ = TagResource$;
|
|
1048
372
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1049
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1050
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1051
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1052
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1053
|
-
exports.UntagResource$ = UntagResource$;
|
|
1054
373
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1055
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1056
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1057
|
-
exports.UpdateAccountConfiguration$ = UpdateAccountConfiguration$;
|
|
1058
374
|
exports.UpdateAccountConfigurationCommand = UpdateAccountConfigurationCommand;
|
|
1059
|
-
exports.UpdateAccountConfigurationRequest$ = UpdateAccountConfigurationRequest$;
|
|
1060
|
-
exports.UpdateAccountConfigurationResponse$ = UpdateAccountConfigurationResponse$;
|
|
1061
|
-
exports.ValidationException = ValidationException;
|
|
1062
|
-
exports.ValidationException$ = ValidationException$;
|
|
1063
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1064
375
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1065
|
-
exports.Vulnerability$ = Vulnerability$;
|
|
1066
376
|
exports.paginateGetFindings = paginateGetFindings;
|
|
1067
377
|
exports.paginateListFindingsMetrics = paginateListFindingsMetrics;
|
|
1068
378
|
exports.paginateListScans = paginateListScans;
|
|
379
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
380
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
381
|
+
enumerable: true,
|
|
382
|
+
get: function () { return schemas_0[k]; }
|
|
383
|
+
});
|
|
384
|
+
});
|
|
385
|
+
Object.keys(errors).forEach(function (k) {
|
|
386
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
387
|
+
enumerable: true,
|
|
388
|
+
get: function () { return errors[k]; }
|
|
389
|
+
});
|
|
390
|
+
});
|