@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.
- package/CHANGELOG.md +8 -0
- package/dist-es/Inspector.js +150 -157
- package/dist-es/InspectorClient.js +22 -28
- package/dist-es/commands/AddAttributesToFindingsCommand.js +21 -28
- package/dist-es/commands/CreateAssessmentTargetCommand.js +21 -28
- package/dist-es/commands/CreateAssessmentTemplateCommand.js +21 -28
- package/dist-es/commands/CreateExclusionsPreviewCommand.js +21 -28
- package/dist-es/commands/CreateResourceGroupCommand.js +21 -28
- package/dist-es/commands/DeleteAssessmentRunCommand.js +22 -29
- package/dist-es/commands/DeleteAssessmentTargetCommand.js +22 -29
- package/dist-es/commands/DeleteAssessmentTemplateCommand.js +22 -29
- package/dist-es/commands/DescribeAssessmentRunsCommand.js +21 -28
- package/dist-es/commands/DescribeAssessmentTargetsCommand.js +21 -28
- package/dist-es/commands/DescribeAssessmentTemplatesCommand.js +21 -28
- package/dist-es/commands/DescribeCrossAccountAccessRoleCommand.js +22 -29
- package/dist-es/commands/DescribeExclusionsCommand.js +21 -28
- package/dist-es/commands/DescribeFindingsCommand.js +21 -28
- package/dist-es/commands/DescribeResourceGroupsCommand.js +21 -28
- package/dist-es/commands/DescribeRulesPackagesCommand.js +21 -28
- package/dist-es/commands/GetAssessmentReportCommand.js +21 -28
- package/dist-es/commands/GetExclusionsPreviewCommand.js +21 -28
- package/dist-es/commands/GetTelemetryMetadataCommand.js +21 -28
- package/dist-es/commands/ListAssessmentRunAgentsCommand.js +21 -28
- package/dist-es/commands/ListAssessmentRunsCommand.js +21 -28
- package/dist-es/commands/ListAssessmentTargetsCommand.js +21 -28
- package/dist-es/commands/ListAssessmentTemplatesCommand.js +21 -28
- package/dist-es/commands/ListEventSubscriptionsCommand.js +21 -28
- package/dist-es/commands/ListExclusionsCommand.js +21 -28
- package/dist-es/commands/ListFindingsCommand.js +21 -28
- package/dist-es/commands/ListRulesPackagesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/PreviewAgentsCommand.js +21 -28
- package/dist-es/commands/RegisterCrossAccountAccessRoleCommand.js +22 -29
- package/dist-es/commands/RemoveAttributesFromFindingsCommand.js +21 -28
- package/dist-es/commands/SetTagsForResourceCommand.js +22 -29
- package/dist-es/commands/StartAssessmentRunCommand.js +21 -28
- package/dist-es/commands/StopAssessmentRunCommand.js +22 -29
- package/dist-es/commands/SubscribeToEventCommand.js +22 -29
- package/dist-es/commands/UnsubscribeFromEventCommand.js +22 -29
- package/dist-es/commands/UpdateAssessmentTargetCommand.js +22 -29
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/InspectorServiceException.js +5 -10
- package/dist-es/models/models_0.js +431 -238
- package/dist-es/pagination/GetExclusionsPreviewPaginator.js +25 -68
- package/dist-es/pagination/ListAssessmentRunAgentsPaginator.js +25 -68
- package/dist-es/pagination/ListAssessmentRunsPaginator.js +25 -68
- package/dist-es/pagination/ListAssessmentTargetsPaginator.js +25 -68
- package/dist-es/pagination/ListAssessmentTemplatesPaginator.js +25 -68
- package/dist-es/pagination/ListEventSubscriptionsPaginator.js +25 -68
- package/dist-es/pagination/ListExclusionsPaginator.js +25 -68
- package/dist-es/pagination/ListFindingsPaginator.js +25 -68
- package/dist-es/pagination/ListRulesPackagesPaginator.js +25 -68
- package/dist-es/pagination/PreviewAgentsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +2604 -3357
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,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
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
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
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
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
|
-
|
|
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
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
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
|
-
|
|
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
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
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
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
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
|
-
|
|
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
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
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
|
-
|
|
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
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
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
|
-
|
|
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
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
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
|
-
|
|
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
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
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
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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
|
-
|
|
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
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
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
|
-
|
|
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
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
export
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
export
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
export
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
export
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
export
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
export
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
export
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
export
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
export
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
export
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
export
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
export
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
export
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
export
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
export
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
export
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
export
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
export
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
export
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
export
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
export
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
export
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
export
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
export
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
export
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
export
|
|
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
|
+
});
|