@aws-sdk/client-inspector 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.
Files changed (60) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/Inspector.js +157 -150
  4. package/dist-es/InspectorClient.js +28 -22
  5. package/dist-es/commands/AddAttributesToFindingsCommand.js +28 -21
  6. package/dist-es/commands/CreateAssessmentTargetCommand.js +28 -21
  7. package/dist-es/commands/CreateAssessmentTemplateCommand.js +28 -21
  8. package/dist-es/commands/CreateExclusionsPreviewCommand.js +28 -21
  9. package/dist-es/commands/CreateResourceGroupCommand.js +28 -21
  10. package/dist-es/commands/DeleteAssessmentRunCommand.js +29 -22
  11. package/dist-es/commands/DeleteAssessmentTargetCommand.js +29 -22
  12. package/dist-es/commands/DeleteAssessmentTemplateCommand.js +29 -22
  13. package/dist-es/commands/DescribeAssessmentRunsCommand.js +28 -21
  14. package/dist-es/commands/DescribeAssessmentTargetsCommand.js +28 -21
  15. package/dist-es/commands/DescribeAssessmentTemplatesCommand.js +28 -21
  16. package/dist-es/commands/DescribeCrossAccountAccessRoleCommand.js +29 -22
  17. package/dist-es/commands/DescribeExclusionsCommand.js +28 -21
  18. package/dist-es/commands/DescribeFindingsCommand.js +28 -21
  19. package/dist-es/commands/DescribeResourceGroupsCommand.js +28 -21
  20. package/dist-es/commands/DescribeRulesPackagesCommand.js +28 -21
  21. package/dist-es/commands/GetAssessmentReportCommand.js +28 -21
  22. package/dist-es/commands/GetExclusionsPreviewCommand.js +28 -21
  23. package/dist-es/commands/GetTelemetryMetadataCommand.js +28 -21
  24. package/dist-es/commands/ListAssessmentRunAgentsCommand.js +28 -21
  25. package/dist-es/commands/ListAssessmentRunsCommand.js +28 -21
  26. package/dist-es/commands/ListAssessmentTargetsCommand.js +28 -21
  27. package/dist-es/commands/ListAssessmentTemplatesCommand.js +28 -21
  28. package/dist-es/commands/ListEventSubscriptionsCommand.js +28 -21
  29. package/dist-es/commands/ListExclusionsCommand.js +28 -21
  30. package/dist-es/commands/ListFindingsCommand.js +28 -21
  31. package/dist-es/commands/ListRulesPackagesCommand.js +28 -21
  32. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  33. package/dist-es/commands/PreviewAgentsCommand.js +28 -21
  34. package/dist-es/commands/RegisterCrossAccountAccessRoleCommand.js +29 -22
  35. package/dist-es/commands/RemoveAttributesFromFindingsCommand.js +28 -21
  36. package/dist-es/commands/SetTagsForResourceCommand.js +29 -22
  37. package/dist-es/commands/StartAssessmentRunCommand.js +28 -21
  38. package/dist-es/commands/StopAssessmentRunCommand.js +29 -22
  39. package/dist-es/commands/SubscribeToEventCommand.js +29 -22
  40. package/dist-es/commands/UnsubscribeFromEventCommand.js +29 -22
  41. package/dist-es/commands/UpdateAssessmentTargetCommand.js +29 -22
  42. package/dist-es/endpoints.js +8 -8
  43. package/dist-es/models/InspectorServiceException.js +10 -5
  44. package/dist-es/models/models_0.js +238 -431
  45. package/dist-es/pagination/GetExclusionsPreviewPaginator.js +68 -25
  46. package/dist-es/pagination/ListAssessmentRunAgentsPaginator.js +68 -25
  47. package/dist-es/pagination/ListAssessmentRunsPaginator.js +68 -25
  48. package/dist-es/pagination/ListAssessmentTargetsPaginator.js +68 -25
  49. package/dist-es/pagination/ListAssessmentTemplatesPaginator.js +68 -25
  50. package/dist-es/pagination/ListEventSubscriptionsPaginator.js +68 -25
  51. package/dist-es/pagination/ListExclusionsPaginator.js +68 -25
  52. package/dist-es/pagination/ListFindingsPaginator.js +68 -25
  53. package/dist-es/pagination/ListRulesPackagesPaginator.js +68 -25
  54. package/dist-es/pagination/PreviewAgentsPaginator.js +68 -25
  55. package/dist-es/protocols/Aws_json1_1.js +3357 -2604
  56. package/dist-es/runtimeConfig.browser.js +12 -26
  57. package/dist-es/runtimeConfig.js +12 -30
  58. package/dist-es/runtimeConfig.native.js +5 -8
  59. package/dist-es/runtimeConfig.shared.js +11 -8
  60. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { InspectorServiceException as __BaseException } from "./InspectorServiceException";
2
3
  export var AccessDeniedErrorCode;
