@aws-sdk/client-inspector2 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/Inspector2.js +137 -130
- package/dist-es/Inspector2Client.js +28 -22
- package/dist-es/commands/AssociateMemberCommand.js +28 -21
- package/dist-es/commands/BatchGetAccountStatusCommand.js +28 -21
- package/dist-es/commands/BatchGetFreeTrialInfoCommand.js +28 -21
- package/dist-es/commands/CancelFindingsReportCommand.js +28 -21
- package/dist-es/commands/CreateFilterCommand.js +28 -21
- package/dist-es/commands/CreateFindingsReportCommand.js +28 -21
- package/dist-es/commands/DeleteFilterCommand.js +28 -21
- package/dist-es/commands/DescribeOrganizationConfigurationCommand.js +28 -21
- package/dist-es/commands/DisableCommand.js +28 -21
- package/dist-es/commands/DisableDelegatedAdminAccountCommand.js +28 -21
- package/dist-es/commands/DisassociateMemberCommand.js +28 -21
- package/dist-es/commands/EnableCommand.js +28 -21
- package/dist-es/commands/EnableDelegatedAdminAccountCommand.js +28 -21
- package/dist-es/commands/GetConfigurationCommand.js +28 -21
- package/dist-es/commands/GetDelegatedAdminAccountCommand.js +28 -21
- package/dist-es/commands/GetFindingsReportStatusCommand.js +28 -21
- package/dist-es/commands/GetMemberCommand.js +28 -21
- package/dist-es/commands/ListAccountPermissionsCommand.js +28 -21
- package/dist-es/commands/ListCoverageCommand.js +28 -21
- package/dist-es/commands/ListCoverageStatisticsCommand.js +28 -21
- package/dist-es/commands/ListDelegatedAdminAccountsCommand.js +28 -21
- package/dist-es/commands/ListFiltersCommand.js +28 -21
- package/dist-es/commands/ListFindingAggregationsCommand.js +28 -21
- package/dist-es/commands/ListFindingsCommand.js +28 -21
- package/dist-es/commands/ListMembersCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListUsageTotalsCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateConfigurationCommand.js +28 -21
- package/dist-es/commands/UpdateFilterCommand.js +28 -21
- package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/Inspector2ServiceException.js +10 -5
- package/dist-es/models/models_0.js +244 -523
- package/dist-es/pagination/ListAccountPermissionsPaginator.js +68 -25
- package/dist-es/pagination/ListCoveragePaginator.js +68 -25
- package/dist-es/pagination/ListCoverageStatisticsPaginator.js +67 -24
- package/dist-es/pagination/ListDelegatedAdminAccountsPaginator.js +68 -25
- package/dist-es/pagination/ListFiltersPaginator.js +68 -25
- package/dist-es/pagination/ListFindingAggregationsPaginator.js +68 -25
- package/dist-es/pagination/ListFindingsPaginator.js +68 -25
- package/dist-es/pagination/ListMembersPaginator.js +68 -25
- package/dist-es/pagination/ListUsageTotalsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3623 -2799
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,16 +1,17 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { Inspector2ServiceException as __BaseException } from "./Inspector2ServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
14
15
|
export var Status;
|
|
15
16
|
(function (Status) {
|
|
16
17
|
Status["DISABLED"] = "DISABLED";
|
|
@@ -121,7 +122,7 @@ export var TitleSortBy;
|
|
|
121
122
|
})(TitleSortBy || (TitleSortBy = {}));
|
|
122
123
|
export var AggregationRequest;
|
|
123
124
|
(function (AggregationRequest) {
|
|
124
|
-
AggregationRequest.visit = (value, visitor)
|
|
125
|
+
AggregationRequest.visit = function (value, visitor) {
|
|
125
126
|
if (value.accountAggregation !== undefined)
|
|
126
127
|
return visitor.accountAggregation(value.accountAggregation);
|
|
127
128
|
if (value.amiAggregation !== undefined)
|
|
@@ -145,7 +146,7 @@ export var AggregationRequest;
|
|
|
145
146
|
})(AggregationRequest || (AggregationRequest = {}));
|
|
146
147
|
export var AggregationResponse;
|
|
147
148
|
(function (AggregationResponse) {
|
|
148
|
-
AggregationResponse.visit = (value, visitor)
|
|
149
|
+
AggregationResponse.visit = function (value, visitor) {
|
|
149
150
|
if (value.accountAggregation !== undefined)
|
|
150
151
|
return visitor.accountAggregation(value.accountAggregation);
|
|
151
152
|
if (value.amiAggregation !== undefined)
|
|
@@ -179,76 +180,76 @@ export var AggregationType;
|
|
|
179
180
|
AggregationType["REPOSITORY"] = "REPOSITORY";
|
|
180
181
|
AggregationType["TITLE"] = "TITLE";
|
|
181
182
|
})(AggregationType || (AggregationType = {}));
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
193
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
183
|
+
var InternalServerException = (function (_super) {
|
|
184
|
+
__extends(InternalServerException, _super);
|
|
185
|
+
function InternalServerException(opts) {
|
|
186
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
187
|
+
_this.name = "InternalServerException";
|
|
188
|
+
_this.$fault = "server";
|
|
189
|
+
_this.$retryable = {};
|
|
190
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
191
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
192
|
+
return _this;
|
|
194
193
|
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
194
|
+
return InternalServerException;
|
|
195
|
+
}(__BaseException));
|
|
196
|
+
export { InternalServerException };
|
|
197
|
+
var ThrottlingException = (function (_super) {
|
|
198
|
+
__extends(ThrottlingException, _super);
|
|
199
|
+
function ThrottlingException(opts) {
|
|
200
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
201
|
+
_this.name = "ThrottlingException";
|
|
202
|
+
_this.$fault = "client";
|
|
203
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
204
|
+
return _this;
|
|
206
205
|
}
|
|
207
|
-
|
|
206
|
+
return ThrottlingException;
|
|
207
|
+
}(__BaseException));
|
|
208
|
+
export { ThrottlingException };
|
|
208
209
|
export var ValidationExceptionReason;
|
|
209
210
|
(function (ValidationExceptionReason) {
|
|
210
211
|
ValidationExceptionReason["CANNOT_PARSE"] = "CANNOT_PARSE";
|
|
211
212
|
ValidationExceptionReason["FIELD_VALIDATION_FAILED"] = "FIELD_VALIDATION_FAILED";
|
|
212
213
|
ValidationExceptionReason["OTHER"] = "OTHER";
|
|
213
214
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
this.reason = opts.reason;
|
|
225
|
-
this.fields = opts.fields;
|
|
215
|
+
var ValidationException = (function (_super) {
|
|
216
|
+
__extends(ValidationException, _super);
|
|
217
|
+
function ValidationException(opts) {
|
|
218
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
219
|
+
_this.name = "ValidationException";
|
|
220
|
+
_this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
222
|
+
_this.reason = opts.reason;
|
|
223
|
+
_this.fields = opts.fields;
|
|
224
|
+
return _this;
|
|
226
225
|
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
226
|
+
return ValidationException;
|
|
227
|
+
}(__BaseException));
|
|
228
|
+
export { ValidationException };
|
|
229
|
+
var BadRequestException = (function (_super) {
|
|
230
|
+
__extends(BadRequestException, _super);
|
|
231
|
+
function BadRequestException(opts) {
|
|
232
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
233
|
+
_this.name = "BadRequestException";
|
|
234
|
+
_this.$fault = "client";
|
|
235
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
236
|
+
return _this;
|
|
238
237
|
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
238
|
+
return BadRequestException;
|
|
239
|
+
}(__BaseException));
|
|
240
|
+
export { BadRequestException };
|
|
241
|
+
var ResourceNotFoundException = (function (_super) {
|
|
242
|
+
__extends(ResourceNotFoundException, _super);
|
|
243
|
+
function ResourceNotFoundException(opts) {
|
|
244
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
245
|
+
_this.name = "ResourceNotFoundException";
|
|
246
|
+
_this.$fault = "client";
|
|
247
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
248
|
+
return _this;
|
|
250
249
|
}
|
|
251
|
-
|
|
250
|
+
return ResourceNotFoundException;
|
|
251
|
+
}(__BaseException));
|
|
252
|
+
export { ResourceNotFoundException };
|
|
252
253
|
export var FreeTrialStatus;
|
|
253
254
|
(function (FreeTrialStatus) {
|
|
254
255
|
FreeTrialStatus["ACTIVE"] = "ACTIVE";
|
|
@@ -264,20 +265,20 @@ export var FreeTrialInfoErrorCode;
|
|
|
264
265
|
FreeTrialInfoErrorCode["ACCESS_DENIED"] = "ACCESS_DENIED";
|
|
265
266
|
FreeTrialInfoErrorCode["INTERNAL_ERROR"] = "INTERNAL_ERROR";
|
|
266
267
|
})(FreeTrialInfoErrorCode || (FreeTrialInfoErrorCode = {}));
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
this.resourceId = opts.resourceId;
|
|
278
|
-
this.resourceType = opts.resourceType;
|
|
268
|
+
var ConflictException = (function (_super) {
|
|
269
|
+
__extends(ConflictException, _super);
|
|
270
|
+
function ConflictException(opts) {
|
|
271
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
272
|
+
_this.name = "ConflictException";
|
|
273
|
+
_this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
275
|
+
_this.resourceId = opts.resourceId;
|
|
276
|
+
_this.resourceType = opts.resourceType;
|
|
277
|
+
return _this;
|
|
279
278
|
}
|
|
280
|
-
|
|
279
|
+
return ConflictException;
|
|
280
|
+
}(__BaseException));
|
|
281
|
+
export { ConflictException };
|
|
281
282
|
export var GroupKey;
|
|
282
283
|
(function (GroupKey) {
|
|
283
284
|
GroupKey["ACCOUNT_ID"] = "ACCOUNT_ID";
|
|
@@ -347,19 +348,19 @@ export var FilterAction;
|
|
|
347
348
|
FilterAction["NONE"] = "NONE";
|
|
348
349
|
FilterAction["SUPPRESS"] = "SUPPRESS";
|
|
349
350
|
})(FilterAction || (FilterAction = {}));
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
360
|
-
this.resourceId = opts.resourceId;
|
|
351
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
352
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
353
|
+
function ServiceQuotaExceededException(opts) {
|
|
354
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
355
|
+
_this.name = "ServiceQuotaExceededException";
|
|
356
|
+
_this.$fault = "client";
|
|
357
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
358
|
+
_this.resourceId = opts.resourceId;
|
|
359
|
+
return _this;
|
|
361
360
|
}
|
|
362
|
-
|
|
361
|
+
return ServiceQuotaExceededException;
|
|
362
|
+
}(__BaseException));
|
|
363
|
+
export { ServiceQuotaExceededException };
|
|
363
364
|
export var ReportFormat;
|
|
364
365
|
(function (ReportFormat) {
|
|
365
366
|
ReportFormat["CSV"] = "CSV";
|
|
@@ -515,61 +516,26 @@ export var UsageType;
|
|
|
515
516
|
UsageType["ECR_INITIAL_SCAN"] = "ECR_INITIAL_SCAN";
|
|
516
517
|
UsageType["ECR_RESCAN"] = "ECR_RESCAN";
|
|
517
518
|
})(UsageType || (UsageType = {}));
|
|
518
|
-
export
|
|
519
|
-
|
|
520
|
-
});
|
|
521
|
-
export
|
|
522
|
-
|
|
523
|
-
});
|
|
524
|
-
export
|
|
525
|
-
|
|
526
|
-
});
|
|
527
|
-
export
|
|
528
|
-
|
|
529
|
-
});
|
|
530
|
-
export
|
|
531
|
-
|
|
532
|
-
});
|
|
533
|
-
export
|
|
534
|
-
|
|
535
|
-
});
|
|
536
|
-
export
|
|
537
|
-
|
|
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) => {
|
|
519
|
+
export var ResourceStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
520
|
+
export var AccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
521
|
+
export var AccountAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
522
|
+
export var SeverityCountsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
523
|
+
export var AccountAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
524
|
+
export var StateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
525
|
+
export var ResourceStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
+
export var AccountStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
527
|
+
export var StringFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
528
|
+
export var AmiAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
529
|
+
export var AwsEcrContainerAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
530
|
+
export var MapFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
531
|
+
export var Ec2InstanceAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
532
|
+
export var FindingTypeAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
533
|
+
export var ImageLayerAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
534
|
+
export var PackageAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
535
|
+
export var RepositoryAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
536
|
+
export var TitleAggregationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
537
|
+
export var AggregationRequestFilterSensitiveLog = function (obj) {
|
|
538
|
+
var _a;
|
|
573
539
|
if (obj.accountAggregation !== undefined)
|
|
574
540
|
return { accountAggregation: AccountAggregationFilterSensitiveLog(obj.accountAggregation) };
|
|
575
541
|
if (obj.amiAggregation !== undefined)
|
|
@@ -589,33 +555,18 @@ export const AggregationRequestFilterSensitiveLog = (obj) => {
|
|
|
589
555
|
if (obj.titleAggregation !== undefined)
|
|
590
556
|
return { titleAggregation: TitleAggregationFilterSensitiveLog(obj.titleAggregation) };
|
|
591
557
|
if (obj.$unknown !== undefined)
|
|
592
|
-
return { [obj.$unknown[0]]
|
|
558
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
593
559
|
};
|
|
594
|
-
export
|
|
595
|
-
|
|
596
|
-
});
|
|
597
|
-
export
|
|
598
|
-
|
|
599
|
-
});
|
|
600
|
-
export
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
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) => {
|
|
560
|
+
export var AmiAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
561
|
+
export var AwsEcrContainerAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
562
|
+
export var Ec2InstanceAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
563
|
+
export var FindingTypeAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
|
+
export var ImageLayerAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
|
+
export var PackageAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
|
+
export var RepositoryAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
|
+
export var TitleAggregationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
568
|
+
export var AggregationResponseFilterSensitiveLog = function (obj) {
|
|
569
|
+
var _a;
|
|
619
570
|
if (obj.accountAggregation !== undefined)
|
|
620
571
|
return { accountAggregation: AccountAggregationResponseFilterSensitiveLog(obj.accountAggregation) };
|
|
621
572
|
if (obj.amiAggregation !== undefined)
|
|
@@ -637,349 +588,119 @@ export const AggregationResponseFilterSensitiveLog = (obj) => {
|
|
|
637
588
|
if (obj.titleAggregation !== undefined)
|
|
638
589
|
return { titleAggregation: TitleAggregationResponseFilterSensitiveLog(obj.titleAggregation) };
|
|
639
590
|
if (obj.$unknown !== undefined)
|
|
640
|
-
return { [obj.$unknown[0]]
|
|
591
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
641
592
|
};
|
|
642
|
-
export
|
|
643
|
-
|
|
644
|
-
});
|
|
645
|
-
export
|
|
646
|
-
|
|
647
|
-
});
|
|
648
|
-
export
|
|
649
|
-
|
|
650
|
-
});
|
|
651
|
-
export
|
|
652
|
-
|
|
653
|
-
});
|
|
654
|
-
export
|
|
655
|
-
|
|
656
|
-
});
|
|
657
|
-
export
|
|
658
|
-
|
|
659
|
-
});
|
|
660
|
-
export
|
|
661
|
-
|
|
662
|
-
});
|
|
663
|
-
export
|
|
664
|
-
|
|
665
|
-
});
|
|
666
|
-
export
|
|
667
|
-
|
|
668
|
-
});
|
|
669
|
-
export
|
|
670
|
-
|
|
671
|
-
});
|
|
672
|
-
export
|
|
673
|
-
|
|
674
|
-
});
|
|
675
|
-
export
|
|
676
|
-
|
|
677
|
-
});
|
|
678
|
-
export
|
|
679
|
-
|
|
680
|
-
});
|
|
681
|
-
export
|
|
682
|
-
|
|
683
|
-
});
|
|
684
|
-
export
|
|
685
|
-
|
|
686
|
-
});
|
|
687
|
-
export
|
|
688
|
-
|
|
689
|
-
});
|
|
690
|
-
export
|
|
691
|
-
|
|
692
|
-
});
|
|
693
|
-
export
|
|
694
|
-
|
|
695
|
-
});
|
|
696
|
-
export
|
|
697
|
-
|
|
698
|
-
});
|
|
699
|
-
export
|
|
700
|
-
|
|
701
|
-
});
|
|
702
|
-
export
|
|
703
|
-
|
|
704
|
-
});
|
|
705
|
-
export
|
|
706
|
-
|
|
707
|
-
});
|
|
708
|
-
export
|
|
709
|
-
|
|
710
|
-
});
|
|
711
|
-
export
|
|
712
|
-
|
|
713
|
-
});
|
|
714
|
-
export
|
|
715
|
-
|
|
716
|
-
});
|
|
717
|
-
export
|
|
718
|
-
|
|
719
|
-
});
|
|
720
|
-
export
|
|
721
|
-
|
|
722
|
-
});
|
|
723
|
-
export
|
|
724
|
-
|
|
725
|
-
});
|
|
726
|
-
export
|
|
727
|
-
|
|
728
|
-
});
|
|
729
|
-
export
|
|
730
|
-
|
|
731
|
-
});
|
|
732
|
-
export
|
|
733
|
-
|
|
734
|
-
});
|
|
735
|
-
export
|
|
736
|
-
|
|
737
|
-
});
|
|
738
|
-
export
|
|
739
|
-
|
|
740
|
-
});
|
|
741
|
-
export
|
|
742
|
-
|
|
743
|
-
});
|
|
744
|
-
export
|
|
745
|
-
|
|
746
|
-
});
|
|
747
|
-
export
|
|
748
|
-
|
|
749
|
-
});
|
|
750
|
-
export
|
|
751
|
-
|
|
752
|
-
});
|
|
753
|
-
export
|
|
754
|
-
|
|
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
|
-
});
|
|
593
|
+
export var AssociateMemberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
594
|
+
export var AssociateMemberResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
595
|
+
export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
596
|
+
export var AutoEnableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
597
|
+
export var AwsEc2InstanceDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
598
|
+
export var AwsEcrContainerImageDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
599
|
+
export var BatchGetAccountStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
600
|
+
export var FailedAccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
601
|
+
export var BatchGetAccountStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
602
|
+
export var BatchGetFreeTrialInfoRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
603
|
+
export var FreeTrialInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
604
|
+
export var FreeTrialAccountInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
605
|
+
export var FreeTrialInfoErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
606
|
+
export var BatchGetFreeTrialInfoResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
607
|
+
export var CancelFindingsReportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
608
|
+
export var CancelFindingsReportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
609
|
+
export var CountsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
610
|
+
export var CoverageStringFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
611
|
+
export var CoverageMapFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
612
|
+
export var CoverageFilterCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
613
|
+
export var Ec2MetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
614
|
+
export var EcrContainerImageMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
615
|
+
export var EcrRepositoryMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
616
|
+
export var ResourceScanMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
617
|
+
export var ScanStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
618
|
+
export var CoveredResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
619
|
+
export var DateFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
620
|
+
export var NumberFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
621
|
+
export var PortRangeFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
622
|
+
export var PackageFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
623
|
+
export var FilterCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
624
|
+
export var CreateFilterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
625
|
+
export var CreateFilterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
626
|
+
export var DestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
627
|
+
export var CreateFindingsReportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
628
|
+
export var CreateFindingsReportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
629
|
+
export var CvssScoreFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
630
|
+
export var CvssScoreAdjustmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
631
|
+
export var CvssScoreDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
632
|
+
export var DelegatedAdminFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
633
|
+
export var DelegatedAdminAccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
634
|
+
export var DeleteFilterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
635
|
+
export var DeleteFilterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
636
|
+
export var DescribeOrganizationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
637
|
+
export var DescribeOrganizationConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
638
|
+
export var DisableRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
639
|
+
export var DisableResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
640
|
+
export var DisableDelegatedAdminAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
641
|
+
export var DisableDelegatedAdminAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
642
|
+
export var DisassociateMemberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
643
|
+
export var DisassociateMemberResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
644
|
+
export var EcrConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
645
|
+
export var EcrRescanDurationStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
646
|
+
export var EcrConfigurationStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
647
|
+
export var EnableRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
648
|
+
export var EnableResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
649
|
+
export var EnableDelegatedAdminAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
650
|
+
export var EnableDelegatedAdminAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
651
|
+
export var FilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
652
|
+
export var InspectorScoreDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
653
|
+
export var StepFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
654
|
+
export var NetworkPathFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
655
|
+
export var PortRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
656
|
+
export var NetworkReachabilityDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
657
|
+
export var VulnerablePackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
658
|
+
export var PackageVulnerabilityDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
659
|
+
export var RecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
660
|
+
export var RemediationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
661
|
+
export var ResourceDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
662
|
+
export var ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
663
|
+
export var FindingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
|
+
export var GetConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
665
|
+
export var GetConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
666
|
+
export var GetDelegatedAdminAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
667
|
+
export var GetDelegatedAdminAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
668
|
+
export var GetFindingsReportStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
669
|
+
export var GetFindingsReportStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
670
|
+
export var GetMemberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
671
|
+
export var MemberFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
672
|
+
export var GetMemberResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
673
|
+
export var ListAccountPermissionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
674
|
+
export var PermissionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
675
|
+
export var ListAccountPermissionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
676
|
+
export var ListCoverageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
677
|
+
export var ListCoverageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
|
+
export var ListCoverageStatisticsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
679
|
+
export var ListCoverageStatisticsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
680
|
+
export var ListDelegatedAdminAccountsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
681
|
+
export var ListDelegatedAdminAccountsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
682
|
+
export var ListFiltersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
683
|
+
export var ListFiltersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
684
|
+
export var ListFindingAggregationsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.aggregationRequest && { aggregationRequest: AggregationRequestFilterSensitiveLog(obj.aggregationRequest) }))); };
|
|
685
|
+
export var ListFindingAggregationsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.responses && { responses: obj.responses.map(function (item) { return AggregationResponseFilterSensitiveLog(item); }) }))); };
|
|
686
|
+
export var SortCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
687
|
+
export var ListFindingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
688
|
+
export var ListFindingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
689
|
+
export var ListMembersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
690
|
+
export var ListMembersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
691
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
692
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
693
|
+
export var ListUsageTotalsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
694
|
+
export var UsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
695
|
+
export var UsageTotalFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
696
|
+
export var ListUsageTotalsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
697
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
698
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
699
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
700
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
701
|
+
export var UpdateConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
702
|
+
export var UpdateConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
703
|
+
export var UpdateFilterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
704
|
+
export var UpdateFilterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
705
|
+
export var UpdateOrganizationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
706
|
+
export var UpdateOrganizationConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|