@aws-sdk/client-inspector2 3.186.0 → 3.190.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/CHANGELOG.md +16 -0
- package/dist-es/Inspector2.js +130 -137
- package/dist-es/Inspector2Client.js +22 -28
- package/dist-es/commands/AssociateMemberCommand.js +21 -28
- package/dist-es/commands/BatchGetAccountStatusCommand.js +21 -28
- package/dist-es/commands/BatchGetFreeTrialInfoCommand.js +21 -28
- package/dist-es/commands/CancelFindingsReportCommand.js +21 -28
- package/dist-es/commands/CreateFilterCommand.js +21 -28
- package/dist-es/commands/CreateFindingsReportCommand.js +21 -28
- package/dist-es/commands/DeleteFilterCommand.js +21 -28
- package/dist-es/commands/DescribeOrganizationConfigurationCommand.js +21 -28
- package/dist-es/commands/DisableCommand.js +21 -28
- package/dist-es/commands/DisableDelegatedAdminAccountCommand.js +21 -28
- package/dist-es/commands/DisassociateMemberCommand.js +21 -28
- package/dist-es/commands/EnableCommand.js +21 -28
- package/dist-es/commands/EnableDelegatedAdminAccountCommand.js +21 -28
- package/dist-es/commands/GetConfigurationCommand.js +21 -28
- package/dist-es/commands/GetDelegatedAdminAccountCommand.js +21 -28
- package/dist-es/commands/GetFindingsReportStatusCommand.js +21 -28
- package/dist-es/commands/GetMemberCommand.js +21 -28
- package/dist-es/commands/ListAccountPermissionsCommand.js +21 -28
- package/dist-es/commands/ListCoverageCommand.js +21 -28
- package/dist-es/commands/ListCoverageStatisticsCommand.js +21 -28
- package/dist-es/commands/ListDelegatedAdminAccountsCommand.js +21 -28
- package/dist-es/commands/ListFiltersCommand.js +21 -28
- package/dist-es/commands/ListFindingAggregationsCommand.js +21 -28
- package/dist-es/commands/ListFindingsCommand.js +21 -28
- package/dist-es/commands/ListMembersCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListUsageTotalsCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateConfigurationCommand.js +21 -28
- package/dist-es/commands/UpdateFilterCommand.js +21 -28
- package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/Inspector2ServiceException.js +5 -10
- package/dist-es/models/models_0.js +523 -244
- package/dist-es/pagination/ListAccountPermissionsPaginator.js +25 -68
- package/dist-es/pagination/ListCoveragePaginator.js +25 -68
- package/dist-es/pagination/ListCoverageStatisticsPaginator.js +24 -67
- package/dist-es/pagination/ListDelegatedAdminAccountsPaginator.js +25 -68
- package/dist-es/pagination/ListFiltersPaginator.js +25 -68
- package/dist-es/pagination/ListFindingAggregationsPaginator.js +25 -68
- package/dist-es/pagination/ListFindingsPaginator.js +25 -68
- package/dist-es/pagination/ListMembersPaginator.js +25 -68
- package/dist-es/pagination/ListUsageTotalsPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2799 -3623
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { Inspector2ServiceException as __BaseException } from "./Inspector2ServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AccessDeniedException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AccessDeniedException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
11
12
|
}
|
|
12
|
-
|
|
13
|
-
}(__BaseException));
|
|
14
|
-
export { AccessDeniedException };
|
|
13
|
+
}
|
|
15
14
|
export var Status;
|
|
16
15
|
(function (Status) {
|
|
17
16
|
Status["DISABLED"] = "DISABLED";
|
|
@@ -122,7 +121,7 @@ export var TitleSortBy;
|
|
|
122
121
|
})(TitleSortBy || (TitleSortBy = {}));
|
|
123
122
|
export var AggregationRequest;
|
|
124
123
|
(function (AggregationRequest) {
|
|
125
|
-
AggregationRequest.visit =
|
|
124
|
+
AggregationRequest.visit = (value, visitor) => {
|
|
126
125
|
if (value.accountAggregation !== undefined)
|
|
127
126
|
return visitor.accountAggregation(value.accountAggregation);
|
|
128
127
|
if (value.amiAggregation !== undefined)
|
|
@@ -146,7 +145,7 @@ export var AggregationRequest;
|
|
|
146
145
|
})(AggregationRequest || (AggregationRequest = {}));
|
|
147
146
|
export var AggregationResponse;
|
|
148
147
|
(function (AggregationResponse) {
|
|
149
|
-
AggregationResponse.visit =
|
|
148
|
+
AggregationResponse.visit = (value, visitor) => {
|
|
150
149
|
if (value.accountAggregation !== undefined)
|
|
151
150
|
return visitor.accountAggregation(value.accountAggregation);
|
|
152
151
|
if (value.amiAggregation !== undefined)
|
|
@@ -180,76 +179,76 @@ export var AggregationType;
|
|
|
180
179
|
AggregationType["REPOSITORY"] = "REPOSITORY";
|
|
181
180
|
AggregationType["TITLE"] = "TITLE";
|
|
182
181
|
})(AggregationType || (AggregationType = {}));
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
182
|
+
export class InternalServerException extends __BaseException {
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "InternalServerException",
|
|
186
|
+
$fault: "server",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
this.name = "InternalServerException";
|
|
190
|
+
this.$fault = "server";
|
|
191
|
+
this.$retryable = {};
|
|
192
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
193
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
193
194
|
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
195
|
+
}
|
|
196
|
+
export class ThrottlingException extends __BaseException {
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "ThrottlingException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
this.name = "ThrottlingException";
|
|
204
|
+
this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
205
206
|
}
|
|
206
|
-
|
|
207
|
-
}(__BaseException));
|
|
208
|
-
export { ThrottlingException };
|
|
207
|
+
}
|
|
209
208
|
export var ValidationExceptionReason;
|
|
210
209
|
(function (ValidationExceptionReason) {
|
|
211
210
|
ValidationExceptionReason["CANNOT_PARSE"] = "CANNOT_PARSE";
|
|
212
211
|
ValidationExceptionReason["FIELD_VALIDATION_FAILED"] = "FIELD_VALIDATION_FAILED";
|
|
213
212
|
ValidationExceptionReason["OTHER"] = "OTHER";
|
|
214
213
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
214
|
+
export class ValidationException extends __BaseException {
|
|
215
|
+
constructor(opts) {
|
|
216
|
+
super({
|
|
217
|
+
name: "ValidationException",
|
|
218
|
+
$fault: "client",
|
|
219
|
+
...opts,
|
|
220
|
+
});
|
|
221
|
+
this.name = "ValidationException";
|
|
222
|
+
this.$fault = "client";
|
|
223
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
224
|
+
this.reason = opts.reason;
|
|
225
|
+
this.fields = opts.fields;
|
|
225
226
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
227
|
+
}
|
|
228
|
+
export class BadRequestException extends __BaseException {
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "BadRequestException",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
this.name = "BadRequestException";
|
|
236
|
+
this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
237
238
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
239
|
+
}
|
|
240
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ResourceNotFoundException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
this.name = "ResourceNotFoundException";
|
|
248
|
+
this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
249
250
|
}
|
|
250
|
-
|
|
251
|
-
}(__BaseException));
|
|
252
|
-
export { ResourceNotFoundException };
|
|
251
|
+
}
|
|
253
252
|
export var FreeTrialStatus;
|
|
254
253
|
(function (FreeTrialStatus) {
|
|
255
254
|
FreeTrialStatus["ACTIVE"] = "ACTIVE";
|
|
@@ -265,20 +264,20 @@ export var FreeTrialInfoErrorCode;
|
|
|
265
264
|
FreeTrialInfoErrorCode["ACCESS_DENIED"] = "ACCESS_DENIED";
|
|
266
265
|
FreeTrialInfoErrorCode["INTERNAL_ERROR"] = "INTERNAL_ERROR";
|
|
267
266
|
})(FreeTrialInfoErrorCode || (FreeTrialInfoErrorCode = {}));
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
267
|
+
export class ConflictException extends __BaseException {
|
|
268
|
+
constructor(opts) {
|
|
269
|
+
super({
|
|
270
|
+
name: "ConflictException",
|
|
271
|
+
$fault: "client",
|
|
272
|
+
...opts,
|
|
273
|
+
});
|
|
274
|
+
this.name = "ConflictException";
|
|
275
|
+
this.$fault = "client";
|
|
276
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
277
|
+
this.resourceId = opts.resourceId;
|
|
278
|
+
this.resourceType = opts.resourceType;
|
|
278
279
|
}
|
|
279
|
-
|
|
280
|
-
}(__BaseException));
|
|
281
|
-
export { ConflictException };
|
|
280
|
+
}
|
|
282
281
|
export var GroupKey;
|
|
283
282
|
(function (GroupKey) {
|
|
284
283
|
GroupKey["ACCOUNT_ID"] = "ACCOUNT_ID";
|
|
@@ -348,19 +347,19 @@ export var FilterAction;
|
|
|
348
347
|
FilterAction["NONE"] = "NONE";
|
|
349
348
|
FilterAction["SUPPRESS"] = "SUPPRESS";
|
|
350
349
|
})(FilterAction || (FilterAction = {}));
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
350
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
351
|
+
constructor(opts) {
|
|
352
|
+
super({
|
|
353
|
+
name: "ServiceQuotaExceededException",
|
|
354
|
+
$fault: "client",
|
|
355
|
+
...opts,
|
|
356
|
+
});
|
|
357
|
+
this.name = "ServiceQuotaExceededException";
|
|
358
|
+
this.$fault = "client";
|
|
359
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
360
|
+
this.resourceId = opts.resourceId;
|
|
360
361
|
}
|
|
361
|
-
|
|
362
|
-
}(__BaseException));
|
|
363
|
-
export { ServiceQuotaExceededException };
|
|
362
|
+
}
|
|
364
363
|
export var ReportFormat;
|
|
365
364
|
(function (ReportFormat) {
|
|
366
365
|
ReportFormat["CSV"] = "CSV";
|
|
@@ -516,26 +515,61 @@ export var UsageType;
|
|
|
516
515
|
UsageType["ECR_INITIAL_SCAN"] = "ECR_INITIAL_SCAN";
|
|
517
516
|
UsageType["ECR_RESCAN"] = "ECR_RESCAN";
|
|
518
517
|
})(UsageType || (UsageType = {}));
|
|
519
|
-
export
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
export
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
export
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
export
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
export
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
export
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
export
|
|
538
|
-
|
|
518
|
+
export const ResourceStatusFilterSensitiveLog = (obj) => ({
|
|
519
|
+
...obj,
|
|
520
|
+
});
|
|
521
|
+
export const AccountFilterSensitiveLog = (obj) => ({
|
|
522
|
+
...obj,
|
|
523
|
+
});
|
|
524
|
+
export const AccountAggregationFilterSensitiveLog = (obj) => ({
|
|
525
|
+
...obj,
|
|
526
|
+
});
|
|
527
|
+
export const SeverityCountsFilterSensitiveLog = (obj) => ({
|
|
528
|
+
...obj,
|
|
529
|
+
});
|
|
530
|
+
export const AccountAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
531
|
+
...obj,
|
|
532
|
+
});
|
|
533
|
+
export const StateFilterSensitiveLog = (obj) => ({
|
|
534
|
+
...obj,
|
|
535
|
+
});
|
|
536
|
+
export const ResourceStateFilterSensitiveLog = (obj) => ({
|
|
537
|
+
...obj,
|
|
538
|
+
});
|
|
539
|
+
export const AccountStateFilterSensitiveLog = (obj) => ({
|
|
540
|
+
...obj,
|
|
541
|
+
});
|
|
542
|
+
export const StringFilterFilterSensitiveLog = (obj) => ({
|
|
543
|
+
...obj,
|
|
544
|
+
});
|
|
545
|
+
export const AmiAggregationFilterSensitiveLog = (obj) => ({
|
|
546
|
+
...obj,
|
|
547
|
+
});
|
|
548
|
+
export const AwsEcrContainerAggregationFilterSensitiveLog = (obj) => ({
|
|
549
|
+
...obj,
|
|
550
|
+
});
|
|
551
|
+
export const MapFilterFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
});
|
|
554
|
+
export const Ec2InstanceAggregationFilterSensitiveLog = (obj) => ({
|
|
555
|
+
...obj,
|
|
556
|
+
});
|
|
557
|
+
export const FindingTypeAggregationFilterSensitiveLog = (obj) => ({
|
|
558
|
+
...obj,
|
|
559
|
+
});
|
|
560
|
+
export const ImageLayerAggregationFilterSensitiveLog = (obj) => ({
|
|
561
|
+
...obj,
|
|
562
|
+
});
|
|
563
|
+
export const PackageAggregationFilterSensitiveLog = (obj) => ({
|
|
564
|
+
...obj,
|
|
565
|
+
});
|
|
566
|
+
export const RepositoryAggregationFilterSensitiveLog = (obj) => ({
|
|
567
|
+
...obj,
|
|
568
|
+
});
|
|
569
|
+
export const TitleAggregationFilterSensitiveLog = (obj) => ({
|
|
570
|
+
...obj,
|
|
571
|
+
});
|
|
572
|
+
export const AggregationRequestFilterSensitiveLog = (obj) => {
|
|
539
573
|
if (obj.accountAggregation !== undefined)
|
|
540
574
|
return { accountAggregation: AccountAggregationFilterSensitiveLog(obj.accountAggregation) };
|
|
541
575
|
if (obj.amiAggregation !== undefined)
|
|
@@ -555,18 +589,33 @@ export var AggregationRequestFilterSensitiveLog = function (obj) {
|
|
|
555
589
|
if (obj.titleAggregation !== undefined)
|
|
556
590
|
return { titleAggregation: TitleAggregationFilterSensitiveLog(obj.titleAggregation) };
|
|
557
591
|
if (obj.$unknown !== undefined)
|
|
558
|
-
return
|
|
592
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
559
593
|
};
|
|
560
|
-
export
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
export
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
export
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
594
|
+
export const AmiAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
595
|
+
...obj,
|
|
596
|
+
});
|
|
597
|
+
export const AwsEcrContainerAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
598
|
+
...obj,
|
|
599
|
+
});
|
|
600
|
+
export const Ec2InstanceAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
601
|
+
...obj,
|
|
602
|
+
});
|
|
603
|
+
export const FindingTypeAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
604
|
+
...obj,
|
|
605
|
+
});
|
|
606
|
+
export const ImageLayerAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
607
|
+
...obj,
|
|
608
|
+
});
|
|
609
|
+
export const PackageAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
610
|
+
...obj,
|
|
611
|
+
});
|
|
612
|
+
export const RepositoryAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
613
|
+
...obj,
|
|
614
|
+
});
|
|
615
|
+
export const TitleAggregationResponseFilterSensitiveLog = (obj) => ({
|
|
616
|
+
...obj,
|
|
617
|
+
});
|
|
618
|
+
export const AggregationResponseFilterSensitiveLog = (obj) => {
|
|
570
619
|
if (obj.accountAggregation !== undefined)
|
|
571
620
|
return { accountAggregation: AccountAggregationResponseFilterSensitiveLog(obj.accountAggregation) };
|
|
572
621
|
if (obj.amiAggregation !== undefined)
|
|
@@ -588,119 +637,349 @@ export var AggregationResponseFilterSensitiveLog = function (obj) {
|
|
|
588
637
|
if (obj.titleAggregation !== undefined)
|
|
589
638
|
return { titleAggregation: TitleAggregationResponseFilterSensitiveLog(obj.titleAggregation) };
|
|
590
639
|
if (obj.$unknown !== undefined)
|
|
591
|
-
return
|
|
640
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
592
641
|
};
|
|
593
|
-
export
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
export
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
export
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
export
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
export
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
export
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
export
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
export
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
export
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
export
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
export
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
export
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
export
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
export
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
export
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
export
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
export
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
export
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
export
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
export
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
export
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
export
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
export
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
export
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
export
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
export
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
export
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
export
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
export
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
export
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
export
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
export
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
export
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
export
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
export
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
export
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
export
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
export
|
|
705
|
-
|
|
706
|
-
|
|
642
|
+
export const AssociateMemberRequestFilterSensitiveLog = (obj) => ({
|
|
643
|
+
...obj,
|
|
644
|
+
});
|
|
645
|
+
export const AssociateMemberResponseFilterSensitiveLog = (obj) => ({
|
|
646
|
+
...obj,
|
|
647
|
+
});
|
|
648
|
+
export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
|
|
649
|
+
...obj,
|
|
650
|
+
});
|
|
651
|
+
export const AutoEnableFilterSensitiveLog = (obj) => ({
|
|
652
|
+
...obj,
|
|
653
|
+
});
|
|
654
|
+
export const AwsEc2InstanceDetailsFilterSensitiveLog = (obj) => ({
|
|
655
|
+
...obj,
|
|
656
|
+
});
|
|
657
|
+
export const AwsEcrContainerImageDetailsFilterSensitiveLog = (obj) => ({
|
|
658
|
+
...obj,
|
|
659
|
+
});
|
|
660
|
+
export const BatchGetAccountStatusRequestFilterSensitiveLog = (obj) => ({
|
|
661
|
+
...obj,
|
|
662
|
+
});
|
|
663
|
+
export const FailedAccountFilterSensitiveLog = (obj) => ({
|
|
664
|
+
...obj,
|
|
665
|
+
});
|
|
666
|
+
export const BatchGetAccountStatusResponseFilterSensitiveLog = (obj) => ({
|
|
667
|
+
...obj,
|
|
668
|
+
});
|
|
669
|
+
export const BatchGetFreeTrialInfoRequestFilterSensitiveLog = (obj) => ({
|
|
670
|
+
...obj,
|
|
671
|
+
});
|
|
672
|
+
export const FreeTrialInfoFilterSensitiveLog = (obj) => ({
|
|
673
|
+
...obj,
|
|
674
|
+
});
|
|
675
|
+
export const FreeTrialAccountInfoFilterSensitiveLog = (obj) => ({
|
|
676
|
+
...obj,
|
|
677
|
+
});
|
|
678
|
+
export const FreeTrialInfoErrorFilterSensitiveLog = (obj) => ({
|
|
679
|
+
...obj,
|
|
680
|
+
});
|
|
681
|
+
export const BatchGetFreeTrialInfoResponseFilterSensitiveLog = (obj) => ({
|
|
682
|
+
...obj,
|
|
683
|
+
});
|
|
684
|
+
export const CancelFindingsReportRequestFilterSensitiveLog = (obj) => ({
|
|
685
|
+
...obj,
|
|
686
|
+
});
|
|
687
|
+
export const CancelFindingsReportResponseFilterSensitiveLog = (obj) => ({
|
|
688
|
+
...obj,
|
|
689
|
+
});
|
|
690
|
+
export const CountsFilterSensitiveLog = (obj) => ({
|
|
691
|
+
...obj,
|
|
692
|
+
});
|
|
693
|
+
export const CoverageStringFilterFilterSensitiveLog = (obj) => ({
|
|
694
|
+
...obj,
|
|
695
|
+
});
|
|
696
|
+
export const CoverageMapFilterFilterSensitiveLog = (obj) => ({
|
|
697
|
+
...obj,
|
|
698
|
+
});
|
|
699
|
+
export const CoverageFilterCriteriaFilterSensitiveLog = (obj) => ({
|
|
700
|
+
...obj,
|
|
701
|
+
});
|
|
702
|
+
export const Ec2MetadataFilterSensitiveLog = (obj) => ({
|
|
703
|
+
...obj,
|
|
704
|
+
});
|
|
705
|
+
export const EcrContainerImageMetadataFilterSensitiveLog = (obj) => ({
|
|
706
|
+
...obj,
|
|
707
|
+
});
|
|
708
|
+
export const EcrRepositoryMetadataFilterSensitiveLog = (obj) => ({
|
|
709
|
+
...obj,
|
|
710
|
+
});
|
|
711
|
+
export const ResourceScanMetadataFilterSensitiveLog = (obj) => ({
|
|
712
|
+
...obj,
|
|
713
|
+
});
|
|
714
|
+
export const ScanStatusFilterSensitiveLog = (obj) => ({
|
|
715
|
+
...obj,
|
|
716
|
+
});
|
|
717
|
+
export const CoveredResourceFilterSensitiveLog = (obj) => ({
|
|
718
|
+
...obj,
|
|
719
|
+
});
|
|
720
|
+
export const DateFilterFilterSensitiveLog = (obj) => ({
|
|
721
|
+
...obj,
|
|
722
|
+
});
|
|
723
|
+
export const NumberFilterFilterSensitiveLog = (obj) => ({
|
|
724
|
+
...obj,
|
|
725
|
+
});
|
|
726
|
+
export const PortRangeFilterFilterSensitiveLog = (obj) => ({
|
|
727
|
+
...obj,
|
|
728
|
+
});
|
|
729
|
+
export const PackageFilterFilterSensitiveLog = (obj) => ({
|
|
730
|
+
...obj,
|
|
731
|
+
});
|
|
732
|
+
export const FilterCriteriaFilterSensitiveLog = (obj) => ({
|
|
733
|
+
...obj,
|
|
734
|
+
});
|
|
735
|
+
export const CreateFilterRequestFilterSensitiveLog = (obj) => ({
|
|
736
|
+
...obj,
|
|
737
|
+
});
|
|
738
|
+
export const CreateFilterResponseFilterSensitiveLog = (obj) => ({
|
|
739
|
+
...obj,
|
|
740
|
+
});
|
|
741
|
+
export const DestinationFilterSensitiveLog = (obj) => ({
|
|
742
|
+
...obj,
|
|
743
|
+
});
|
|
744
|
+
export const CreateFindingsReportRequestFilterSensitiveLog = (obj) => ({
|
|
745
|
+
...obj,
|
|
746
|
+
});
|
|
747
|
+
export const CreateFindingsReportResponseFilterSensitiveLog = (obj) => ({
|
|
748
|
+
...obj,
|
|
749
|
+
});
|
|
750
|
+
export const CvssScoreFilterSensitiveLog = (obj) => ({
|
|
751
|
+
...obj,
|
|
752
|
+
});
|
|
753
|
+
export const CvssScoreAdjustmentFilterSensitiveLog = (obj) => ({
|
|
754
|
+
...obj,
|
|
755
|
+
});
|
|
756
|
+
export const CvssScoreDetailsFilterSensitiveLog = (obj) => ({
|
|
757
|
+
...obj,
|
|
758
|
+
});
|
|
759
|
+
export const DelegatedAdminFilterSensitiveLog = (obj) => ({
|
|
760
|
+
...obj,
|
|
761
|
+
});
|
|
762
|
+
export const DelegatedAdminAccountFilterSensitiveLog = (obj) => ({
|
|
763
|
+
...obj,
|
|
764
|
+
});
|
|
765
|
+
export const DeleteFilterRequestFilterSensitiveLog = (obj) => ({
|
|
766
|
+
...obj,
|
|
767
|
+
});
|
|
768
|
+
export const DeleteFilterResponseFilterSensitiveLog = (obj) => ({
|
|
769
|
+
...obj,
|
|
770
|
+
});
|
|
771
|
+
export const DescribeOrganizationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
772
|
+
...obj,
|
|
773
|
+
});
|
|
774
|
+
export const DescribeOrganizationConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
775
|
+
...obj,
|
|
776
|
+
});
|
|
777
|
+
export const DisableRequestFilterSensitiveLog = (obj) => ({
|
|
778
|
+
...obj,
|
|
779
|
+
});
|
|
780
|
+
export const DisableResponseFilterSensitiveLog = (obj) => ({
|
|
781
|
+
...obj,
|
|
782
|
+
});
|
|
783
|
+
export const DisableDelegatedAdminAccountRequestFilterSensitiveLog = (obj) => ({
|
|
784
|
+
...obj,
|
|
785
|
+
});
|
|
786
|
+
export const DisableDelegatedAdminAccountResponseFilterSensitiveLog = (obj) => ({
|
|
787
|
+
...obj,
|
|
788
|
+
});
|
|
789
|
+
export const DisassociateMemberRequestFilterSensitiveLog = (obj) => ({
|
|
790
|
+
...obj,
|
|
791
|
+
});
|
|
792
|
+
export const DisassociateMemberResponseFilterSensitiveLog = (obj) => ({
|
|
793
|
+
...obj,
|
|
794
|
+
});
|
|
795
|
+
export const EcrConfigurationFilterSensitiveLog = (obj) => ({
|
|
796
|
+
...obj,
|
|
797
|
+
});
|
|
798
|
+
export const EcrRescanDurationStateFilterSensitiveLog = (obj) => ({
|
|
799
|
+
...obj,
|
|
800
|
+
});
|
|
801
|
+
export const EcrConfigurationStateFilterSensitiveLog = (obj) => ({
|
|
802
|
+
...obj,
|
|
803
|
+
});
|
|
804
|
+
export const EnableRequestFilterSensitiveLog = (obj) => ({
|
|
805
|
+
...obj,
|
|
806
|
+
});
|
|
807
|
+
export const EnableResponseFilterSensitiveLog = (obj) => ({
|
|
808
|
+
...obj,
|
|
809
|
+
});
|
|
810
|
+
export const EnableDelegatedAdminAccountRequestFilterSensitiveLog = (obj) => ({
|
|
811
|
+
...obj,
|
|
812
|
+
});
|
|
813
|
+
export const EnableDelegatedAdminAccountResponseFilterSensitiveLog = (obj) => ({
|
|
814
|
+
...obj,
|
|
815
|
+
});
|
|
816
|
+
export const FilterFilterSensitiveLog = (obj) => ({
|
|
817
|
+
...obj,
|
|
818
|
+
});
|
|
819
|
+
export const InspectorScoreDetailsFilterSensitiveLog = (obj) => ({
|
|
820
|
+
...obj,
|
|
821
|
+
});
|
|
822
|
+
export const StepFilterSensitiveLog = (obj) => ({
|
|
823
|
+
...obj,
|
|
824
|
+
});
|
|
825
|
+
export const NetworkPathFilterSensitiveLog = (obj) => ({
|
|
826
|
+
...obj,
|
|
827
|
+
});
|
|
828
|
+
export const PortRangeFilterSensitiveLog = (obj) => ({
|
|
829
|
+
...obj,
|
|
830
|
+
});
|
|
831
|
+
export const NetworkReachabilityDetailsFilterSensitiveLog = (obj) => ({
|
|
832
|
+
...obj,
|
|
833
|
+
});
|
|
834
|
+
export const VulnerablePackageFilterSensitiveLog = (obj) => ({
|
|
835
|
+
...obj,
|
|
836
|
+
});
|
|
837
|
+
export const PackageVulnerabilityDetailsFilterSensitiveLog = (obj) => ({
|
|
838
|
+
...obj,
|
|
839
|
+
});
|
|
840
|
+
export const RecommendationFilterSensitiveLog = (obj) => ({
|
|
841
|
+
...obj,
|
|
842
|
+
});
|
|
843
|
+
export const RemediationFilterSensitiveLog = (obj) => ({
|
|
844
|
+
...obj,
|
|
845
|
+
});
|
|
846
|
+
export const ResourceDetailsFilterSensitiveLog = (obj) => ({
|
|
847
|
+
...obj,
|
|
848
|
+
});
|
|
849
|
+
export const ResourceFilterSensitiveLog = (obj) => ({
|
|
850
|
+
...obj,
|
|
851
|
+
});
|
|
852
|
+
export const FindingFilterSensitiveLog = (obj) => ({
|
|
853
|
+
...obj,
|
|
854
|
+
});
|
|
855
|
+
export const GetConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
856
|
+
...obj,
|
|
857
|
+
});
|
|
858
|
+
export const GetConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
859
|
+
...obj,
|
|
860
|
+
});
|
|
861
|
+
export const GetDelegatedAdminAccountRequestFilterSensitiveLog = (obj) => ({
|
|
862
|
+
...obj,
|
|
863
|
+
});
|
|
864
|
+
export const GetDelegatedAdminAccountResponseFilterSensitiveLog = (obj) => ({
|
|
865
|
+
...obj,
|
|
866
|
+
});
|
|
867
|
+
export const GetFindingsReportStatusRequestFilterSensitiveLog = (obj) => ({
|
|
868
|
+
...obj,
|
|
869
|
+
});
|
|
870
|
+
export const GetFindingsReportStatusResponseFilterSensitiveLog = (obj) => ({
|
|
871
|
+
...obj,
|
|
872
|
+
});
|
|
873
|
+
export const GetMemberRequestFilterSensitiveLog = (obj) => ({
|
|
874
|
+
...obj,
|
|
875
|
+
});
|
|
876
|
+
export const MemberFilterSensitiveLog = (obj) => ({
|
|
877
|
+
...obj,
|
|
878
|
+
});
|
|
879
|
+
export const GetMemberResponseFilterSensitiveLog = (obj) => ({
|
|
880
|
+
...obj,
|
|
881
|
+
});
|
|
882
|
+
export const ListAccountPermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
883
|
+
...obj,
|
|
884
|
+
});
|
|
885
|
+
export const PermissionFilterSensitiveLog = (obj) => ({
|
|
886
|
+
...obj,
|
|
887
|
+
});
|
|
888
|
+
export const ListAccountPermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
889
|
+
...obj,
|
|
890
|
+
});
|
|
891
|
+
export const ListCoverageRequestFilterSensitiveLog = (obj) => ({
|
|
892
|
+
...obj,
|
|
893
|
+
});
|
|
894
|
+
export const ListCoverageResponseFilterSensitiveLog = (obj) => ({
|
|
895
|
+
...obj,
|
|
896
|
+
});
|
|
897
|
+
export const ListCoverageStatisticsRequestFilterSensitiveLog = (obj) => ({
|
|
898
|
+
...obj,
|
|
899
|
+
});
|
|
900
|
+
export const ListCoverageStatisticsResponseFilterSensitiveLog = (obj) => ({
|
|
901
|
+
...obj,
|
|
902
|
+
});
|
|
903
|
+
export const ListDelegatedAdminAccountsRequestFilterSensitiveLog = (obj) => ({
|
|
904
|
+
...obj,
|
|
905
|
+
});
|
|
906
|
+
export const ListDelegatedAdminAccountsResponseFilterSensitiveLog = (obj) => ({
|
|
907
|
+
...obj,
|
|
908
|
+
});
|
|
909
|
+
export const ListFiltersRequestFilterSensitiveLog = (obj) => ({
|
|
910
|
+
...obj,
|
|
911
|
+
});
|
|
912
|
+
export const ListFiltersResponseFilterSensitiveLog = (obj) => ({
|
|
913
|
+
...obj,
|
|
914
|
+
});
|
|
915
|
+
export const ListFindingAggregationsRequestFilterSensitiveLog = (obj) => ({
|
|
916
|
+
...obj,
|
|
917
|
+
...(obj.aggregationRequest && { aggregationRequest: AggregationRequestFilterSensitiveLog(obj.aggregationRequest) }),
|
|
918
|
+
});
|
|
919
|
+
export const ListFindingAggregationsResponseFilterSensitiveLog = (obj) => ({
|
|
920
|
+
...obj,
|
|
921
|
+
...(obj.responses && { responses: obj.responses.map((item) => AggregationResponseFilterSensitiveLog(item)) }),
|
|
922
|
+
});
|
|
923
|
+
export const SortCriteriaFilterSensitiveLog = (obj) => ({
|
|
924
|
+
...obj,
|
|
925
|
+
});
|
|
926
|
+
export const ListFindingsRequestFilterSensitiveLog = (obj) => ({
|
|
927
|
+
...obj,
|
|
928
|
+
});
|
|
929
|
+
export const ListFindingsResponseFilterSensitiveLog = (obj) => ({
|
|
930
|
+
...obj,
|
|
931
|
+
});
|
|
932
|
+
export const ListMembersRequestFilterSensitiveLog = (obj) => ({
|
|
933
|
+
...obj,
|
|
934
|
+
});
|
|
935
|
+
export const ListMembersResponseFilterSensitiveLog = (obj) => ({
|
|
936
|
+
...obj,
|
|
937
|
+
});
|
|
938
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
939
|
+
...obj,
|
|
940
|
+
});
|
|
941
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
942
|
+
...obj,
|
|
943
|
+
});
|
|
944
|
+
export const ListUsageTotalsRequestFilterSensitiveLog = (obj) => ({
|
|
945
|
+
...obj,
|
|
946
|
+
});
|
|
947
|
+
export const UsageFilterSensitiveLog = (obj) => ({
|
|
948
|
+
...obj,
|
|
949
|
+
});
|
|
950
|
+
export const UsageTotalFilterSensitiveLog = (obj) => ({
|
|
951
|
+
...obj,
|
|
952
|
+
});
|
|
953
|
+
export const ListUsageTotalsResponseFilterSensitiveLog = (obj) => ({
|
|
954
|
+
...obj,
|
|
955
|
+
});
|
|
956
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
957
|
+
...obj,
|
|
958
|
+
});
|
|
959
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
960
|
+
...obj,
|
|
961
|
+
});
|
|
962
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
963
|
+
...obj,
|
|
964
|
+
});
|
|
965
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
966
|
+
...obj,
|
|
967
|
+
});
|
|
968
|
+
export const UpdateConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
969
|
+
...obj,
|
|
970
|
+
});
|
|
971
|
+
export const UpdateConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
972
|
+
...obj,
|
|
973
|
+
});
|
|
974
|
+
export const UpdateFilterRequestFilterSensitiveLog = (obj) => ({
|
|
975
|
+
...obj,
|
|
976
|
+
});
|
|
977
|
+
export const UpdateFilterResponseFilterSensitiveLog = (obj) => ({
|
|
978
|
+
...obj,
|
|
979
|
+
});
|
|
980
|
+
export const UpdateOrganizationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
981
|
+
...obj,
|
|
982
|
+
});
|
|
983
|
+
export const UpdateOrganizationConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
984
|
+
...obj,
|
|
985
|
+
});
|