3
4
  (function (AccessDeniedErrorCode) {
@@ -10,20 +11,20 @@ export var AccessDeniedErrorCode;
10
11
  AccessDeniedErrorCode["ACCESS_DENIED_TO_RULES_PACKAGE"] = "ACCESS_DENIED_TO_RULES_PACKAGE";
11
12
  AccessDeniedErrorCode["ACCESS_DENIED_TO_SNS_TOPIC"] = "ACCESS_DENIED_TO_SNS_TOPIC";
12
13
  })(AccessDeniedErrorCode || (AccessDeniedErrorCode = {}));
13
- export class AccessDeniedException extends __BaseException {
14
- constructor(opts) {
15
- super({
16
- name: "AccessDeniedException",
17
- $fault: "client",
18
- ...opts,
19
- });
20
- this.name = "AccessDeniedException";
21
- this.$fault = "client";
22
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
23
- this.errorCode = opts.errorCode;
24
- this.canRetry = opts.canRetry;
14
+ var AccessDeniedException = (function (_super) {
15
+ __extends(AccessDeniedException, _super);
16
+ function AccessDeniedException(opts) {
17
+ var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
18
+ _this.name = "AccessDeniedException";
19
+ _this.$fault = "client";
20
+ Object.setPrototypeOf(_this, AccessDeniedException.prototype);
21
+ _this.errorCode = opts.errorCode;
22
+ _this.canRetry = opts.canRetry;
23
+ return _this;
25
24
  }
26
- }
25
+ return AccessDeniedException;
26
+ }(__BaseException));
27
+ export { AccessDeniedException };
27
28
  export var FailedItemErrorCode;
28
29
  (function (FailedItemErrorCode) {
29
30
  FailedItemErrorCode["ACCESS_DENIED"] = "ACCESS_DENIED";
@@ -33,19 +34,19 @@ export var FailedItemErrorCode;
33
34
  FailedItemErrorCode["ITEM_DOES_NOT_EXIST"] = "ITEM_DOES_NOT_EXIST";
34
35
  FailedItemErrorCode["LIMIT_EXCEEDED"] = "LIMIT_EXCEEDED";
35
36
  })(FailedItemErrorCode || (FailedItemErrorCode = {}));
36
- export class InternalException extends __BaseException {
37
- constructor(opts) {
38
- super({
39
- name: "InternalException",
40
- $fault: "server",
41
- ...opts,
42
- });
43
- this.name = "InternalException";
44
- this.$fault = "server";
45
- Object.setPrototypeOf(this, InternalException.prototype);
46
- this.canRetry = opts.canRetry;
37
+ var InternalException = (function (_super) {
38
+ __extends(InternalException, _super);
39
+ function InternalException(opts) {
40
+ var _this = _super.call(this, __assign({ name: "InternalException", $fault: "server" }, opts)) || this;
41
+ _this.name = "InternalException";
42
+ _this.$fault = "server";
43
+ Object.setPrototypeOf(_this, InternalException.prototype);
44
+ _this.canRetry = opts.canRetry;
45
+ return _this;
47
46
  }
48
- }
47
+ return InternalException;
48
+ }(__BaseException));
49
+ export { InternalException };
49
50
  export var InvalidInputErrorCode;
50
51
  (function (InvalidInputErrorCode) {
51
52
  InvalidInputErrorCode["ASSESSMENT_TARGET_NAME_ALREADY_TAKEN"] = "ASSESSMENT_TARGET_NAME_ALREADY_TAKEN";
@@ -103,20 +104,20 @@ export var InvalidInputErrorCode;
103
104
  InvalidInputErrorCode["INVALID_USER_ATTRIBUTE_KEY"] = "INVALID_USER_ATTRIBUTE_KEY";
104
105
  InvalidInputErrorCode["INVALID_USER_ATTRIBUTE_VALUE"] = "INVALID_USER_ATTRIBUTE_VALUE";
105
106
  })(InvalidInputErrorCode || (InvalidInputErrorCode = {}));
106
- export class InvalidInputException extends __BaseException {
107
- constructor(opts) {
108
- super({
109
- name: "InvalidInputException",
110
- $fault: "client",
111
- ...opts,
112
- });
113
- this.name = "InvalidInputException";
114
- this.$fault = "client";
115
- Object.setPrototypeOf(this, InvalidInputException.prototype);
116
- this.errorCode = opts.errorCode;
117
- this.canRetry = opts.canRetry;
107
+ var InvalidInputException = (function (_super) {
108
+ __extends(InvalidInputException, _super);
109
+ function InvalidInputException(opts) {
110
+ var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
111
+ _this.name = "InvalidInputException";
112
+ _this.$fault = "client";
113
+ Object.setPrototypeOf(_this, InvalidInputException.prototype);
114
+ _this.errorCode = opts.errorCode;
115
+ _this.canRetry = opts.canRetry;
116
+ return _this;
118
117
  }
119
- }
118
+ return InvalidInputException;
119
+ }(__BaseException));
120
+ export { InvalidInputException };
120
121
  export var NoSuchEntityErrorCode;
121
122
  (function (NoSuchEntityErrorCode) {
122
123
  NoSuchEntityErrorCode["ASSESSMENT_RUN_DOES_NOT_EXIST"] = "ASSESSMENT_RUN_DOES_NOT_EXIST";
@@ -128,33 +129,33 @@ export var NoSuchEntityErrorCode;
128
129
  NoSuchEntityErrorCode["RULES_PACKAGE_DOES_NOT_EXIST"] = "RULES_PACKAGE_DOES_NOT_EXIST";
129
130
  NoSuchEntityErrorCode["SNS_TOPIC_DOES_NOT_EXIST"] = "SNS_TOPIC_DOES_NOT_EXIST";
130
131
  })(NoSuchEntityErrorCode || (NoSuchEntityErrorCode = {}));
131
- export class NoSuchEntityException extends __BaseException {
132
- constructor(opts) {
133
- super({
134
- name: "NoSuchEntityException",
135
- $fault: "client",
136
- ...opts,
137
- });
138
- this.name = "NoSuchEntityException";
139
- this.$fault = "client";
140
- Object.setPrototypeOf(this, NoSuchEntityException.prototype);
141
- this.errorCode = opts.errorCode;
142
- this.canRetry = opts.canRetry;
132
+ var NoSuchEntityException = (function (_super) {
133
+ __extends(NoSuchEntityException, _super);
134
+ function NoSuchEntityException(opts) {
135
+ var _this = _super.call(this, __assign({ name: "NoSuchEntityException", $fault: "client" }, opts)) || this;
136
+ _this.name = "NoSuchEntityException";
137
+ _this.$fault = "client";
138
+ Object.setPrototypeOf(_this, NoSuchEntityException.prototype);
139
+ _this.errorCode = opts.errorCode;
140
+ _this.canRetry = opts.canRetry;
141
+ return _this;
143
142
  }
144
- }
145
- export class ServiceTemporarilyUnavailableException extends __BaseException {
146
- constructor(opts) {
147
- super({
148
- name: "ServiceTemporarilyUnavailableException",
149
- $fault: "server",
150
- ...opts,
151
- });
152
- this.name = "ServiceTemporarilyUnavailableException";
153
- this.$fault = "server";
154
- Object.setPrototypeOf(this, ServiceTemporarilyUnavailableException.prototype);
155
- this.canRetry = opts.canRetry;
143
+ return NoSuchEntityException;
144
+ }(__BaseException));
145
+ export { NoSuchEntityException };
146
+ var ServiceTemporarilyUnavailableException = (function (_super) {
147
+ __extends(ServiceTemporarilyUnavailableException, _super);
148
+ function ServiceTemporarilyUnavailableException(opts) {
149
+ var _this = _super.call(this, __assign({ name: "ServiceTemporarilyUnavailableException", $fault: "server" }, opts)) || this;
150
+ _this.name = "ServiceTemporarilyUnavailableException";
151
+ _this.$fault = "server";
152
+ Object.setPrototypeOf(_this, ServiceTemporarilyUnavailableException.prototype);
153
+ _this.canRetry = opts.canRetry;
154
+ return _this;
156
155
  }
157
- }
156
+ return ServiceTemporarilyUnavailableException;
157
+ }(__BaseException));
158
+ export { ServiceTemporarilyUnavailableException };
158
159
  export var AgentHealthCode;
159
160
  (function (AgentHealthCode) {
160
161
  AgentHealthCode["IDLE"] = "IDLE";
@@ -170,21 +171,21 @@ export var AgentHealth;
170
171
  AgentHealth["UNHEALTHY"] = "UNHEALTHY";
171
172
  AgentHealth["UNKNOWN"] = "UNKNOWN";
172
173
  })(AgentHealth || (AgentHealth = {}));
173
- export class AgentsAlreadyRunningAssessmentException extends __BaseException {
174
- constructor(opts) {
175
- super({
176
- name: "AgentsAlreadyRunningAssessmentException",
177
- $fault: "client",
178
- ...opts,
179
- });
180
- this.name = "AgentsAlreadyRunningAssessmentException";
181
- this.$fault = "client";
182
- Object.setPrototypeOf(this, AgentsAlreadyRunningAssessmentException.prototype);
183
- this.agents = opts.agents;
184
- this.agentsTruncated = opts.agentsTruncated;
185
- this.canRetry = opts.canRetry;
174
+ var AgentsAlreadyRunningAssessmentException = (function (_super) {
175
+ __extends(AgentsAlreadyRunningAssessmentException, _super);
176
+ function AgentsAlreadyRunningAssessmentException(opts) {
177
+ var _this = _super.call(this, __assign({ name: "AgentsAlreadyRunningAssessmentException", $fault: "client" }, opts)) || this;
178
+ _this.name = "AgentsAlreadyRunningAssessmentException";
179
+ _this.$fault = "client";
180
+ Object.setPrototypeOf(_this, AgentsAlreadyRunningAssessmentException.prototype);
181
+ _this.agents = opts.agents;
182
+ _this.agentsTruncated = opts.agentsTruncated;
183
+ _this.canRetry = opts.canRetry;
184
+ return _this;
186
185
  }
187
- }
186
+ return AgentsAlreadyRunningAssessmentException;
187
+ }(__BaseException));
188
+ export { AgentsAlreadyRunningAssessmentException };
188
189
  export var Severity;
189
190
  (function (Severity) {
190
191
  Severity["HIGH"] = "High";
@@ -224,21 +225,21 @@ export var AssessmentRunState;
224
225
  AssessmentRunState["START_EVALUATING_RULES_PENDING"] = "START_EVALUATING_RULES_PENDING";
225
226
  AssessmentRunState["STOP_DATA_COLLECTION_PENDING"] = "STOP_DATA_COLLECTION_PENDING";
226
227
  })(AssessmentRunState || (AssessmentRunState = {}));
227
- export class AssessmentRunInProgressException extends __BaseException {
228
- constructor(opts) {
229
- super({
230
- name: "AssessmentRunInProgressException",
231
- $fault: "client",
232
- ...opts,
233
- });
234
- this.name = "AssessmentRunInProgressException";
235
- this.$fault = "client";
236
- Object.setPrototypeOf(this, AssessmentRunInProgressException.prototype);
237
- this.assessmentRunArns = opts.assessmentRunArns;
238
- this.assessmentRunArnsTruncated = opts.assessmentRunArnsTruncated;
239
- this.canRetry = opts.canRetry;
228
+ var AssessmentRunInProgressException = (function (_super) {
229
+ __extends(AssessmentRunInProgressException, _super);
230
+ function AssessmentRunInProgressException(opts) {
231
+ var _this = _super.call(this, __assign({ name: "AssessmentRunInProgressException", $fault: "client" }, opts)) || this;
232
+ _this.name = "AssessmentRunInProgressException";
233
+ _this.$fault = "client";
234
+ Object.setPrototypeOf(_this, AssessmentRunInProgressException.prototype);
235
+ _this.assessmentRunArns = opts.assessmentRunArns;
236
+ _this.assessmentRunArnsTruncated = opts.assessmentRunArnsTruncated;
237
+ _this.canRetry = opts.canRetry;
238
+ return _this;
240
239
  }
241
- }
240
+ return AssessmentRunInProgressException;
241
+ }(__BaseException));
242
+ export { AssessmentRunInProgressException };
242
243
  export var AssetType;
243
244
  (function (AssetType) {
244
245
  AssetType["EC2_INSTANCE"] = "ec2-instance";
@@ -248,20 +249,20 @@ export var InvalidCrossAccountRoleErrorCode;
248
249
  InvalidCrossAccountRoleErrorCode["ROLE_DOES_NOT_EXIST_OR_INVALID_TRUST_RELATIONSHIP"] = "ROLE_DOES_NOT_EXIST_OR_INVALID_TRUST_RELATIONSHIP";
249
250
  InvalidCrossAccountRoleErrorCode["ROLE_DOES_NOT_HAVE_CORRECT_POLICY"] = "ROLE_DOES_NOT_HAVE_CORRECT_POLICY";
250
251
  })(InvalidCrossAccountRoleErrorCode || (InvalidCrossAccountRoleErrorCode = {}));
251
- export class InvalidCrossAccountRoleException extends __BaseException {
252
- constructor(opts) {
253
- super({
254
- name: "InvalidCrossAccountRoleException",
255
- $fault: "client",
256
- ...opts,
257
- });
258
- this.name = "InvalidCrossAccountRoleException";
259
- this.$fault = "client";
260
- Object.setPrototypeOf(this, InvalidCrossAccountRoleException.prototype);
261
- this.errorCode = opts.errorCode;
262
- this.canRetry = opts.canRetry;
252
+ var InvalidCrossAccountRoleException = (function (_super) {
253
+ __extends(InvalidCrossAccountRoleException, _super);
254
+ function InvalidCrossAccountRoleException(opts) {
255
+ var _this = _super.call(this, __assign({ name: "InvalidCrossAccountRoleException", $fault: "client" }, opts)) || this;
256
+ _this.name = "InvalidCrossAccountRoleException";
257
+ _this.$fault = "client";
258
+ Object.setPrototypeOf(_this, InvalidCrossAccountRoleException.prototype);
259
+ _this.errorCode = opts.errorCode;
260
+ _this.canRetry = opts.canRetry;
261
+ return _this;
263
262
  }
264
- }
263
+ return InvalidCrossAccountRoleException;
264
+ }(__BaseException));
265
+ export { InvalidCrossAccountRoleException };
265
266
  export var LimitExceededErrorCode;
266
267
  (function (LimitExceededErrorCode) {
267
268
  LimitExceededErrorCode["ASSESSMENT_RUN_LIMIT_EXCEEDED"] = "ASSESSMENT_RUN_LIMIT_EXCEEDED";
@@ -270,32 +271,32 @@ export var LimitExceededErrorCode;
270
271
  LimitExceededErrorCode["EVENT_SUBSCRIPTION_LIMIT_EXCEEDED"] = "EVENT_SUBSCRIPTION_LIMIT_EXCEEDED";
271
272
  LimitExceededErrorCode["RESOURCE_GROUP_LIMIT_EXCEEDED"] = "RESOURCE_GROUP_LIMIT_EXCEEDED";
272
273
  })(LimitExceededErrorCode || (LimitExceededErrorCode = {}));
273
- export class LimitExceededException extends __BaseException {
274
- constructor(opts) {
275
- super({
276
- name: "LimitExceededException",
277
- $fault: "client",
278
- ...opts,
279
- });
280
- this.name = "LimitExceededException";
281
- this.$fault = "client";
282
- Object.setPrototypeOf(this, LimitExceededException.prototype);
283
- this.errorCode = opts.errorCode;
284
- this.canRetry = opts.canRetry;
274
+ var LimitExceededException = (function (_super) {
275
+ __extends(LimitExceededException, _super);
276
+ function LimitExceededException(opts) {
277
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
278
+ _this.name = "LimitExceededException";
279
+ _this.$fault = "client";
280
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
281
+ _this.errorCode = opts.errorCode;
282
+ _this.canRetry = opts.canRetry;
283
+ return _this;
285
284
  }
286
- }
287
- export class PreviewGenerationInProgressException extends __BaseException {
288
- constructor(opts) {
289
- super({
290
- name: "PreviewGenerationInProgressException",
291
- $fault: "client",
292
- ...opts,
293
- });
294
- this.name = "PreviewGenerationInProgressException";
295
- this.$fault = "client";
296
- Object.setPrototypeOf(this, PreviewGenerationInProgressException.prototype);
285
+ return LimitExceededException;
286
+ }(__BaseException));
287
+ export { LimitExceededException };
288
+ var PreviewGenerationInProgressException = (function (_super) {
289
+ __extends(PreviewGenerationInProgressException, _super);
290
+ function PreviewGenerationInProgressException(opts) {
291
+ var _this = _super.call(this, __assign({ name: "PreviewGenerationInProgressException", $fault: "client" }, opts)) || this;
292
+ _this.name = "PreviewGenerationInProgressException";
293
+ _this.$fault = "client";
294
+ Object.setPrototypeOf(_this, PreviewGenerationInProgressException.prototype);
295
+ return _this;
297
296
  }
298
- }
297
+ return PreviewGenerationInProgressException;
298
+ }(__BaseException));
299
+ export { PreviewGenerationInProgressException };
299
300
  export var Locale;
300
301
  (function (Locale) {
301
302
  Locale["EN_US"] = "EN_US";
@@ -321,19 +322,19 @@ export var ReportStatus;
321
322
  ReportStatus["FAILED"] = "FAILED";
322
323
  ReportStatus["WORK_IN_PROGRESS"] = "WORK_IN_PROGRESS";
323
324
  })(ReportStatus || (ReportStatus = {}));
324
- export class UnsupportedFeatureException extends __BaseException {
325
- constructor(opts) {
326
- super({
327
- name: "UnsupportedFeatureException",
328
- $fault: "client",
329
- ...opts,
330
- });
331
- this.name = "UnsupportedFeatureException";
332
- this.$fault = "client";
333
- Object.setPrototypeOf(this, UnsupportedFeatureException.prototype);
334
- this.canRetry = opts.canRetry;
325
+ var UnsupportedFeatureException = (function (_super) {
326
+ __extends(UnsupportedFeatureException, _super);
327
+ function UnsupportedFeatureException(opts) {
328
+ var _this = _super.call(this, __assign({ name: "UnsupportedFeatureException", $fault: "client" }, opts)) || this;
329
+ _this.name = "UnsupportedFeatureException";
330
+ _this.$fault = "client";
331
+ Object.setPrototypeOf(_this, UnsupportedFeatureException.prototype);
332
+ _this.canRetry = opts.canRetry;
333
+ return _this;
335
334
  }
336
- }
335
+ return UnsupportedFeatureException;
336
+ }(__BaseException));
337
+ export { UnsupportedFeatureException };
337
338
  export var PreviewStatus;
338
339
  (function (PreviewStatus) {
339
340
  PreviewStatus["COMPLETED"] = "COMPLETED";
@@ -344,294 +345,100 @@ export var StopAction;
344
345
  StopAction["SKIP_EVALUATION"] = "SKIP_EVALUATION";
345
346
  StopAction["START_EVALUATION"] = "START_EVALUATION";
346
347
  })(StopAction || (StopAction = {}));
347
- export const AttributeFilterSensitiveLog = (obj) => ({
348
- ...obj,
349
- });
350
- export const AddAttributesToFindingsRequestFilterSensitiveLog = (obj) => ({
351
- ...obj,
352
- });
353
- export const FailedItemDetailsFilterSensitiveLog = (obj) => ({
354
- ...obj,
355
- });
356
- export const AddAttributesToFindingsResponseFilterSensitiveLog = (obj) => ({
357
- ...obj,
358
- });
359
- export const AgentAlreadyRunningAssessmentFilterSensitiveLog = (obj) => ({
360
- ...obj,
361
- });
362
- export const AgentFilterFilterSensitiveLog = (obj) => ({
363
- ...obj,
364
- });
365
- export const AgentPreviewFilterSensitiveLog = (obj) => ({
366
- ...obj,
367
- });
368
- export const AssessmentRunNotificationFilterSensitiveLog = (obj) => ({
369
- ...obj,
370
- });
371
- export const AssessmentRunStateChangeFilterSensitiveLog = (obj) => ({
372
- ...obj,
373
- });
374
- export const AssessmentRunFilterSensitiveLog = (obj) => ({
375
- ...obj,
376
- });
377
- export const TelemetryMetadataFilterSensitiveLog = (obj) => ({
378
- ...obj,
379
- });
380
- export const AssessmentRunAgentFilterSensitiveLog = (obj) => ({
381
- ...obj,
382
- });
383
- export const TimestampRangeFilterSensitiveLog = (obj) => ({
384
- ...obj,
385
- });
386
- export const DurationRangeFilterSensitiveLog = (obj) => ({
387
- ...obj,
388
- });
389
- export const AssessmentRunFilterFilterSensitiveLog = (obj) => ({
390
- ...obj,
391
- });
392
- export const AssessmentTargetFilterSensitiveLog = (obj) => ({
393
- ...obj,
394
- });
395
- export const AssessmentTargetFilterFilterSensitiveLog = (obj) => ({
396
- ...obj,
397
- });
398
- export const AssessmentTemplateFilterSensitiveLog = (obj) => ({
399
- ...obj,
400
- });
401
- export const AssessmentTemplateFilterFilterSensitiveLog = (obj) => ({
402
- ...obj,
403
- });
404
- export const PrivateIpFilterSensitiveLog = (obj) => ({
405
- ...obj,
406
- });
407
- export const SecurityGroupFilterSensitiveLog = (obj) => ({
408
- ...obj,
409
- });
410
- export const NetworkInterfaceFilterSensitiveLog = (obj) => ({
411
- ...obj,
412
- });
413
- export const TagFilterSensitiveLog = (obj) => ({
414
- ...obj,
415
- });
416
- export const AssetAttributesFilterSensitiveLog = (obj) => ({
417
- ...obj,
418
- });
419
- export const CreateAssessmentTargetRequestFilterSensitiveLog = (obj) => ({
420
- ...obj,
421
- });
422
- export const CreateAssessmentTargetResponseFilterSensitiveLog = (obj) => ({
423
- ...obj,
424
- });
425
- export const CreateAssessmentTemplateRequestFilterSensitiveLog = (obj) => ({
426
- ...obj,
427
- });
428
- export const CreateAssessmentTemplateResponseFilterSensitiveLog = (obj) => ({
429
- ...obj,
430
- });
431
- export const CreateExclusionsPreviewRequestFilterSensitiveLog = (obj) => ({
432
- ...obj,
433
- });
434
- export const CreateExclusionsPreviewResponseFilterSensitiveLog = (obj) => ({
435
- ...obj,
436
- });
437
- export const ResourceGroupTagFilterSensitiveLog = (obj) => ({
438
- ...obj,
439
- });
440
- export const CreateResourceGroupRequestFilterSensitiveLog = (obj) => ({
441
- ...obj,
442
- });
443
- export const CreateResourceGroupResponseFilterSensitiveLog = (obj) => ({
444
- ...obj,
445
- });
446
- export const DeleteAssessmentRunRequestFilterSensitiveLog = (obj) => ({
447
- ...obj,
448
- });
449
- export const DeleteAssessmentTargetRequestFilterSensitiveLog = (obj) => ({
450
- ...obj,
451
- });
452
- export const DeleteAssessmentTemplateRequestFilterSensitiveLog = (obj) => ({
453
- ...obj,
454
- });
455
- export const DescribeAssessmentRunsRequestFilterSensitiveLog = (obj) => ({
456
- ...obj,
457
- });
458
- export const DescribeAssessmentRunsResponseFilterSensitiveLog = (obj) => ({
459
- ...obj,
460
- });
461
- export const DescribeAssessmentTargetsRequestFilterSensitiveLog = (obj) => ({
462
- ...obj,
463
- });
464
- export const DescribeAssessmentTargetsResponseFilterSensitiveLog = (obj) => ({
465
- ...obj,
466
- });
467
- export const DescribeAssessmentTemplatesRequestFilterSensitiveLog = (obj) => ({
468
- ...obj,
469
- });
470
- export const DescribeAssessmentTemplatesResponseFilterSensitiveLog = (obj) => ({
471
- ...obj,
472
- });
473
- export const DescribeCrossAccountAccessRoleResponseFilterSensitiveLog = (obj) => ({
474
- ...obj,
475
- });
476
- export const DescribeExclusionsRequestFilterSensitiveLog = (obj) => ({
477
- ...obj,
478
- });
479
- export const ScopeFilterSensitiveLog = (obj) => ({
480
- ...obj,
481
- });
482
- export const ExclusionFilterSensitiveLog = (obj) => ({
483
- ...obj,
484
- });
485
- export const DescribeExclusionsResponseFilterSensitiveLog = (obj) => ({
486
- ...obj,
487
- });
488
- export const DescribeFindingsRequestFilterSensitiveLog = (obj) => ({
489
- ...obj,
490
- });
491
- export const InspectorServiceAttributesFilterSensitiveLog = (obj) => ({
492
- ...obj,
493
- });
494
- export const FindingFilterSensitiveLog = (obj) => ({
495
- ...obj,
496
- });
497
- export const DescribeFindingsResponseFilterSensitiveLog = (obj) => ({
498
- ...obj,
499
- });
500
- export const DescribeResourceGroupsRequestFilterSensitiveLog = (obj) => ({
501
- ...obj,
502
- });
503
- export const ResourceGroupFilterSensitiveLog = (obj) => ({
504
- ...obj,
505
- });
506
- export const DescribeResourceGroupsResponseFilterSensitiveLog = (obj) => ({
507
- ...obj,
508
- });
509
- export const DescribeRulesPackagesRequestFilterSensitiveLog = (obj) => ({
510
- ...obj,
511
- });
512
- export const RulesPackageFilterSensitiveLog = (obj) => ({
513
- ...obj,
514
- });
515
- export const DescribeRulesPackagesResponseFilterSensitiveLog = (obj) => ({
516
- ...obj,
517
- });
518
- export const EventSubscriptionFilterSensitiveLog = (obj) => ({
519
- ...obj,
520
- });
521
- export const ExclusionPreviewFilterSensitiveLog = (obj) => ({
522
- ...obj,
523
- });
524
- export const FindingFilterFilterSensitiveLog = (obj) => ({
525
- ...obj,
526
- });
527
- export const GetAssessmentReportRequestFilterSensitiveLog = (obj) => ({
528
- ...obj,
529
- });
530
- export const GetAssessmentReportResponseFilterSensitiveLog = (obj) => ({
531
- ...obj,
532
- });
533
- export const GetExclusionsPreviewRequestFilterSensitiveLog = (obj) => ({
534
- ...obj,
535
- });
536
- export const GetExclusionsPreviewResponseFilterSensitiveLog = (obj) => ({
537
- ...obj,
538
- });
539
- export const GetTelemetryMetadataRequestFilterSensitiveLog = (obj) => ({
540
- ...obj,
541
- });
542
- export const GetTelemetryMetadataResponseFilterSensitiveLog = (obj) => ({
543
- ...obj,
544
- });
545
- export const ListAssessmentRunAgentsRequestFilterSensitiveLog = (obj) => ({
546
- ...obj,
547
- });
548
- export const ListAssessmentRunAgentsResponseFilterSensitiveLog = (obj) => ({
549
- ...obj,
550
- });
551
- export const ListAssessmentRunsRequestFilterSensitiveLog = (obj) => ({
552
- ...obj,
553
- });
554
- export const ListAssessmentRunsResponseFilterSensitiveLog = (obj) => ({
555
- ...obj,
556
- });
557
- export const ListAssessmentTargetsRequestFilterSensitiveLog = (obj) => ({
558
- ...obj,
559
- });
560
- export const ListAssessmentTargetsResponseFilterSensitiveLog = (obj) => ({
561
- ...obj,
562
- });
563
- export const ListAssessmentTemplatesRequestFilterSensitiveLog = (obj) => ({
564
- ...obj,
565
- });
566
- export const ListAssessmentTemplatesResponseFilterSensitiveLog = (obj) => ({
567
- ...obj,
568
- });
569
- export const ListEventSubscriptionsRequestFilterSensitiveLog = (obj) => ({
570
- ...obj,
571
- });
572
- export const SubscriptionFilterSensitiveLog = (obj) => ({
573
- ...obj,
574
- });
575
- export const ListEventSubscriptionsResponseFilterSensitiveLog = (obj) => ({
576
- ...obj,
577
- });
578
- export const ListExclusionsRequestFilterSensitiveLog = (obj) => ({
579
- ...obj,
580
- });
581
- export const ListExclusionsResponseFilterSensitiveLog = (obj) => ({
582
- ...obj,
583
- });
584
- export const ListFindingsRequestFilterSensitiveLog = (obj) => ({
585
- ...obj,
586
- });
587
- export const ListFindingsResponseFilterSensitiveLog = (obj) => ({
588
- ...obj,
589
- });
590
- export const ListRulesPackagesRequestFilterSensitiveLog = (obj) => ({
591
- ...obj,
592
- });
593
- export const ListRulesPackagesResponseFilterSensitiveLog = (obj) => ({
594
- ...obj,
595
- });
596
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
597
- ...obj,
598
- });
599
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
600
- ...obj,
601
- });
602
- export const PreviewAgentsRequestFilterSensitiveLog = (obj) => ({
603
- ...obj,
604
- });
605
- export const PreviewAgentsResponseFilterSensitiveLog = (obj) => ({
606
- ...obj,
607
- });
608
- export const RegisterCrossAccountAccessRoleRequestFilterSensitiveLog = (obj) => ({
609
- ...obj,
610
- });
611
- export const RemoveAttributesFromFindingsRequestFilterSensitiveLog = (obj) => ({
612
- ...obj,
613
- });
614
- export const RemoveAttributesFromFindingsResponseFilterSensitiveLog = (obj) => ({
615
- ...obj,
616
- });
617
- export const SetTagsForResourceRequestFilterSensitiveLog = (obj) => ({
618
- ...obj,
619
- });
620
- export const StartAssessmentRunRequestFilterSensitiveLog = (obj) => ({
621
- ...obj,
622
- });
623
- export const StartAssessmentRunResponseFilterSensitiveLog = (obj) => ({
624
- ...obj,
625
- });
626
- export const StopAssessmentRunRequestFilterSensitiveLog = (obj) => ({
627
- ...obj,
628
- });
629
- export const SubscribeToEventRequestFilterSensitiveLog = (obj) => ({
630
- ...obj,
631
- });
632
- export const UnsubscribeFromEventRequestFilterSensitiveLog = (obj) => ({
633
- ...obj,
634
- });
635
- export const UpdateAssessmentTargetRequestFilterSensitiveLog = (obj) => ({
636
- ...obj,
637
- });
348
+ export var AttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
+ export var AddAttributesToFindingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
+ export var FailedItemDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
+ export var AddAttributesToFindingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
+ export var AgentAlreadyRunningAssessmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
+ export var AgentFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
+ export var AgentPreviewFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
+ export var AssessmentRunNotificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
+ export var AssessmentRunStateChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
+ export var AssessmentRunFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
+ export var TelemetryMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
+ export var AssessmentRunAgentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
+ export var TimestampRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
+ export var DurationRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
+ export var AssessmentRunFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
+ export var AssessmentTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
+ export var AssessmentTargetFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
+ export var AssessmentTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
+ export var AssessmentTemplateFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
+ export var PrivateIpFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
+ export var SecurityGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
+ export var NetworkInterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
+ export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
+ export var AssetAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
+ export var CreateAssessmentTargetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
+ export var CreateAssessmentTargetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
+ export var CreateAssessmentTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
+ export var CreateAssessmentTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
+ export var CreateExclusionsPreviewRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
+ export var CreateExclusionsPreviewResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
+ export var ResourceGroupTagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
+ export var CreateResourceGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
+ export var CreateResourceGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
+ export var DeleteAssessmentRunRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
+ export var DeleteAssessmentTargetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
+ export var DeleteAssessmentTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
+ export var DescribeAssessmentRunsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
+ export var DescribeAssessmentRunsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
+ export var DescribeAssessmentTargetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
+ export var DescribeAssessmentTargetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
+ export var DescribeAssessmentTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
+ export var DescribeAssessmentTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
+ export var DescribeCrossAccountAccessRoleResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
+ export var DescribeExclusionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
392
+ export var ScopeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
+ export var ExclusionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
394
+ export var DescribeExclusionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
395
+ export var DescribeFindingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
396
+ export var InspectorServiceAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
+ export var FindingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
+ export var DescribeFindingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
399
+ export var DescribeResourceGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
400
+ export var ResourceGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
401
+ export var DescribeResourceGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
402
+ export var DescribeRulesPackagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
403
+ export var RulesPackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
+ export var DescribeRulesPackagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
405
+ export var EventSubscriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
406
+ export var ExclusionPreviewFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
407
+ export var FindingFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
+ export var GetAssessmentReportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
+ export var GetAssessmentReportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
410
+ export var GetExclusionsPreviewRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
+ export var GetExclusionsPreviewResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
412
+ export var GetTelemetryMetadataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
413
+ export var GetTelemetryMetadataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
414
+ export var ListAssessmentRunAgentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
+ export var ListAssessmentRunAgentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
416
+ export var ListAssessmentRunsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
417
+ export var ListAssessmentRunsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
418
+ export var ListAssessmentTargetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
419
+ export var ListAssessmentTargetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
420
+ export var ListAssessmentTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
421
+ export var ListAssessmentTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
422
+ export var ListEventSubscriptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
423
+ export var SubscriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
424
+ export var ListEventSubscriptionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
425
+ export var ListExclusionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
426
+ export var ListExclusionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
427
+ export var ListFindingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
428
+ export var ListFindingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
429
+ export var ListRulesPackagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
430
+ export var ListRulesPackagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
431
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
432
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
433
+ export var PreviewAgentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
434
+ export var PreviewAgentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
435
+ export var RegisterCrossAccountAccessRoleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
436
+ export var RemoveAttributesFromFindingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
437
+ export var RemoveAttributesFromFindingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
438
+ export var SetTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
439
+ export var StartAssessmentRunRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
440
+ export var StartAssessmentRunResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
441
+ export var StopAssessmentRunRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
442
+ export var SubscribeToEventRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
443
+ export var UnsubscribeFromEventRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
444
+ export var UpdateAssessmentTargetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };