@aws-sdk/client-inspector2 3.186.0 → 3.188.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.
Files changed (53) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/Inspector2.js +130 -137
  3. package/dist-es/Inspector2Client.js +22 -28
  4. package/dist-es/commands/AssociateMemberCommand.js +21 -28
  5. package/dist-es/commands/BatchGetAccountStatusCommand.js +21 -28
  6. package/dist-es/commands/BatchGetFreeTrialInfoCommand.js +21 -28
  7. package/dist-es/commands/CancelFindingsReportCommand.js +21 -28
  8. package/dist-es/commands/CreateFilterCommand.js +21 -28
  9. package/dist-es/commands/CreateFindingsReportCommand.js +21 -28
  10. package/dist-es/commands/DeleteFilterCommand.js +21 -28
  11. package/dist-es/commands/DescribeOrganizationConfigurationCommand.js +21 -28
  12. package/dist-es/commands/DisableCommand.js +21 -28
  13. package/dist-es/commands/DisableDelegatedAdminAccountCommand.js +21 -28
  14. package/dist-es/commands/DisassociateMemberCommand.js +21 -28
  15. package/dist-es/commands/EnableCommand.js +21 -28
  16. package/dist-es/commands/EnableDelegatedAdminAccountCommand.js +21 -28
  17. package/dist-es/commands/GetConfigurationCommand.js +21 -28
  18. package/dist-es/commands/GetDelegatedAdminAccountCommand.js +21 -28
  19. package/dist-es/commands/GetFindingsReportStatusCommand.js +21 -28
  20. package/dist-es/commands/GetMemberCommand.js +21 -28
  21. package/dist-es/commands/ListAccountPermissionsCommand.js +21 -28
  22. package/dist-es/commands/ListCoverageCommand.js +21 -28
  23. package/dist-es/commands/ListCoverageStatisticsCommand.js +21 -28
  24. package/dist-es/commands/ListDelegatedAdminAccountsCommand.js +21 -28
  25. package/dist-es/commands/ListFiltersCommand.js +21 -28
  26. package/dist-es/commands/ListFindingAggregationsCommand.js +21 -28
  27. package/dist-es/commands/ListFindingsCommand.js +21 -28
  28. package/dist-es/commands/ListMembersCommand.js +21 -28
  29. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  30. package/dist-es/commands/ListUsageTotalsCommand.js +21 -28
  31. package/dist-es/commands/TagResourceCommand.js +21 -28
  32. package/dist-es/commands/UntagResourceCommand.js +21 -28
  33. package/dist-es/commands/UpdateConfigurationCommand.js +21 -28
  34. package/dist-es/commands/UpdateFilterCommand.js +21 -28
  35. package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +21 -28
  36. package/dist-es/endpoints.js +8 -8
  37. package/dist-es/models/Inspector2ServiceException.js +5 -10
  38. package/dist-es/models/models_0.js +523 -244
  39. package/dist-es/pagination/ListAccountPermissionsPaginator.js +25 -68
  40. package/dist-es/pagination/ListCoveragePaginator.js +25 -68
  41. package/dist-es/pagination/ListCoverageStatisticsPaginator.js +24 -67
  42. package/dist-es/pagination/ListDelegatedAdminAccountsPaginator.js +25 -68
  43. package/dist-es/pagination/ListFiltersPaginator.js +25 -68
  44. package/dist-es/pagination/ListFindingAggregationsPaginator.js +25 -68
  45. package/dist-es/pagination/ListFindingsPaginator.js +25 -68
  46. package/dist-es/pagination/ListMembersPaginator.js +25 -68
  47. package/dist-es/pagination/ListUsageTotalsPaginator.js +25 -68
  48. package/dist-es/protocols/Aws_restJson1.js +2799 -3623
  49. package/dist-es/runtimeConfig.browser.js +26 -12
  50. package/dist-es/runtimeConfig.js +30 -12
  51. package/dist-es/runtimeConfig.native.js +8 -5
  52. package/dist-es/runtimeConfig.shared.js +8 -11
  53. package/package.json +33 -33
@@ -1,17 +1,16 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { Inspector2ServiceException as __BaseException } from "./Inspector2ServiceException";
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;
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
- return AccessDeniedException;
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 = function (value, visitor) {
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 = function (value, visitor) {
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
- 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;
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
- 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;
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
- return ThrottlingException;
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
- 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;
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
- 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;
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
- 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;
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
- return ResourceNotFoundException;
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
- 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;
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
- return ConflictException;
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
- 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;
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
- return ServiceQuotaExceededException;
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 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;
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 _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
592
+ return { [obj.$unknown[0]]: "UNKNOWN" };
559
593
  };
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;
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 _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
640
+ return { [obj.$unknown[0]]: "UNKNOWN" };
592
641
  };
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)); };
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
+ });