@aws-sdk/client-inspector 3.181.0 → 3.183.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 (59) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/Inspector.js +150 -157
  3. package/dist-es/InspectorClient.js +22 -28
  4. package/dist-es/commands/AddAttributesToFindingsCommand.js +21 -28
  5. package/dist-es/commands/CreateAssessmentTargetCommand.js +21 -28
  6. package/dist-es/commands/CreateAssessmentTemplateCommand.js +21 -28
  7. package/dist-es/commands/CreateExclusionsPreviewCommand.js +21 -28
  8. package/dist-es/commands/CreateResourceGroupCommand.js +21 -28
  9. package/dist-es/commands/DeleteAssessmentRunCommand.js +22 -29
  10. package/dist-es/commands/DeleteAssessmentTargetCommand.js +22 -29
  11. package/dist-es/commands/DeleteAssessmentTemplateCommand.js +22 -29
  12. package/dist-es/commands/DescribeAssessmentRunsCommand.js +21 -28
  13. package/dist-es/commands/DescribeAssessmentTargetsCommand.js +21 -28
  14. package/dist-es/commands/DescribeAssessmentTemplatesCommand.js +21 -28
  15. package/dist-es/commands/DescribeCrossAccountAccessRoleCommand.js +22 -29
  16. package/dist-es/commands/DescribeExclusionsCommand.js +21 -28
  17. package/dist-es/commands/DescribeFindingsCommand.js +21 -28
  18. package/dist-es/commands/DescribeResourceGroupsCommand.js +21 -28
  19. package/dist-es/commands/DescribeRulesPackagesCommand.js +21 -28
  20. package/dist-es/commands/GetAssessmentReportCommand.js +21 -28
  21. package/dist-es/commands/GetExclusionsPreviewCommand.js +21 -28
  22. package/dist-es/commands/GetTelemetryMetadataCommand.js +21 -28
  23. package/dist-es/commands/ListAssessmentRunAgentsCommand.js +21 -28
  24. package/dist-es/commands/ListAssessmentRunsCommand.js +21 -28
  25. package/dist-es/commands/ListAssessmentTargetsCommand.js +21 -28
  26. package/dist-es/commands/ListAssessmentTemplatesCommand.js +21 -28
  27. package/dist-es/commands/ListEventSubscriptionsCommand.js +21 -28
  28. package/dist-es/commands/ListExclusionsCommand.js +21 -28
  29. package/dist-es/commands/ListFindingsCommand.js +21 -28
  30. package/dist-es/commands/ListRulesPackagesCommand.js +21 -28
  31. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  32. package/dist-es/commands/PreviewAgentsCommand.js +21 -28
  33. package/dist-es/commands/RegisterCrossAccountAccessRoleCommand.js +22 -29
  34. package/dist-es/commands/RemoveAttributesFromFindingsCommand.js +21 -28
  35. package/dist-es/commands/SetTagsForResourceCommand.js +22 -29
  36. package/dist-es/commands/StartAssessmentRunCommand.js +21 -28
  37. package/dist-es/commands/StopAssessmentRunCommand.js +22 -29
  38. package/dist-es/commands/SubscribeToEventCommand.js +22 -29
  39. package/dist-es/commands/UnsubscribeFromEventCommand.js +22 -29
  40. package/dist-es/commands/UpdateAssessmentTargetCommand.js +22 -29
  41. package/dist-es/endpoints.js +8 -8
  42. package/dist-es/models/InspectorServiceException.js +5 -10
  43. package/dist-es/models/models_0.js +431 -238
  44. package/dist-es/pagination/GetExclusionsPreviewPaginator.js +25 -68
  45. package/dist-es/pagination/ListAssessmentRunAgentsPaginator.js +25 -68
  46. package/dist-es/pagination/ListAssessmentRunsPaginator.js +25 -68
  47. package/dist-es/pagination/ListAssessmentTargetsPaginator.js +25 -68
  48. package/dist-es/pagination/ListAssessmentTemplatesPaginator.js +25 -68
  49. package/dist-es/pagination/ListEventSubscriptionsPaginator.js +25 -68
  50. package/dist-es/pagination/ListExclusionsPaginator.js +25 -68
  51. package/dist-es/pagination/ListFindingsPaginator.js +25 -68
  52. package/dist-es/pagination/ListRulesPackagesPaginator.js +25 -68
  53. package/dist-es/pagination/PreviewAgentsPaginator.js +25 -68
  54. package/dist-es/protocols/Aws_json1_1.js +2604 -3357
  55. package/dist-es/runtimeConfig.browser.js +26 -12
  56. package/dist-es/runtimeConfig.js +30 -12
  57. package/dist-es/runtimeConfig.native.js +8 -5
  58. package/dist-es/runtimeConfig.shared.js +8 -11
  59. package/package.json +33 -33
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { InspectorServiceException as __BaseException } from "./InspectorServiceException";
3
2
  export var AccessDeniedErrorCode;
4
3
  (function (AccessDeniedErrorCode) {
@@ -11,20 +10,20 @@ export var AccessDeniedErrorCode;
11
10
  AccessDeniedErrorCode["ACCESS_DENIED_TO_RULES_PACKAGE"] = "ACCESS_DENIED_TO_RULES_PACKAGE";
12
11
  AccessDeniedErrorCode["ACCESS_DENIED_TO_SNS_TOPIC"] = "ACCESS_DENIED_TO_SNS_TOPIC";
13
12
  })(AccessDeniedErrorCode || (AccessDeniedErrorCode = {}));
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;
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;
24
25
  }
25
- return AccessDeniedException;
26
- }(__BaseException));
27
- export { AccessDeniedException };
26
+ }
28
27
  export var FailedItemErrorCode;
29
28
  (function (FailedItemErrorCode) {
30
29
  FailedItemErrorCode["ACCESS_DENIED"] = "ACCESS_DENIED";
@@ -34,19 +33,19 @@ export var FailedItemErrorCode;
34
33
  FailedItemErrorCode["ITEM_DOES_NOT_EXIST"] = "ITEM_DOES_NOT_EXIST";
35
34
  FailedItemErrorCode["LIMIT_EXCEEDED"] = "LIMIT_EXCEEDED";
36
35
  })(FailedItemErrorCode || (FailedItemErrorCode = {}));
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;
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;
46
47
  }
47
- return InternalException;
48
- }(__BaseException));
49
- export { InternalException };
48
+ }
50
49
  export var InvalidInputErrorCode;
51
50
  (function (InvalidInputErrorCode) {
52
51
  InvalidInputErrorCode["ASSESSMENT_TARGET_NAME_ALREADY_TAKEN"] = "ASSESSMENT_TARGET_NAME_ALREADY_TAKEN";
@@ -104,20 +103,20 @@ export var InvalidInputErrorCode;
104
103
  InvalidInputErrorCode["INVALID_USER_ATTRIBUTE_KEY"] = "INVALID_USER_ATTRIBUTE_KEY";
105
104
  InvalidInputErrorCode["INVALID_USER_ATTRIBUTE_VALUE"] = "INVALID_USER_ATTRIBUTE_VALUE";
106
105
  })(InvalidInputErrorCode || (InvalidInputErrorCode = {}));
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;
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;
117
118
  }
118
- return InvalidInputException;
119
- }(__BaseException));
120
- export { InvalidInputException };
119
+ }
121
120
  export var NoSuchEntityErrorCode;
122
121
  (function (NoSuchEntityErrorCode) {
123
122
  NoSuchEntityErrorCode["ASSESSMENT_RUN_DOES_NOT_EXIST"] = "ASSESSMENT_RUN_DOES_NOT_EXIST";
@@ -129,33 +128,33 @@ export var NoSuchEntityErrorCode;
129
128
  NoSuchEntityErrorCode["RULES_PACKAGE_DOES_NOT_EXIST"] = "RULES_PACKAGE_DOES_NOT_EXIST";
130
129
  NoSuchEntityErrorCode["SNS_TOPIC_DOES_NOT_EXIST"] = "SNS_TOPIC_DOES_NOT_EXIST";
131
130
  })(NoSuchEntityErrorCode || (NoSuchEntityErrorCode = {}));
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;
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;
142
143
  }
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;
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;
155
156
  }
156
- return ServiceTemporarilyUnavailableException;
157
- }(__BaseException));
158
- export { ServiceTemporarilyUnavailableException };
157
+ }
159
158
  export var AgentHealthCode;
160
159
  (function (AgentHealthCode) {
161
160
  AgentHealthCode["IDLE"] = "IDLE";
@@ -171,21 +170,21 @@ export var AgentHealth;
171
170
  AgentHealth["UNHEALTHY"] = "UNHEALTHY";
172
171
  AgentHealth["UNKNOWN"] = "UNKNOWN";
173
172
  })(AgentHealth || (AgentHealth = {}));
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;
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;
185
186
  }
186
- return AgentsAlreadyRunningAssessmentException;
187
- }(__BaseException));
188
- export { AgentsAlreadyRunningAssessmentException };
187
+ }
189
188
  export var Severity;
190
189
  (function (Severity) {
191
190
  Severity["HIGH"] = "High";
@@ -225,21 +224,21 @@ export var AssessmentRunState;
225
224
  AssessmentRunState["START_EVALUATING_RULES_PENDING"] = "START_EVALUATING_RULES_PENDING";
226
225
  AssessmentRunState["STOP_DATA_COLLECTION_PENDING"] = "STOP_DATA_COLLECTION_PENDING";
227
226
  })(AssessmentRunState || (AssessmentRunState = {}));
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;
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;
239
240
  }
240
- return AssessmentRunInProgressException;
241
- }(__BaseException));
242
- export { AssessmentRunInProgressException };
241
+ }
243
242
  export var AssetType;
244
243
  (function (AssetType) {
245
244
  AssetType["EC2_INSTANCE"] = "ec2-instance";
@@ -249,20 +248,20 @@ export var InvalidCrossAccountRoleErrorCode;
249
248
  InvalidCrossAccountRoleErrorCode["ROLE_DOES_NOT_EXIST_OR_INVALID_TRUST_RELATIONSHIP"] = "ROLE_DOES_NOT_EXIST_OR_INVALID_TRUST_RELATIONSHIP";
250
249
  InvalidCrossAccountRoleErrorCode["ROLE_DOES_NOT_HAVE_CORRECT_POLICY"] = "ROLE_DOES_NOT_HAVE_CORRECT_POLICY";
251
250
  })(InvalidCrossAccountRoleErrorCode || (InvalidCrossAccountRoleErrorCode = {}));
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;
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;
262
263
  }
263
- return InvalidCrossAccountRoleException;
264
- }(__BaseException));
265
- export { InvalidCrossAccountRoleException };
264
+ }
266
265
  export var LimitExceededErrorCode;
267
266
  (function (LimitExceededErrorCode) {
268
267
  LimitExceededErrorCode["ASSESSMENT_RUN_LIMIT_EXCEEDED"] = "ASSESSMENT_RUN_LIMIT_EXCEEDED";
@@ -271,32 +270,32 @@ export var LimitExceededErrorCode;
271
270
  LimitExceededErrorCode["EVENT_SUBSCRIPTION_LIMIT_EXCEEDED"] = "EVENT_SUBSCRIPTION_LIMIT_EXCEEDED";
272
271
  LimitExceededErrorCode["RESOURCE_GROUP_LIMIT_EXCEEDED"] = "RESOURCE_GROUP_LIMIT_EXCEEDED";
273
272
  })(LimitExceededErrorCode || (LimitExceededErrorCode = {}));
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;
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;
284
285
  }
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;
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);
296
297
  }
297
- return PreviewGenerationInProgressException;
298
- }(__BaseException));
299
- export { PreviewGenerationInProgressException };
298
+ }
300
299
  export var Locale;
301
300
  (function (Locale) {
302
301
  Locale["EN_US"] = "EN_US";
@@ -322,19 +321,19 @@ export var ReportStatus;
322
321
  ReportStatus["FAILED"] = "FAILED";
323
322
  ReportStatus["WORK_IN_PROGRESS"] = "WORK_IN_PROGRESS";
324
323
  })(ReportStatus || (ReportStatus = {}));
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;
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;
334
335
  }
335
- return UnsupportedFeatureException;
336
- }(__BaseException));
337
- export { UnsupportedFeatureException };
336
+ }
338
337
  export var PreviewStatus;
339
338
  (function (PreviewStatus) {
340
339
  PreviewStatus["COMPLETED"] = "COMPLETED";
@@ -345,100 +344,294 @@ export var StopAction;
345
344
  StopAction["SKIP_EVALUATION"] = "SKIP_EVALUATION";
346
345
  StopAction["START_EVALUATION"] = "START_EVALUATION";
347
346
  })(StopAction || (StopAction = {}));
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)); };
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
+ });