@aws-sdk/client-inspector 3.927.0 → 3.928.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/dist-cjs/index.js +1243 -1407
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/InspectorClient.js +2 -0
- package/dist-es/commands/AddAttributesToFindingsCommand.js +3 -9
- package/dist-es/commands/CreateAssessmentTargetCommand.js +3 -9
- package/dist-es/commands/CreateAssessmentTemplateCommand.js +3 -9
- package/dist-es/commands/CreateExclusionsPreviewCommand.js +3 -9
- package/dist-es/commands/CreateResourceGroupCommand.js +3 -9
- package/dist-es/commands/DeleteAssessmentRunCommand.js +3 -9
- package/dist-es/commands/DeleteAssessmentTargetCommand.js +3 -9
- package/dist-es/commands/DeleteAssessmentTemplateCommand.js +3 -9
- package/dist-es/commands/DescribeAssessmentRunsCommand.js +3 -9
- package/dist-es/commands/DescribeAssessmentTargetsCommand.js +3 -9
- package/dist-es/commands/DescribeAssessmentTemplatesCommand.js +3 -9
- package/dist-es/commands/DescribeCrossAccountAccessRoleCommand.js +3 -9
- package/dist-es/commands/DescribeExclusionsCommand.js +3 -9
- package/dist-es/commands/DescribeFindingsCommand.js +3 -9
- package/dist-es/commands/DescribeResourceGroupsCommand.js +3 -9
- package/dist-es/commands/DescribeRulesPackagesCommand.js +3 -9
- package/dist-es/commands/GetAssessmentReportCommand.js +3 -9
- package/dist-es/commands/GetExclusionsPreviewCommand.js +3 -9
- package/dist-es/commands/GetTelemetryMetadataCommand.js +3 -9
- package/dist-es/commands/ListAssessmentRunAgentsCommand.js +3 -9
- package/dist-es/commands/ListAssessmentRunsCommand.js +3 -9
- package/dist-es/commands/ListAssessmentTargetsCommand.js +3 -9
- package/dist-es/commands/ListAssessmentTemplatesCommand.js +3 -9
- package/dist-es/commands/ListEventSubscriptionsCommand.js +3 -9
- package/dist-es/commands/ListExclusionsCommand.js +3 -9
- package/dist-es/commands/ListFindingsCommand.js +3 -9
- package/dist-es/commands/ListRulesPackagesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PreviewAgentsCommand.js +3 -9
- package/dist-es/commands/RegisterCrossAccountAccessRoleCommand.js +3 -9
- package/dist-es/commands/RemoveAttributesFromFindingsCommand.js +3 -9
- package/dist-es/commands/SetTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartAssessmentRunCommand.js +3 -9
- package/dist-es/commands/StopAssessmentRunCommand.js +3 -9
- package/dist-es/commands/SubscribeToEventCommand.js +3 -9
- package/dist-es/commands/UnsubscribeFromEventCommand.js +3 -9
- package/dist-es/commands/UpdateAssessmentTargetCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1154 -0
- package/dist-types/InspectorClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +194 -0
- package/dist-types/ts3.4/InspectorClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +200 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -1119
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -335
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -449
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class InspectorClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,12 +110,12 @@ class InspectorClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class InspectorServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let InspectorServiceException$1 = class InspectorServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, InspectorServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
120
|
const AccessDeniedErrorCode = {
|
|
121
121
|
ACCESS_DENIED_TO_ASSESSMENT_RUN: "ACCESS_DENIED_TO_ASSESSMENT_RUN",
|
|
@@ -127,7 +127,7 @@ const AccessDeniedErrorCode = {
|
|
|
127
127
|
ACCESS_DENIED_TO_RULES_PACKAGE: "ACCESS_DENIED_TO_RULES_PACKAGE",
|
|
128
128
|
ACCESS_DENIED_TO_SNS_TOPIC: "ACCESS_DENIED_TO_SNS_TOPIC",
|
|
129
129
|
};
|
|
130
|
-
class AccessDeniedException extends InspectorServiceException {
|
|
130
|
+
let AccessDeniedException$1 = class AccessDeniedException extends InspectorServiceException$1 {
|
|
131
131
|
name = "AccessDeniedException";
|
|
132
132
|
$fault = "client";
|
|
133
133
|
errorCode;
|
|
@@ -142,7 +142,7 @@ class AccessDeniedException extends InspectorServiceException {
|
|
|
142
142
|
this.errorCode = opts.errorCode;
|
|
143
143
|
this.canRetry = opts.canRetry;
|
|
144
144
|
}
|
|
145
|
-
}
|
|
145
|
+
};
|
|
146
146
|
const FailedItemErrorCode = {
|
|
147
147
|
ACCESS_DENIED: "ACCESS_DENIED",
|
|
148
148
|
DUPLICATE_ARN: "DUPLICATE_ARN",
|
|
@@ -151,7 +151,7 @@ const FailedItemErrorCode = {
|
|
|
151
151
|
ITEM_DOES_NOT_EXIST: "ITEM_DOES_NOT_EXIST",
|
|
152
152
|
LIMIT_EXCEEDED: "LIMIT_EXCEEDED",
|
|
153
153
|
};
|
|
154
|
-
class InternalException extends InspectorServiceException {
|
|
154
|
+
let InternalException$1 = class InternalException extends InspectorServiceException$1 {
|
|
155
155
|
name = "InternalException";
|
|
156
156
|
$fault = "server";
|
|
157
157
|
canRetry;
|
|
@@ -164,7 +164,7 @@ class InternalException extends InspectorServiceException {
|
|
|
164
164
|
Object.setPrototypeOf(this, InternalException.prototype);
|
|
165
165
|
this.canRetry = opts.canRetry;
|
|
166
166
|
}
|
|
167
|
-
}
|
|
167
|
+
};
|
|
168
168
|
const InvalidInputErrorCode = {
|
|
169
169
|
ASSESSMENT_TARGET_NAME_ALREADY_TAKEN: "ASSESSMENT_TARGET_NAME_ALREADY_TAKEN",
|
|
170
170
|
ASSESSMENT_TEMPLATE_NAME_ALREADY_TAKEN: "ASSESSMENT_TEMPLATE_NAME_ALREADY_TAKEN",
|
|
@@ -221,7 +221,7 @@ const InvalidInputErrorCode = {
|
|
|
221
221
|
INVALID_USER_ATTRIBUTE_KEY: "INVALID_USER_ATTRIBUTE_KEY",
|
|
222
222
|
INVALID_USER_ATTRIBUTE_VALUE: "INVALID_USER_ATTRIBUTE_VALUE",
|
|
223
223
|
};
|
|
224
|
-
class InvalidInputException extends InspectorServiceException {
|
|
224
|
+
let InvalidInputException$1 = class InvalidInputException extends InspectorServiceException$1 {
|
|
225
225
|
name = "InvalidInputException";
|
|
226
226
|
$fault = "client";
|
|
227
227
|
errorCode;
|
|
@@ -236,7 +236,7 @@ class InvalidInputException extends InspectorServiceException {
|
|
|
236
236
|
this.errorCode = opts.errorCode;
|
|
237
237
|
this.canRetry = opts.canRetry;
|
|
238
238
|
}
|
|
239
|
-
}
|
|
239
|
+
};
|
|
240
240
|
const NoSuchEntityErrorCode = {
|
|
241
241
|
ASSESSMENT_RUN_DOES_NOT_EXIST: "ASSESSMENT_RUN_DOES_NOT_EXIST",
|
|
242
242
|
ASSESSMENT_TARGET_DOES_NOT_EXIST: "ASSESSMENT_TARGET_DOES_NOT_EXIST",
|
|
@@ -247,7 +247,7 @@ const NoSuchEntityErrorCode = {
|
|
|
247
247
|
RULES_PACKAGE_DOES_NOT_EXIST: "RULES_PACKAGE_DOES_NOT_EXIST",
|
|
248
248
|
SNS_TOPIC_DOES_NOT_EXIST: "SNS_TOPIC_DOES_NOT_EXIST",
|
|
249
249
|
};
|
|
250
|
-
class NoSuchEntityException extends InspectorServiceException {
|
|
250
|
+
let NoSuchEntityException$1 = class NoSuchEntityException extends InspectorServiceException$1 {
|
|
251
251
|
name = "NoSuchEntityException";
|
|
252
252
|
$fault = "client";
|
|
253
253
|
errorCode;
|
|
@@ -262,8 +262,8 @@ class NoSuchEntityException extends InspectorServiceException {
|
|
|
262
262
|
this.errorCode = opts.errorCode;
|
|
263
263
|
this.canRetry = opts.canRetry;
|
|
264
264
|
}
|
|
265
|
-
}
|
|
266
|
-
class ServiceTemporarilyUnavailableException extends InspectorServiceException {
|
|
265
|
+
};
|
|
266
|
+
let ServiceTemporarilyUnavailableException$1 = class ServiceTemporarilyUnavailableException extends InspectorServiceException$1 {
|
|
267
267
|
name = "ServiceTemporarilyUnavailableException";
|
|
268
268
|
$fault = "server";
|
|
269
269
|
canRetry;
|
|
@@ -276,7 +276,7 @@ class ServiceTemporarilyUnavailableException extends InspectorServiceException {
|
|
|
276
276
|
Object.setPrototypeOf(this, ServiceTemporarilyUnavailableException.prototype);
|
|
277
277
|
this.canRetry = opts.canRetry;
|
|
278
278
|
}
|
|
279
|
-
}
|
|
279
|
+
};
|
|
280
280
|
const AgentHealthCode = {
|
|
281
281
|
IDLE: "IDLE",
|
|
282
282
|
RUNNING: "RUNNING",
|
|
@@ -290,7 +290,7 @@ const AgentHealth = {
|
|
|
290
290
|
UNHEALTHY: "UNHEALTHY",
|
|
291
291
|
UNKNOWN: "UNKNOWN",
|
|
292
292
|
};
|
|
293
|
-
class AgentsAlreadyRunningAssessmentException extends InspectorServiceException {
|
|
293
|
+
let AgentsAlreadyRunningAssessmentException$1 = class AgentsAlreadyRunningAssessmentException extends InspectorServiceException$1 {
|
|
294
294
|
name = "AgentsAlreadyRunningAssessmentException";
|
|
295
295
|
$fault = "client";
|
|
296
296
|
agents;
|
|
@@ -307,7 +307,7 @@ class AgentsAlreadyRunningAssessmentException extends InspectorServiceException
|
|
|
307
307
|
this.agentsTruncated = opts.agentsTruncated;
|
|
308
308
|
this.canRetry = opts.canRetry;
|
|
309
309
|
}
|
|
310
|
-
}
|
|
310
|
+
};
|
|
311
311
|
const Severity = {
|
|
312
312
|
HIGH: "High",
|
|
313
313
|
INFORMATIONAL: "Informational",
|
|
@@ -343,7 +343,7 @@ const AssessmentRunState = {
|
|
|
343
343
|
START_EVALUATING_RULES_PENDING: "START_EVALUATING_RULES_PENDING",
|
|
344
344
|
STOP_DATA_COLLECTION_PENDING: "STOP_DATA_COLLECTION_PENDING",
|
|
345
345
|
};
|
|
346
|
-
class AssessmentRunInProgressException extends InspectorServiceException {
|
|
346
|
+
let AssessmentRunInProgressException$1 = class AssessmentRunInProgressException extends InspectorServiceException$1 {
|
|
347
347
|
name = "AssessmentRunInProgressException";
|
|
348
348
|
$fault = "client";
|
|
349
349
|
assessmentRunArns;
|
|
@@ -360,7 +360,7 @@ class AssessmentRunInProgressException extends InspectorServiceException {
|
|
|
360
360
|
this.assessmentRunArnsTruncated = opts.assessmentRunArnsTruncated;
|
|
361
361
|
this.canRetry = opts.canRetry;
|
|
362
362
|
}
|
|
363
|
-
}
|
|
363
|
+
};
|
|
364
364
|
const AssetType = {
|
|
365
365
|
EC2_INSTANCE: "ec2-instance",
|
|
366
366
|
};
|
|
@@ -368,7 +368,7 @@ const InvalidCrossAccountRoleErrorCode = {
|
|
|
368
368
|
ROLE_DOES_NOT_EXIST_OR_INVALID_TRUST_RELATIONSHIP: "ROLE_DOES_NOT_EXIST_OR_INVALID_TRUST_RELATIONSHIP",
|
|
369
369
|
ROLE_DOES_NOT_HAVE_CORRECT_POLICY: "ROLE_DOES_NOT_HAVE_CORRECT_POLICY",
|
|
370
370
|
};
|
|
371
|
-
class InvalidCrossAccountRoleException extends InspectorServiceException {
|
|
371
|
+
let InvalidCrossAccountRoleException$1 = class InvalidCrossAccountRoleException extends InspectorServiceException$1 {
|
|
372
372
|
name = "InvalidCrossAccountRoleException";
|
|
373
373
|
$fault = "client";
|
|
374
374
|
errorCode;
|
|
@@ -383,7 +383,7 @@ class InvalidCrossAccountRoleException extends InspectorServiceException {
|
|
|
383
383
|
this.errorCode = opts.errorCode;
|
|
384
384
|
this.canRetry = opts.canRetry;
|
|
385
385
|
}
|
|
386
|
-
}
|
|
386
|
+
};
|
|
387
387
|
const LimitExceededErrorCode = {
|
|
388
388
|
ASSESSMENT_RUN_LIMIT_EXCEEDED: "ASSESSMENT_RUN_LIMIT_EXCEEDED",
|
|
389
389
|
ASSESSMENT_TARGET_LIMIT_EXCEEDED: "ASSESSMENT_TARGET_LIMIT_EXCEEDED",
|
|
@@ -391,7 +391,7 @@ const LimitExceededErrorCode = {
|
|
|
391
391
|
EVENT_SUBSCRIPTION_LIMIT_EXCEEDED: "EVENT_SUBSCRIPTION_LIMIT_EXCEEDED",
|
|
392
392
|
RESOURCE_GROUP_LIMIT_EXCEEDED: "RESOURCE_GROUP_LIMIT_EXCEEDED",
|
|
393
393
|
};
|
|
394
|
-
class LimitExceededException extends InspectorServiceException {
|
|
394
|
+
let LimitExceededException$1 = class LimitExceededException extends InspectorServiceException$1 {
|
|
395
395
|
name = "LimitExceededException";
|
|
396
396
|
$fault = "client";
|
|
397
397
|
errorCode;
|
|
@@ -406,8 +406,8 @@ class LimitExceededException extends InspectorServiceException {
|
|
|
406
406
|
this.errorCode = opts.errorCode;
|
|
407
407
|
this.canRetry = opts.canRetry;
|
|
408
408
|
}
|
|
409
|
-
}
|
|
410
|
-
class PreviewGenerationInProgressException extends InspectorServiceException {
|
|
409
|
+
};
|
|
410
|
+
let PreviewGenerationInProgressException$1 = class PreviewGenerationInProgressException extends InspectorServiceException$1 {
|
|
411
411
|
name = "PreviewGenerationInProgressException";
|
|
412
412
|
$fault = "client";
|
|
413
413
|
constructor(opts) {
|
|
@@ -418,7 +418,7 @@ class PreviewGenerationInProgressException extends InspectorServiceException {
|
|
|
418
418
|
});
|
|
419
419
|
Object.setPrototypeOf(this, PreviewGenerationInProgressException.prototype);
|
|
420
420
|
}
|
|
421
|
-
}
|
|
421
|
+
};
|
|
422
422
|
const Locale = {
|
|
423
423
|
EN_US: "EN_US",
|
|
424
424
|
};
|
|
@@ -439,7 +439,7 @@ const ReportStatus = {
|
|
|
439
439
|
FAILED: "FAILED",
|
|
440
440
|
WORK_IN_PROGRESS: "WORK_IN_PROGRESS",
|
|
441
441
|
};
|
|
442
|
-
class UnsupportedFeatureException extends InspectorServiceException {
|
|
442
|
+
let UnsupportedFeatureException$1 = class UnsupportedFeatureException extends InspectorServiceException$1 {
|
|
443
443
|
name = "UnsupportedFeatureException";
|
|
444
444
|
$fault = "client";
|
|
445
445
|
canRetry;
|
|
@@ -452,7 +452,7 @@ class UnsupportedFeatureException extends InspectorServiceException {
|
|
|
452
452
|
Object.setPrototypeOf(this, UnsupportedFeatureException.prototype);
|
|
453
453
|
this.canRetry = opts.canRetry;
|
|
454
454
|
}
|
|
455
|
-
}
|
|
455
|
+
};
|
|
456
456
|
const PreviewStatus = {
|
|
457
457
|
COMPLETED: "COMPLETED",
|
|
458
458
|
WORK_IN_PROGRESS: "WORK_IN_PROGRESS",
|
|
@@ -462,1131 +462,1147 @@ const StopAction = {
|
|
|
462
462
|
START_EVALUATION: "START_EVALUATION",
|
|
463
463
|
};
|
|
464
464
|
|
|
465
|
-
const
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
const
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
const
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
const
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
const
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
const
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
const
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
const
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
const
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
const
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
const
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
const
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
const
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
const
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
const
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
const
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
const
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
const
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
const
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
const
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
const
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
const
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
const
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
const
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
const
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
const
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
const
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
const
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
const
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
const
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
const
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
const
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
const
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
const
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
const
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
const
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
const
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
const
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
const
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
const
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
const
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
const
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
const
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
const
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
const
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
const
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
}
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
465
|
+
const _A = "Attribute";
|
|
466
|
+
const _AA = "AssetAttributes";
|
|
467
|
+
const _AARA = "AgentAlreadyRunningAssessment";
|
|
468
|
+
const _AARAE = "AgentsAlreadyRunningAssessmentException";
|
|
469
|
+
const _AARAL = "AgentAlreadyRunningAssessmentList";
|
|
470
|
+
const _AATF = "AddAttributesToFindings";
|
|
471
|
+
const _AATFR = "AddAttributesToFindingsRequest";
|
|
472
|
+
const _AATFRd = "AddAttributesToFindingsResponse";
|
|
473
|
+
const _ADE = "AccessDeniedException";
|
|
474
|
+
const _AF = "AgentFilter";
|
|
475
|
+
const _AL = "AttributeList";
|
|
476
|
+
const _AP = "AgentPreview";
|
|
477
|
+
const _APL = "AgentPreviewList";
|
|
478
|
+
const _AR = "AssessmentRun";
|
|
479
|
+
const _ARA = "AssessmentRunAgent";
|
|
480
|
+
const _ARAL = "AssessmentRunAgentList";
|
|
481
|
+
const _ARF = "AssessmentRunFilter";
|
|
482
|
+
const _ARIPE = "AssessmentRunInProgressException";
|
|
483
|
+
const _ARL = "AssessmentRunList";
|
|
484
|
+
const _ARN = "AssessmentRunNotification";
|
|
485
|
+
const _ARNL = "AssessmentRunNotificationList";
|
|
486
|
+
const _ARSC = "AssessmentRunStateChange";
|
|
487
|
+
const _ARSCL = "AssessmentRunStateChangeList";
|
|
488
|
+
const _AT = "AssessmentTarget";
|
|
489
|
+
const _ATF = "AssessmentTargetFilter";
|
|
490
|
+
const _ATFs = "AssessmentTemplateFilter";
|
|
491
|
+
const _ATL = "AssessmentTargetList";
|
|
492
|
+
const _ATLs = "AssessmentTemplateList";
|
|
493
|
+
const _ATs = "AssessmentTemplate";
|
|
494
|
+
const _CAT = "CreateAssessmentTarget";
|
|
495
|
+
const _CATR = "CreateAssessmentTargetRequest";
|
|
496
|
+
const _CATRr = "CreateAssessmentTargetResponse";
|
|
497
|
+
const _CATRre = "CreateAssessmentTemplateRequest";
|
|
498
|
+
const _CATRrea = "CreateAssessmentTemplateResponse";
|
|
499
|
+
const _CATr = "CreateAssessmentTemplate";
|
|
500
|
+
const _CEP = "CreateExclusionsPreview";
|
|
501
|
+
const _CEPR = "CreateExclusionsPreviewRequest";
|
|
502
|
+
const _CEPRr = "CreateExclusionsPreviewResponse";
|
|
503
|
+
const _CRG = "CreateResourceGroup";
|
|
504
|
+
const _CRGR = "CreateResourceGroupRequest";
|
|
505
|
+
const _CRGRr = "CreateResourceGroupResponse";
|
|
506
|
+
const _DAR = "DeleteAssessmentRun";
|
|
507
|
+
const _DARR = "DeleteAssessmentRunRequest";
|
|
508
|
+
const _DARRe = "DescribeAssessmentRunsRequest";
|
|
509
|
+
const _DARRes = "DescribeAssessmentRunsResponse";
|
|
510
|
+
const _DARe = "DescribeAssessmentRuns";
|
|
511
|
+
const _DAT = "DeleteAssessmentTarget";
|
|
512
|
+
const _DATR = "DeleteAssessmentTargetRequest";
|
|
513
|
+
const _DATRe = "DeleteAssessmentTemplateRequest";
|
|
514
|
+
const _DATRes = "DescribeAssessmentTargetsRequest";
|
|
515
|
+
const _DATResc = "DescribeAssessmentTargetsResponse";
|
|
516
|
+
const _DATRescr = "DescribeAssessmentTemplatesRequest";
|
|
517
|
+
const _DATRescri = "DescribeAssessmentTemplatesResponse";
|
|
518
|
+
const _DATe = "DeleteAssessmentTemplate";
|
|
519
|
+
const _DATes = "DescribeAssessmentTargets";
|
|
520
|
+
const _DATesc = "DescribeAssessmentTemplates";
|
|
521
|
+
const _DCAAR = "DescribeCrossAccountAccessRole";
|
|
522
|
+
const _DCAARR = "DescribeCrossAccountAccessRoleResponse";
|
|
523
|
+
const _DE = "DescribeExclusions";
|
|
524
|
+
const _DER = "DescribeExclusionsRequest";
|
|
525
|
+
const _DERe = "DescribeExclusionsResponse";
|
|
526
|
+
const _DF = "DescribeFindings";
|
|
527
|
+
const _DFR = "DescribeFindingsRequest";
|
|
528
|
+
const _DFRe = "DescribeFindingsResponse";
|
|
529
|
+
const _DR = "DurationRange";
|
|
530
|
+
const _DRG = "DescribeResourceGroups";
|
|
531
|
+
const _DRGR = "DescribeResourceGroupsRequest";
|
|
532
|
+
const _DRGRe = "DescribeResourceGroupsResponse";
|
|
533
|
+
const _DRP = "DescribeRulesPackages";
|
|
534
|
+
const _DRPR = "DescribeRulesPackagesRequest";
|
|
535
|
+
const _DRPRe = "DescribeRulesPackagesResponse";
|
|
536
|
+
const _E = "Exclusion";
|
|
537
|
+
const _EM = "ExclusionMap";
|
|
538
|
+
const _EP = "ExclusionPreview";
|
|
539
|
+
const _EPL = "ExclusionPreviewList";
|
|
540
|
+
const _ES = "EventSubscription";
|
|
541
|
+
const _ESL = "EventSubscriptionList";
|
|
542
|
+
const _F = "Finding";
|
|
543
|
+
const _FF = "FindingFilter";
|
|
544
|
+
const _FI = "FailedItems";
|
|
545
|
+
const _FID = "FailedItemDetails";
|
|
546
|
+
const _FL = "FindingList";
|
|
547
|
+
const _GAR = "GetAssessmentReport";
|
|
548
|
+
const _GARR = "GetAssessmentReportRequest";
|
|
549
|
+
const _GARRe = "GetAssessmentReportResponse";
|
|
550
|
+
const _GEP = "GetExclusionsPreview";
|
|
551
|
+
const _GEPR = "GetExclusionsPreviewRequest";
|
|
552
|
+
const _GEPRe = "GetExclusionsPreviewResponse";
|
|
553
|
+
const _GTM = "GetTelemetryMetadata";
|
|
554
|
+
const _GTMR = "GetTelemetryMetadataRequest";
|
|
555
|
+
const _GTMRe = "GetTelemetryMetadataResponse";
|
|
556
|
+
const _ICARE = "InvalidCrossAccountRoleException";
|
|
557
|
+
const _IE = "InternalException";
|
|
558
|
+
const _IIE = "InvalidInputException";
|
|
559
|
+
const _ISA = "InspectorServiceAttributes";
|
|
560
|
+
const _LAR = "ListAssessmentRuns";
|
|
561
|
+
const _LARA = "ListAssessmentRunAgents";
|
|
562
|
+
const _LARAR = "ListAssessmentRunAgentsRequest";
|
|
563
|
+
const _LARARi = "ListAssessmentRunAgentsResponse";
|
|
564
|
+
const _LARR = "ListAssessmentRunsRequest";
|
|
565
|
+
const _LARRi = "ListAssessmentRunsResponse";
|
|
566
|
+
const _LAT = "ListAssessmentTargets";
|
|
567
|
+
const _LATR = "ListAssessmentTargetsRequest";
|
|
568
|
+
const _LATRi = "ListAssessmentTargetsResponse";
|
|
569
|
+
const _LATRis = "ListAssessmentTemplatesRequest";
|
|
570
|
+
const _LATRist = "ListAssessmentTemplatesResponse";
|
|
571
|
+
const _LATi = "ListAssessmentTemplates";
|
|
572
|
+
const _LE = "ListExclusions";
|
|
573
|
+
const _LEE = "LimitExceededException";
|
|
574
|
+
const _LER = "ListExclusionsRequest";
|
|
575
|
+
const _LERi = "ListExclusionsResponse";
|
|
576
|
+
const _LES = "ListEventSubscriptions";
|
|
577
|
+
const _LESR = "ListEventSubscriptionsRequest";
|
|
578
|
+
const _LESRi = "ListEventSubscriptionsResponse";
|
|
579
|
+
const _LF = "ListFindings";
|
|
580
|
+
const _LFR = "ListFindingsRequest";
|
|
581
|
+
const _LFRi = "ListFindingsResponse";
|
|
582
|
+
const _LRP = "ListRulesPackages";
|
|
583
|
+
const _LRPR = "ListRulesPackagesRequest";
|
|
584
|
+
const _LRPRi = "ListRulesPackagesResponse";
|
|
585
|
+
const _LTFR = "ListTagsForResource";
|
|
586
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
587
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
588
|
+
const _NI = "NetworkInterface";
|
|
589
|
+
const _NIe = "NetworkInterfaces";
|
|
590
|
+
const _NSEE = "NoSuchEntityException";
|
|
591
|
+
const _PA = "PreviewAgents";
|
|
592
|
+
const _PAR = "PreviewAgentsRequest";
|
|
593
|
+
const _PARr = "PreviewAgentsResponse";
|
|
594
|
+
const _PGIPE = "PreviewGenerationInProgressException";
|
|
595
|
+
const _PI = "PrivateIp";
|
|
596
|
+
const _PIA = "PrivateIpAddresses";
|
|
597
|
+
const _RAFF = "RemoveAttributesFromFindings";
|
|
598
|
+
const _RAFFR = "RemoveAttributesFromFindingsRequest";
|
|
599
|
+
const _RAFFRe = "RemoveAttributesFromFindingsResponse";
|
|
600
|
+
const _RCAAR = "RegisterCrossAccountAccessRole";
|
|
601
|
+
const _RCAARR = "RegisterCrossAccountAccessRoleRequest";
|
|
602
|
+
const _RG = "ResourceGroup";
|
|
603
|
+
const _RGL = "ResourceGroupList";
|
|
604
|
+
const _RGT = "ResourceGroupTag";
|
|
605
|
+
const _RGTe = "ResourceGroupTags";
|
|
606
|
+
const _RP = "RulesPackage";
|
|
607
|
+
const _RPL = "RulesPackageList";
|
|
608
|
+
const _S = "Scope";
|
|
609
|
+
const _SAR = "StartAssessmentRun";
|
|
610
|
+
const _SARR = "StartAssessmentRunRequest";
|
|
611
|
+
const _SARRt = "StartAssessmentRunResponse";
|
|
612
|
+
const _SARRto = "StopAssessmentRunRequest";
|
|
613
|
+
const _SARt = "StopAssessmentRun";
|
|
614
|
+
const _SG = "SecurityGroup";
|
|
615
|
+
const _SGe = "SecurityGroups";
|
|
616
|
+
const _SL = "ScopeList";
|
|
617
|
+
const _SLu = "SubscriptionList";
|
|
618
|
+
const _STE = "SubscribeToEvent";
|
|
619
|
+
const _STER = "SubscribeToEventRequest";
|
|
620
|
+
const _STFR = "SetTagsForResource";
|
|
621
|
+
const _STFRR = "SetTagsForResourceRequest";
|
|
622
|
+
const _STUE = "ServiceTemporarilyUnavailableException";
|
|
623
|
+
const _Su = "Subscription";
|
|
624
|
+
const _T = "Tag";
|
|
625
|
+
const _TL = "TagList";
|
|
626
|
+
const _TM = "TelemetryMetadata";
|
|
627
|
+
const _TML = "TelemetryMetadataList";
|
|
628
|
+
const _TR = "TimestampRange";
|
|
629
|
+
const _Ta = "Tags";
|
|
630
|
+
const _UAL = "UserAttributeList";
|
|
631
|
+
const _UAT = "UpdateAssessmentTarget";
|
|
632
|
+
const _UATR = "UpdateAssessmentTargetRequest";
|
|
633
|
+
const _UFE = "UnsupportedFeatureException";
|
|
634
|
+
const _UFER = "UnsubscribeFromEventRequest";
|
|
635
|
+
const _UFEn = "UnsubscribeFromEvent";
|
|
636
|
+
const _a = "attributes";
|
|
637
|
+
const _aA = "assetAttributes";
|
|
638
|
+
const _aH = "agentHealths";
|
|
639
|
+
const _aHC = "agentHealthCodes";
|
|
640
|
+
const _aHCg = "agentHealthCode";
|
|
641
|
+
const _aHD = "agentHealthDetails";
|
|
642
|
+
const _aHg = "agentHealth";
|
|
643
|
+
const _aI = "agentId";
|
|
644
|
+
const _aIg = "agentIds";
|
|
645
|
+
const _aIm = "amiId";
|
|
646
|
+
const _aK = "attributeKeys";
|
|
647
|
+
const _aP = "agentPreviews";
|
|
648
|
+
const _aR = "assessmentRuns";
|
|
649
|
+
const _aRA = "assessmentRunArn";
|
|
650
|
+
const _aRAT = "assessmentRunArnsTruncated";
|
|
651
|
+
const _aRAs = "assessmentRunArns";
|
|
652
|
+
const _aRAss = "assessmentRunAgents";
|
|
653
|
+
const _aRC = "assessmentRunCount";
|
|
654
|
+
const _aRN = "assessmentRunName";
|
|
655
|
+
const _aSG = "autoScalingGroup";
|
|
656
|
+
const _aSGu = "autoScalingGroups";
|
|
657
|
+
const _aT = "agentsTruncated";
|
|
658
|
+
const _aTA = "assessmentTemplateArn";
|
|
659
|
+
const _aTAs = "assessmentTargetArn";
|
|
660
|
+
const _aTAss = "assessmentTargetArns";
|
|
661
|
+
const _aTAsse = "assessmentTemplateArns";
|
|
662
|
+
const _aTN = "assessmentTargetName";
|
|
663
|
+
const _aTNP = "assessmentTargetNamePattern";
|
|
664
|
+
const _aTNs = "assessmentTemplateName";
|
|
665
|
+
const _aTs = "assessmentTargets";
|
|
666
|
+
const _aTss = "assessmentTemplates";
|
|
667
|
+
const _aTsse = "assetType";
|
|
668
|
+
const _aV = "agentVersion";
|
|
669
|
+
const _ag = "agents";
|
|
670
|
+
const _ar = "arn";
|
|
671
|
+
const _bD = "beginDate";
|
|
672
|
+
const _c = "client";
|
|
673
|
+
const _cA = "createdAt";
|
|
674
|
+
const _cAo = "completedAt";
|
|
675
|
+
const _cR = "canRetry";
|
|
676
|
+
const _cTR = "completionTimeRange";
|
|
677
|
+
const _cTRr = "creationTimeRange";
|
|
678
|
+
const _co = "confidence";
|
|
679
|
+
const _cou = "count";
|
|
680
|
+
const _d = "date";
|
|
681
|
+
const _dC = "dataCollected";
|
|
682
|
+
const _dIS = "durationInSeconds";
|
|
683
|
+
const _dR = "durationRange";
|
|
684
|
+
const _dS = "dataSize";
|
|
685
|
+
const _de = "description";
|
|
686
|
+
const _e = "error";
|
|
687
|
+
const _eA = "exclusionArns";
|
|
688
|
+
const _eC = "errorCode";
|
|
689
|
+
const _eD = "endDate";
|
|
690
|
+
const _eP = "exclusionPreviews";
|
|
691
|
+
const _eS = "eventSubscriptions";
|
|
692
|
+
const _ev = "event";
|
|
693
|
+
const _ex = "exclusions";
|
|
694
|
+
const _f = "findings";
|
|
695
|
+
const _fA = "findingArns";
|
|
696
|
+
const _fC = "findingCounts";
|
|
697
|
+
const _fCa = "failureCode";
|
|
698
|
+
const _fI = "failedItems";
|
|
699
|
+
const _fi = "filter";
|
|
700
|
+
const _gI = "groupId";
|
|
701
|
+
const _gN = "groupName";
|
|
702
|
+
const _h = "hostname";
|
|
703
|
+
const _hE = "httpError";
|
|
704
|
+
const _i = "id";
|
|
705
|
+
const _iA = "ipv4Address";
|
|
706
|
+
const _iAp = "ipv4Addresses";
|
|
707
|
+
const _iApv = "ipv6Addresses";
|
|
708
|
+
const _iOC = "indicatorOfCompromise";
|
|
709
|
+
const _k = "key";
|
|
710
|
+
const _kV = "kernelVersion";
|
|
711
|
+
const _l = "locale";
|
|
712
|
+
const _lARA = "lastAssessmentRunArn";
|
|
713
|
+
const _m = "message";
|
|
714
|
+
const _mR = "maxResults";
|
|
715
|
+
const _mS = "minSeconds";
|
|
716
|
+
const _mSa = "maxSeconds";
|
|
717
|
+
const _mT = "messageType";
|
|
718
|
+
const _n = "name";
|
|
719
|
+
const _nI = "networkInterfaces";
|
|
720
|
+
const _nII = "networkInterfaceId";
|
|
721
|
+
const _nP = "namePattern";
|
|
722
|
+
const _nS = "numericSeverity";
|
|
723
|
+
const _nT = "nextToken";
|
|
724
|
+
const _no = "notifications";
|
|
725
|
+
const _oS = "operatingSystem";
|
|
726
|
+
const _p = "provider";
|
|
727
|
+
const _pAA = "previewAgentsArn";
|
|
728
|
+
const _pDN = "privateDnsName";
|
|
729
|
+
const _pDNu = "publicDnsName";
|
|
730
|
+
const _pI = "publicIp";
|
|
731
|
+
const _pIA = "privateIpAddress";
|
|
732
|
+
const _pIAr = "privateIpAddresses";
|
|
733
|
+
const _pS = "previewStatus";
|
|
734
|
+
const _pT = "previewToken";
|
|
735
|
+
const _r = "recommendation";
|
|
736
|
+
const _rA = "roleArn";
|
|
737
|
+
const _rAe = "registeredAt";
|
|
738
|
+
const _rAes = "resourceArn";
|
|
739
|
+
const _rFF = "reportFileFormat";
|
|
740
|
+
const _rG = "resourceGroups";
|
|
741
|
+
const _rGA = "resourceGroupArn";
|
|
742
|
+
const _rGAe = "resourceGroupArns";
|
|
743
|
+
const _rGT = "resourceGroupTags";
|
|
744
|
+
const _rN = "ruleNames";
|
|
745
|
+
const _rP = "rulesPackages";
|
|
746
|
+
const _rPA = "rulesPackageArns";
|
|
747
|
+
const _rPAu = "rulesPackageArn";
|
|
748
|
+
const _rT = "reportType";
|
|
749
|
+
const _re = "retryable";
|
|
750
|
+
const _s = "state";
|
|
751
|
+
const _sA = "startedAt";
|
|
752
|
+
const _sAe = "serviceAttributes";
|
|
753
|
+
const _sAt = "stopAction";
|
|
754
|
+
const _sAu = "subscribedAt";
|
|
755
|
+
const _sC = "stateChanges";
|
|
756
|
+
const _sCA = "stateChangedAt";
|
|
757
|
+
const _sCTR = "stateChangeTimeRange";
|
|
758
|
+
const _sG = "securityGroups";
|
|
759
|
+
const _sI = "subnetId";
|
|
760
|
+
const _sPSC = "snsPublishStatusCode";
|
|
761
|
+
const _sTA = "snsTopicArn";
|
|
762
|
+
const _sTR = "startTimeRange";
|
|
763
|
+
const _sV = "schemaVersion";
|
|
764
|
+
const _sc = "scopes";
|
|
765
|
+
const _se = "service";
|
|
766
|
+
const _ser = "server";
|
|
767
|
+
const _sev = "severity";
|
|
768
|
+
const _seve = "severities";
|
|
769
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.inspector";
|
|
770
|
+
const _st = "states";
|
|
771
|
+
const _sta = "status";
|
|
772
|
+
const _su = "subscriptions";
|
|
773
|
+
const _t = "tags";
|
|
774
|
+
const _tA = "topicArn";
|
|
775
|
+
const _tM = "telemetryMetadata";
|
|
776
|
+
const _ti = "title";
|
|
777
|
+
const _u = "url";
|
|
778
|
+
const _uA = "updatedAt";
|
|
779
|
+
const _uAFF = "userAttributesForFindings";
|
|
780
|
+
const _uAs = "userAttributes";
|
|
781
|
+
const _v = "value";
|
|
782
|
+
const _vI = "vpcId";
|
|
783
|
+
const _va = "valid";
|
|
784
|
+
const _ve = "version";
|
|
785
|
+
const n0 = "com.amazonaws.inspector";
|
|
786
|
+
var AccessDeniedException = [
|
|
787
|
+
-3,
|
|
788
|
+
n0,
|
|
789
|
+
_ADE,
|
|
790
|
+
{
|
|
791
|
+
[_e]: _c,
|
|
792
|
+
[_hE]: 403,
|
|
793
|
+
},
|
|
794
|
+
[_m, _eC, _cR],
|
|
795
|
+
[0, 0, 2],
|
|
796
|
+
];
|
|
797
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
798
|
+
var AddAttributesToFindingsRequest = [
|
|
799
|
+
3,
|
|
800
|
+
n0,
|
|
801
|
+
_AATFR,
|
|
802
|
+
0,
|
|
803
|
+
[_fA, _a],
|
|
804
|
+
[64 | 0, () => UserAttributeList],
|
|
805
|
+
];
|
|
806
|
+
var AddAttributesToFindingsResponse = [3, n0, _AATFRd, 0, [_fI], [() => FailedItems]];
|
|
807
|
+
var AgentAlreadyRunningAssessment = [3, n0, _AARA, 0, [_aI, _aRA], [0, 0]];
|
|
808
|
+
var AgentFilter = [3, n0, _AF, 0, [_aH, _aHC], [64 | 0, 64 | 0]];
|
|
809
|
+
var AgentPreview = [
|
|
810
|
+
3,
|
|
811
|
+
n0,
|
|
812
|
+
_AP,
|
|
813
|
+
0,
|
|
814
|
+
[_h, _aI, _aSG, _aHg, _aV, _oS, _kV, _iA],
|
|
815
|
+
[0, 0, 0, 0, 0, 0, 0, 0],
|
|
816
|
+
];
|
|
817
|
+
var AgentsAlreadyRunningAssessmentException = [
|
|
818
|
+
-3,
|
|
819
|
+
n0,
|
|
820
|
+
_AARAE,
|
|
821
|
+
{
|
|
822
|
+
[_e]: _c,
|
|
823
|
+
},
|
|
824
|
+
[_m, _ag, _aT, _cR],
|
|
825
|
+
[0, () => AgentAlreadyRunningAssessmentList, 2, 2],
|
|
826
|
+
];
|
|
827
|
+
schema.TypeRegistry.for(n0).registerError(AgentsAlreadyRunningAssessmentException, AgentsAlreadyRunningAssessmentException$1);
|
|
828
|
+
var AssessmentRun = [
|
|
829
|
+
3,
|
|
830
|
+
n0,
|
|
831
|
+
_AR,
|
|
832
|
+
0,
|
|
833
|
+
[_ar, _n, _aTA, _s, _dIS, _rPA, _uAFF, _cA, _sA, _cAo, _sCA, _dC, _sC, _no, _fC],
|
|
834
|
+
[
|
|
835
|
+
0,
|
|
836
|
+
0,
|
|
837
|
+
0,
|
|
838
|
+
0,
|
|
839
|
+
1,
|
|
840
|
+
64 | 0,
|
|
841
|
+
() => UserAttributeList,
|
|
842
|
+
4,
|
|
843
|
+
4,
|
|
844
|
+
4,
|
|
845
|
+
4,
|
|
846
|
+
2,
|
|
847
|
+
() => AssessmentRunStateChangeList,
|
|
848
|
+
() => AssessmentRunNotificationList,
|
|
849
|
+
128 | 1,
|
|
850
|
+
],
|
|
851
|
+
];
|
|
852
|
+
var AssessmentRunAgent = [
|
|
853
|
+
3,
|
|
854
|
+
n0,
|
|
855
|
+
_ARA,
|
|
856
|
+
0,
|
|
857
|
+
[_aI, _aRA, _aHg, _aHCg, _aHD, _aSG, _tM],
|
|
858
|
+
[0, 0, 0, 0, 0, 0, () => TelemetryMetadataList],
|
|
859
|
+
];
|
|
860
|
+
var AssessmentRunFilter = [
|
|
861
|
+
3,
|
|
862
|
+
n0,
|
|
863
|
+
_ARF,
|
|
864
|
+
0,
|
|
865
|
+
[_nP, _st, _dR, _rPA, _sTR, _cTR, _sCTR],
|
|
866
|
+
[0, 64 | 0, () => DurationRange, 64 | 0, () => TimestampRange, () => TimestampRange, () => TimestampRange],
|
|
867
|
+
];
|
|
868
|
+
var AssessmentRunInProgressException = [
|
|
869
|
+
-3,
|
|
870
|
+
n0,
|
|
871
|
+
_ARIPE,
|
|
872
|
+
{
|
|
873
|
+
[_e]: _c,
|
|
874
|
+
},
|
|
875
|
+
[_m, _aRAs, _aRAT, _cR],
|
|
876
|
+
[0, 64 | 0, 2, 2],
|
|
877
|
+
];
|
|
878
|
+
schema.TypeRegistry.for(n0).registerError(AssessmentRunInProgressException, AssessmentRunInProgressException$1);
|
|
879
|
+
var AssessmentRunNotification = [
|
|
880
|
+
3,
|
|
881
|
+
n0,
|
|
882
|
+
_ARN,
|
|
883
|
+
0,
|
|
884
|
+
[_d, _ev, _m, _e, _sTA, _sPSC],
|
|
885
|
+
[4, 0, 0, 2, 0, 0],
|
|
886
|
+
];
|
|
887
|
+
var AssessmentRunStateChange = [3, n0, _ARSC, 0, [_sCA, _s], [4, 0]];
|
|
888
|
+
var AssessmentTarget = [3, n0, _AT, 0, [_ar, _n, _rGA, _cA, _uA], [0, 0, 0, 4, 4]];
|
|
889
|
+
var AssessmentTargetFilter = [3, n0, _ATF, 0, [_aTNP], [0]];
|
|
890
|
+
var AssessmentTemplate = [
|
|
891
|
+
3,
|
|
892
|
+
n0,
|
|
893
|
+
_ATs,
|
|
894
|
+
0,
|
|
895
|
+
[_ar, _n, _aTAs, _dIS, _rPA, _uAFF, _lARA, _aRC, _cA],
|
|
896
|
+
[0, 0, 0, 1, 64 | 0, () => UserAttributeList, 0, 1, 4],
|
|
897
|
+
];
|
|
898
|
+
var AssessmentTemplateFilter = [
|
|
899
|
+
3,
|
|
900
|
+
n0,
|
|
901
|
+
_ATFs,
|
|
902
|
+
0,
|
|
903
|
+
[_nP, _dR, _rPA],
|
|
904
|
+
[0, () => DurationRange, 64 | 0],
|
|
905
|
+
];
|
|
906
|
+
var AssetAttributes = [
|
|
907
|
+
3,
|
|
908
|
+
n0,
|
|
909
|
+
_AA,
|
|
910
|
+
0,
|
|
911
|
+
[_sV, _aI, _aSG, _aIm, _h, _iAp, _t, _nI],
|
|
912
|
+
[1, 0, 0, 0, 0, 64 | 0, () => Tags, () => NetworkInterfaces],
|
|
913
|
+
];
|
|
914
|
+
var Attribute = [3, n0, _A, 0, [_k, _v], [0, 0]];
|
|
915
|
+
var CreateAssessmentTargetRequest = [3, n0, _CATR, 0, [_aTN, _rGA], [0, 0]];
|
|
916
|
+
var CreateAssessmentTargetResponse = [3, n0, _CATRr, 0, [_aTAs], [0]];
|
|
917
|
+
var CreateAssessmentTemplateRequest = [
|
|
918
|
+
3,
|
|
919
|
+
n0,
|
|
920
|
+
_CATRre,
|
|
921
|
+
0,
|
|
922
|
+
[_aTAs, _aTNs, _dIS, _rPA, _uAFF],
|
|
923
|
+
[0, 0, 1, 64 | 0, () => UserAttributeList],
|
|
924
|
+
];
|
|
925
|
+
var CreateAssessmentTemplateResponse = [3, n0, _CATRrea, 0, [_aTA], [0]];
|
|
926
|
+
var CreateExclusionsPreviewRequest = [3, n0, _CEPR, 0, [_aTA], [0]];
|
|
927
|
+
var CreateExclusionsPreviewResponse = [3, n0, _CEPRr, 0, [_pT], [0]];
|
|
928
|
+
var CreateResourceGroupRequest = [3, n0, _CRGR, 0, [_rGT], [() => ResourceGroupTags]];
|
|
929
|
+
var CreateResourceGroupResponse = [3, n0, _CRGRr, 0, [_rGA], [0]];
|
|
930
|
+
var DeleteAssessmentRunRequest = [3, n0, _DARR, 0, [_aRA], [0]];
|
|
931
|
+
var DeleteAssessmentTargetRequest = [3, n0, _DATR, 0, [_aTAs], [0]];
|
|
932
|
+
var DeleteAssessmentTemplateRequest = [3, n0, _DATRe, 0, [_aTA], [0]];
|
|
933
|
+
var DescribeAssessmentRunsRequest = [3, n0, _DARRe, 0, [_aRAs], [64 | 0]];
|
|
934
|
+
var DescribeAssessmentRunsResponse = [
|
|
935
|
+
3,
|
|
936
|
+
n0,
|
|
937
|
+
_DARRes,
|
|
938
|
+
0,
|
|
939
|
+
[_aR, _fI],
|
|
940
|
+
[() => AssessmentRunList, () => FailedItems],
|
|
941
|
+
];
|
|
942
|
+
var DescribeAssessmentTargetsRequest = [3, n0, _DATRes, 0, [_aTAss], [64 | 0]];
|
|
943
|
+
var DescribeAssessmentTargetsResponse = [
|
|
944
|
+
3,
|
|
945
|
+
n0,
|
|
946
|
+
_DATResc,
|
|
947
|
+
0,
|
|
948
|
+
[_aTs, _fI],
|
|
949
|
+
[() => AssessmentTargetList, () => FailedItems],
|
|
950
|
+
];
|
|
951
|
+
var DescribeAssessmentTemplatesRequest = [3, n0, _DATRescr, 0, [_aTAsse], [64 | 0]];
|
|
952
|
+
var DescribeAssessmentTemplatesResponse = [
|
|
953
|
+
3,
|
|
954
|
+
n0,
|
|
955
|
+
_DATRescri,
|
|
956
|
+
0,
|
|
957
|
+
[_aTss, _fI],
|
|
958
|
+
[() => AssessmentTemplateList, () => FailedItems],
|
|
959
|
+
];
|
|
960
|
+
var DescribeCrossAccountAccessRoleResponse = [
|
|
961
|
+
3,
|
|
962
|
+
n0,
|
|
963
|
+
_DCAARR,
|
|
964
|
+
0,
|
|
965
|
+
[_rA, _va, _rAe],
|
|
966
|
+
[0, 2, 4],
|
|
967
|
+
];
|
|
968
|
+
var DescribeExclusionsRequest = [3, n0, _DER, 0, [_eA, _l], [64 | 0, 0]];
|
|
969
|
+
var DescribeExclusionsResponse = [
|
|
970
|
+
3,
|
|
971
|
+
n0,
|
|
972
|
+
_DERe,
|
|
973
|
+
0,
|
|
974
|
+
[_ex, _fI],
|
|
975
|
+
[() => ExclusionMap, () => FailedItems],
|
|
976
|
+
];
|
|
977
|
+
var DescribeFindingsRequest = [3, n0, _DFR, 0, [_fA, _l], [64 | 0, 0]];
|
|
978
|
+
var DescribeFindingsResponse = [
|
|
979
|
+
3,
|
|
980
|
+
n0,
|
|
981
|
+
_DFRe,
|
|
982
|
+
0,
|
|
983
|
+
[_f, _fI],
|
|
984
|
+
[() => FindingList, () => FailedItems],
|
|
985
|
+
];
|
|
986
|
+
var DescribeResourceGroupsRequest = [3, n0, _DRGR, 0, [_rGAe], [64 | 0]];
|
|
987
|
+
var DescribeResourceGroupsResponse = [
|
|
988
|
+
3,
|
|
989
|
+
n0,
|
|
990
|
+
_DRGRe,
|
|
991
|
+
0,
|
|
992
|
+
[_rG, _fI],
|
|
993
|
+
[() => ResourceGroupList, () => FailedItems],
|
|
994
|
+
];
|
|
995
|
+
var DescribeRulesPackagesRequest = [3, n0, _DRPR, 0, [_rPA, _l], [64 | 0, 0]];
|
|
996
|
+
var DescribeRulesPackagesResponse = [
|
|
997
|
+
3,
|
|
998
|
+
n0,
|
|
999
|
+
_DRPRe,
|
|
1000
|
+
0,
|
|
1001
|
+
[_rP, _fI],
|
|
1002
|
+
[() => RulesPackageList, () => FailedItems],
|
|
1003
|
+
];
|
|
1004
|
+
var DurationRange = [3, n0, _DR, 0, [_mS, _mSa], [1, 1]];
|
|
1005
|
+
var EventSubscription = [3, n0, _ES, 0, [_ev, _sAu], [0, 4]];
|
|
1006
|
+
var Exclusion = [
|
|
1007
|
+
3,
|
|
1008
|
+
n0,
|
|
1009
|
+
_E,
|
|
1010
|
+
0,
|
|
1011
|
+
[_ar, _ti, _de, _r, _sc, _a],
|
|
1012
|
+
[0, 0, 0, 0, () => ScopeList, () => AttributeList],
|
|
1013
|
+
];
|
|
1014
|
+
var ExclusionPreview = [
|
|
1015
|
+
3,
|
|
1016
|
+
n0,
|
|
1017
|
+
_EP,
|
|
1018
|
+
0,
|
|
1019
|
+
[_ti, _de, _r, _sc, _a],
|
|
1020
|
+
[0, 0, 0, () => ScopeList, () => AttributeList],
|
|
1021
|
+
];
|
|
1022
|
+
var FailedItemDetails = [3, n0, _FID, 0, [_fCa, _re], [0, 2]];
|
|
1023
|
+
var Finding = [
|
|
1024
|
+
3,
|
|
1025
|
+
n0,
|
|
1026
|
+
_F,
|
|
1027
|
+
0,
|
|
1028
|
+
[_ar, _sV, _se, _sAe, _aTsse, _aA, _i, _ti, _de, _r, _sev, _nS, _co, _iOC, _a, _uAs, _cA, _uA],
|
|
1029
|
+
[
|
|
1030
|
+
0,
|
|
1031
|
+
1,
|
|
1032
|
+
0,
|
|
1033
|
+
() => InspectorServiceAttributes,
|
|
1034
|
+
0,
|
|
1035
|
+
() => AssetAttributes,
|
|
1036
|
+
0,
|
|
1037
|
+
0,
|
|
1038
|
+
0,
|
|
1039
|
+
0,
|
|
1040
|
+
0,
|
|
1041
|
+
1,
|
|
1042
|
+
1,
|
|
1043
|
+
2,
|
|
1044
|
+
() => AttributeList,
|
|
1045
|
+
() => UserAttributeList,
|
|
1046
|
+
4,
|
|
1047
|
+
4,
|
|
1048
|
+
],
|
|
1049
|
+
];
|
|
1050
|
+
var FindingFilter = [
|
|
1051
|
+
3,
|
|
1052
|
+
n0,
|
|
1053
|
+
_FF,
|
|
1054
|
+
0,
|
|
1055
|
+
[_aIg, _aSGu, _rN, _seve, _rPA, _a, _uAs, _cTRr],
|
|
1056
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => AttributeList, () => AttributeList, () => TimestampRange],
|
|
1057
|
+
];
|
|
1058
|
+
var GetAssessmentReportRequest = [3, n0, _GARR, 0, [_aRA, _rFF, _rT], [0, 0, 0]];
|
|
1059
|
+
var GetAssessmentReportResponse = [3, n0, _GARRe, 0, [_sta, _u], [0, 0]];
|
|
1060
|
+
var GetExclusionsPreviewRequest = [
|
|
1061
|
+
3,
|
|
1062
|
+
n0,
|
|
1063
|
+
_GEPR,
|
|
1064
|
+
0,
|
|
1065
|
+
[_aTA, _pT, _nT, _mR, _l],
|
|
1066
|
+
[0, 0, 0, 1, 0],
|
|
1067
|
+
];
|
|
1068
|
+
var GetExclusionsPreviewResponse = [
|
|
1069
|
+
3,
|
|
1070
|
+
n0,
|
|
1071
|
+
_GEPRe,
|
|
1072
|
+
0,
|
|
1073
|
+
[_pS, _eP, _nT],
|
|
1074
|
+
[0, () => ExclusionPreviewList, 0],
|
|
1075
|
+
];
|
|
1076
|
+
var GetTelemetryMetadataRequest = [3, n0, _GTMR, 0, [_aRA], [0]];
|
|
1077
|
+
var GetTelemetryMetadataResponse = [
|
|
1078
|
+
3,
|
|
1079
|
+
n0,
|
|
1080
|
+
_GTMRe,
|
|
1081
|
+
0,
|
|
1082
|
+
[_tM],
|
|
1083
|
+
[() => TelemetryMetadataList],
|
|
1084
|
+
];
|
|
1085
|
+
var InspectorServiceAttributes = [3, n0, _ISA, 0, [_sV, _aRA, _rPAu], [1, 0, 0]];
|
|
1086
|
+
var InternalException = [
|
|
1087
|
+
-3,
|
|
1088
|
+
n0,
|
|
1089
|
+
_IE,
|
|
1090
|
+
{
|
|
1091
|
+
[_e]: _ser,
|
|
1092
|
+
},
|
|
1093
|
+
[_m, _cR],
|
|
1094
|
+
[0, 2],
|
|
1095
|
+
];
|
|
1096
|
+
schema.TypeRegistry.for(n0).registerError(InternalException, InternalException$1);
|
|
1097
|
+
var InvalidCrossAccountRoleException = [
|
|
1098
|
+
-3,
|
|
1099
|
+
n0,
|
|
1100
|
+
_ICARE,
|
|
1101
|
+
{
|
|
1102
|
+
[_e]: _c,
|
|
1103
|
+
},
|
|
1104
|
+
[_m, _eC, _cR],
|
|
1105
|
+
[0, 0, 2],
|
|
1106
|
+
];
|
|
1107
|
+
schema.TypeRegistry.for(n0).registerError(InvalidCrossAccountRoleException, InvalidCrossAccountRoleException$1);
|
|
1108
|
+
var InvalidInputException = [
|
|
1109
|
+
-3,
|
|
1110
|
+
n0,
|
|
1111
|
+
_IIE,
|
|
1112
|
+
{
|
|
1113
|
+
[_e]: _c,
|
|
1114
|
+
},
|
|
1115
|
+
[_m, _eC, _cR],
|
|
1116
|
+
[0, 0, 2],
|
|
1117
|
+
];
|
|
1118
|
+
schema.TypeRegistry.for(n0).registerError(InvalidInputException, InvalidInputException$1);
|
|
1119
|
+
var LimitExceededException = [
|
|
1120
|
+
-3,
|
|
1121
|
+
n0,
|
|
1122
|
+
_LEE,
|
|
1123
|
+
{
|
|
1124
|
+
[_e]: _c,
|
|
1125
|
+
},
|
|
1126
|
+
[_m, _eC, _cR],
|
|
1127
|
+
[0, 0, 2],
|
|
1128
|
+
];
|
|
1129
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
|
|
1130
|
+
var ListAssessmentRunAgentsRequest = [
|
|
1131
|
+
3,
|
|
1132
|
+
n0,
|
|
1133
|
+
_LARAR,
|
|
1134
|
+
0,
|
|
1135
|
+
[_aRA, _fi, _nT, _mR],
|
|
1136
|
+
[0, () => AgentFilter, 0, 1],
|
|
1137
|
+
];
|
|
1138
|
+
var ListAssessmentRunAgentsResponse = [
|
|
1139
|
+
3,
|
|
1140
|
+
n0,
|
|
1141
|
+
_LARARi,
|
|
1142
|
+
0,
|
|
1143
|
+
[_aRAss, _nT],
|
|
1144
|
+
[() => AssessmentRunAgentList, 0],
|
|
1145
|
+
];
|
|
1146
|
+
var ListAssessmentRunsRequest = [
|
|
1147
|
+
3,
|
|
1148
|
+
n0,
|
|
1149
|
+
_LARR,
|
|
1150
|
+
0,
|
|
1151
|
+
[_aTAsse, _fi, _nT, _mR],
|
|
1152
|
+
[64 | 0, () => AssessmentRunFilter, 0, 1],
|
|
1153
|
+
];
|
|
1154
|
+
var ListAssessmentRunsResponse = [3, n0, _LARRi, 0, [_aRAs, _nT], [64 | 0, 0]];
|
|
1155
|
+
var ListAssessmentTargetsRequest = [
|
|
1156
|
+
3,
|
|
1157
|
+
n0,
|
|
1158
|
+
_LATR,
|
|
1159
|
+
0,
|
|
1160
|
+
[_fi, _nT, _mR],
|
|
1161
|
+
[() => AssessmentTargetFilter, 0, 1],
|
|
1162
|
+
];
|
|
1163
|
+
var ListAssessmentTargetsResponse = [3, n0, _LATRi, 0, [_aTAss, _nT], [64 | 0, 0]];
|
|
1164
|
+
var ListAssessmentTemplatesRequest = [
|
|
1165
|
+
3,
|
|
1166
|
+
n0,
|
|
1167
|
+
_LATRis,
|
|
1168
|
+
0,
|
|
1169
|
+
[_aTAss, _fi, _nT, _mR],
|
|
1170
|
+
[64 | 0, () => AssessmentTemplateFilter, 0, 1],
|
|
1171
|
+
];
|
|
1172
|
+
var ListAssessmentTemplatesResponse = [3, n0, _LATRist, 0, [_aTAsse, _nT], [64 | 0, 0]];
|
|
1173
|
+
var ListEventSubscriptionsRequest = [3, n0, _LESR, 0, [_rAes, _nT, _mR], [0, 0, 1]];
|
|
1174
|
+
var ListEventSubscriptionsResponse = [
|
|
1175
|
+
3,
|
|
1176
|
+
n0,
|
|
1177
|
+
_LESRi,
|
|
1178
|
+
0,
|
|
1179
|
+
[_su, _nT],
|
|
1180
|
+
[() => SubscriptionList, 0],
|
|
1181
|
+
];
|
|
1182
|
+
var ListExclusionsRequest = [3, n0, _LER, 0, [_aRA, _nT, _mR], [0, 0, 1]];
|
|
1183
|
+
var ListExclusionsResponse = [3, n0, _LERi, 0, [_eA, _nT], [64 | 0, 0]];
|
|
1184
|
+
var ListFindingsRequest = [
|
|
1185
|
+
3,
|
|
1186
|
+
n0,
|
|
1187
|
+
_LFR,
|
|
1188
|
+
0,
|
|
1189
|
+
[_aRAs, _fi, _nT, _mR],
|
|
1190
|
+
[64 | 0, () => FindingFilter, 0, 1],
|
|
1191
|
+
];
|
|
1192
|
+
var ListFindingsResponse = [3, n0, _LFRi, 0, [_fA, _nT], [64 | 0, 0]];
|
|
1193
|
+
var ListRulesPackagesRequest = [3, n0, _LRPR, 0, [_nT, _mR], [0, 1]];
|
|
1194
|
+
var ListRulesPackagesResponse = [3, n0, _LRPRi, 0, [_rPA, _nT], [64 | 0, 0]];
|
|
1195
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAes], [0]];
|
|
1196
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
1197
|
+
var NetworkInterface = [
|
|
1198
|
+
3,
|
|
1199
|
+
n0,
|
|
1200
|
+
_NI,
|
|
1201
|
+
0,
|
|
1202
|
+
[_nII, _sI, _vI, _pDN, _pIA, _pIAr, _pDNu, _pI, _iApv, _sG],
|
|
1203
|
+
[0, 0, 0, 0, 0, () => PrivateIpAddresses, 0, 0, 64 | 0, () => SecurityGroups],
|
|
1204
|
+
];
|
|
1205
|
+
var NoSuchEntityException = [
|
|
1206
|
+
-3,
|
|
1207
|
+
n0,
|
|
1208
|
+
_NSEE,
|
|
1209
|
+
{
|
|
1210
|
+
[_e]: _c,
|
|
1211
|
+
},
|
|
1212
|
+
[_m, _eC, _cR],
|
|
1213
|
+
[0, 0, 2],
|
|
1214
|
+
];
|
|
1215
|
+
schema.TypeRegistry.for(n0).registerError(NoSuchEntityException, NoSuchEntityException$1);
|
|
1216
|
+
var PreviewAgentsRequest = [3, n0, _PAR, 0, [_pAA, _nT, _mR], [0, 0, 1]];
|
|
1217
|
+
var PreviewAgentsResponse = [3, n0, _PARr, 0, [_aP, _nT], [() => AgentPreviewList, 0]];
|
|
1218
|
+
var PreviewGenerationInProgressException = [
|
|
1219
|
+
-3,
|
|
1220
|
+
n0,
|
|
1221
|
+
_PGIPE,
|
|
1222
|
+
{
|
|
1223
|
+
[_e]: _c,
|
|
1224
|
+
},
|
|
1225
|
+
[_m],
|
|
1226
|
+
[0],
|
|
1227
|
+
];
|
|
1228
|
+
schema.TypeRegistry.for(n0).registerError(PreviewGenerationInProgressException, PreviewGenerationInProgressException$1);
|
|
1229
|
+
var PrivateIp = [3, n0, _PI, 0, [_pDN, _pIA], [0, 0]];
|
|
1230
|
+
var RegisterCrossAccountAccessRoleRequest = [3, n0, _RCAARR, 0, [_rA], [0]];
|
|
1231
|
+
var RemoveAttributesFromFindingsRequest = [
|
|
1232
|
+
3,
|
|
1233
|
+
n0,
|
|
1234
|
+
_RAFFR,
|
|
1235
|
+
0,
|
|
1236
|
+
[_fA, _aK],
|
|
1237
|
+
[64 | 0, 64 | 0],
|
|
1238
|
+
];
|
|
1239
|
+
var RemoveAttributesFromFindingsResponse = [
|
|
1240
|
+
3,
|
|
1241
|
+
n0,
|
|
1242
|
+
_RAFFRe,
|
|
1243
|
+
0,
|
|
1244
|
+
[_fI],
|
|
1245
|
+
[() => FailedItems],
|
|
1246
|
+
];
|
|
1247
|
+
var ResourceGroup = [3, n0, _RG, 0, [_ar, _t, _cA], [0, () => ResourceGroupTags, 4]];
|
|
1248
|
+
var ResourceGroupTag = [3, n0, _RGT, 0, [_k, _v], [0, 0]];
|
|
1249
|
+
var RulesPackage = [3, n0, _RP, 0, [_ar, _n, _ve, _p, _de], [0, 0, 0, 0, 0]];
|
|
1250
|
+
var Scope = [3, n0, _S, 0, [_k, _v], [0, 0]];
|
|
1251
|
+
var SecurityGroup = [3, n0, _SG, 0, [_gN, _gI], [0, 0]];
|
|
1252
|
+
var ServiceTemporarilyUnavailableException = [
|
|
1253
|
+
-3,
|
|
1254
|
+
n0,
|
|
1255
|
+
_STUE,
|
|
1256
|
+
{
|
|
1257
|
+
[_e]: _ser,
|
|
1258
|
+
[_hE]: 503,
|
|
1259
|
+
},
|
|
1260
|
+
[_m, _cR],
|
|
1261
|
+
[0, 2],
|
|
1262
|
+
];
|
|
1263
|
+
schema.TypeRegistry.for(n0).registerError(ServiceTemporarilyUnavailableException, ServiceTemporarilyUnavailableException$1);
|
|
1264
|
+
var SetTagsForResourceRequest = [3, n0, _STFRR, 0, [_rAes, _t], [0, () => TagList]];
|
|
1265
|
+
var StartAssessmentRunRequest = [3, n0, _SARR, 0, [_aTA, _aRN], [0, 0]];
|
|
1266
|
+
var StartAssessmentRunResponse = [3, n0, _SARRt, 0, [_aRA], [0]];
|
|
1267
|
+
var StopAssessmentRunRequest = [3, n0, _SARRto, 0, [_aRA, _sAt], [0, 0]];
|
|
1268
|
+
var SubscribeToEventRequest = [3, n0, _STER, 0, [_rAes, _ev, _tA], [0, 0, 0]];
|
|
1269
|
+
var Subscription = [
|
|
1270
|
+
3,
|
|
1271
|
+
n0,
|
|
1272
|
+
_Su,
|
|
1273
|
+
0,
|
|
1274
|
+
[_rAes, _tA, _eS],
|
|
1275
|
+
[0, 0, () => EventSubscriptionList],
|
|
1276
|
+
];
|
|
1277
|
+
var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
1278
|
+
var TelemetryMetadata = [3, n0, _TM, 0, [_mT, _cou, _dS], [0, 1, 1]];
|
|
1279
|
+
var TimestampRange = [3, n0, _TR, 0, [_bD, _eD], [4, 4]];
|
|
1280
|
+
var UnsubscribeFromEventRequest = [3, n0, _UFER, 0, [_rAes, _ev, _tA], [0, 0, 0]];
|
|
1281
|
+
var UnsupportedFeatureException = [
|
|
1282
|
+
-3,
|
|
1283
|
+
n0,
|
|
1284
|
+
_UFE,
|
|
1285
|
+
{
|
|
1286
|
+
[_e]: _c,
|
|
1287
|
+
},
|
|
1288
|
+
[_m, _cR],
|
|
1289
|
+
[0, 2],
|
|
1290
|
+
];
|
|
1291
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedFeatureException, UnsupportedFeatureException$1);
|
|
1292
|
+
var UpdateAssessmentTargetRequest = [3, n0, _UATR, 0, [_aTAs, _aTN, _rGA], [0, 0, 0]];
|
|
1293
|
+
var __Unit = "unit";
|
|
1294
|
+
var InspectorServiceException = [-3, _sm, "InspectorServiceException", 0, [], []];
|
|
1295
|
+
schema.TypeRegistry.for(_sm).registerError(InspectorServiceException, InspectorServiceException$1);
|
|
1296
|
+
var AgentAlreadyRunningAssessmentList = [
|
|
1297
|
+
1,
|
|
1298
|
+
n0,
|
|
1299
|
+
_AARAL,
|
|
1300
|
+
0,
|
|
1301
|
+
() => AgentAlreadyRunningAssessment,
|
|
1302
|
+
];
|
|
1303
|
+
var AgentPreviewList = [1, n0, _APL, 0, () => AgentPreview];
|
|
1304
|
+
var AssessmentRunAgentList = [1, n0, _ARAL, 0, () => AssessmentRunAgent];
|
|
1305
|
+
var AssessmentRunList = [1, n0, _ARL, 0, () => AssessmentRun];
|
|
1306
|
+
var AssessmentRunNotificationList = [1, n0, _ARNL, 0, () => AssessmentRunNotification];
|
|
1307
|
+
var AssessmentRunStateChangeList = [1, n0, _ARSCL, 0, () => AssessmentRunStateChange];
|
|
1308
|
+
var AssessmentTargetList = [1, n0, _ATL, 0, () => AssessmentTarget];
|
|
1309
|
+
var AssessmentTemplateList = [1, n0, _ATLs, 0, () => AssessmentTemplate];
|
|
1310
|
+
var AttributeList = [1, n0, _AL, 0, () => Attribute];
|
|
1311
|
+
var EventSubscriptionList = [1, n0, _ESL, 0, () => EventSubscription];
|
|
1312
|
+
var ExclusionPreviewList = [1, n0, _EPL, 0, () => ExclusionPreview];
|
|
1313
|
+
var FindingList = [1, n0, _FL, 0, () => Finding];
|
|
1314
|
+
var NetworkInterfaces = [1, n0, _NIe, 0, () => NetworkInterface];
|
|
1315
|
+
var PrivateIpAddresses = [1, n0, _PIA, 0, () => PrivateIp];
|
|
1316
|
+
var ResourceGroupList = [1, n0, _RGL, 0, () => ResourceGroup];
|
|
1317
|
+
var ResourceGroupTags = [1, n0, _RGTe, 0, () => ResourceGroupTag];
|
|
1318
|
+
var RulesPackageList = [1, n0, _RPL, 0, () => RulesPackage];
|
|
1319
|
+
var ScopeList = [1, n0, _SL, 0, () => Scope];
|
|
1320
|
+
var SecurityGroups = [1, n0, _SGe, 0, () => SecurityGroup];
|
|
1321
|
+
var SubscriptionList = [1, n0, _SLu, 0, () => Subscription];
|
|
1322
|
+
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1323
|
+
var Tags = [1, n0, _Ta, 0, () => Tag];
|
|
1324
|
+
var TelemetryMetadataList = [1, n0, _TML, 0, () => TelemetryMetadata];
|
|
1325
|
+
var UserAttributeList = [1, n0, _UAL, 0, () => Attribute];
|
|
1326
|
+
var ExclusionMap = [2, n0, _EM, 0, 0, () => Exclusion];
|
|
1327
|
+
var FailedItems = [2, n0, _FI, 0, 0, () => FailedItemDetails];
|
|
1328
|
+
var AddAttributesToFindings = [
|
|
1329
|
+
9,
|
|
1330
|
+
n0,
|
|
1331
|
+
_AATF,
|
|
1332
|
+
0,
|
|
1333
|
+
() => AddAttributesToFindingsRequest,
|
|
1334
|
+
() => AddAttributesToFindingsResponse,
|
|
1335
|
+
];
|
|
1336
|
+
var CreateAssessmentTarget = [
|
|
1337
|
+
9,
|
|
1338
|
+
n0,
|
|
1339
|
+
_CAT,
|
|
1340
|
+
0,
|
|
1341
|
+
() => CreateAssessmentTargetRequest,
|
|
1342
|
+
() => CreateAssessmentTargetResponse,
|
|
1343
|
+
];
|
|
1344
|
+
var CreateAssessmentTemplate = [
|
|
1345
|
+
9,
|
|
1346
|
+
n0,
|
|
1347
|
+
_CATr,
|
|
1348
|
+
0,
|
|
1349
|
+
() => CreateAssessmentTemplateRequest,
|
|
1350
|
+
() => CreateAssessmentTemplateResponse,
|
|
1351
|
+
];
|
|
1352
|
+
var CreateExclusionsPreview = [
|
|
1353
|
+
9,
|
|
1354
|
+
n0,
|
|
1355
|
+
_CEP,
|
|
1356
|
+
0,
|
|
1357
|
+
() => CreateExclusionsPreviewRequest,
|
|
1358
|
+
() => CreateExclusionsPreviewResponse,
|
|
1359
|
+
];
|
|
1360
|
+
var CreateResourceGroup = [
|
|
1361
|
+
9,
|
|
1362
|
+
n0,
|
|
1363
|
+
_CRG,
|
|
1364
|
+
0,
|
|
1365
|
+
() => CreateResourceGroupRequest,
|
|
1366
|
+
() => CreateResourceGroupResponse,
|
|
1367
|
+
];
|
|
1368
|
+
var DeleteAssessmentRun = [
|
|
1369
|
+
9,
|
|
1370
|
+
n0,
|
|
1371
|
+
_DAR,
|
|
1372
|
+
0,
|
|
1373
|
+
() => DeleteAssessmentRunRequest,
|
|
1374
|
+
() => __Unit,
|
|
1375
|
+
];
|
|
1376
|
+
var DeleteAssessmentTarget = [
|
|
1377
|
+
9,
|
|
1378
|
+
n0,
|
|
1379
|
+
_DAT,
|
|
1380
|
+
0,
|
|
1381
|
+
() => DeleteAssessmentTargetRequest,
|
|
1382
|
+
() => __Unit,
|
|
1383
|
+
];
|
|
1384
|
+
var DeleteAssessmentTemplate = [
|
|
1385
|
+
9,
|
|
1386
|
+
n0,
|
|
1387
|
+
_DATe,
|
|
1388
|
+
0,
|
|
1389
|
+
() => DeleteAssessmentTemplateRequest,
|
|
1390
|
+
() => __Unit,
|
|
1391
|
+
];
|
|
1392
|
+
var DescribeAssessmentRuns = [
|
|
1393
|
+
9,
|
|
1394
|
+
n0,
|
|
1395
|
+
_DARe,
|
|
1396
|
+
0,
|
|
1397
|
+
() => DescribeAssessmentRunsRequest,
|
|
1398
|
+
() => DescribeAssessmentRunsResponse,
|
|
1399
|
+
];
|
|
1400
|
+
var DescribeAssessmentTargets = [
|
|
1401
|
+
9,
|
|
1402
|
+
n0,
|
|
1403
|
+
_DATes,
|
|
1404
|
+
0,
|
|
1405
|
+
() => DescribeAssessmentTargetsRequest,
|
|
1406
|
+
() => DescribeAssessmentTargetsResponse,
|
|
1407
|
+
];
|
|
1408
|
+
var DescribeAssessmentTemplates = [
|
|
1409
|
+
9,
|
|
1410
|
+
n0,
|
|
1411
|
+
_DATesc,
|
|
1412
|
+
0,
|
|
1413
|
+
() => DescribeAssessmentTemplatesRequest,
|
|
1414
|
+
() => DescribeAssessmentTemplatesResponse,
|
|
1415
|
+
];
|
|
1416
|
+
var DescribeCrossAccountAccessRole = [
|
|
1417
|
+
9,
|
|
1418
|
+
n0,
|
|
1419
|
+
_DCAAR,
|
|
1420
|
+
0,
|
|
1421
|
+
() => __Unit,
|
|
1422
|
+
() => DescribeCrossAccountAccessRoleResponse,
|
|
1423
|
+
];
|
|
1424
|
+
var DescribeExclusions = [
|
|
1425
|
+
9,
|
|
1426
|
+
n0,
|
|
1427
|
+
_DE,
|
|
1428
|
+
0,
|
|
1429
|
+
() => DescribeExclusionsRequest,
|
|
1430
|
+
() => DescribeExclusionsResponse,
|
|
1431
|
+
];
|
|
1432
|
+
var DescribeFindings = [
|
|
1433
|
+
9,
|
|
1434
|
+
n0,
|
|
1435
|
+
_DF,
|
|
1436
|
+
0,
|
|
1437
|
+
() => DescribeFindingsRequest,
|
|
1438
|
+
() => DescribeFindingsResponse,
|
|
1439
|
+
];
|
|
1440
|
+
var DescribeResourceGroups = [
|
|
1441
|
+
9,
|
|
1442
|
+
n0,
|
|
1443
|
+
_DRG,
|
|
1444
|
+
0,
|
|
1445
|
+
() => DescribeResourceGroupsRequest,
|
|
1446
|
+
() => DescribeResourceGroupsResponse,
|
|
1447
|
+
];
|
|
1448
|
+
var DescribeRulesPackages = [
|
|
1449
|
+
9,
|
|
1450
|
+
n0,
|
|
1451
|
+
_DRP,
|
|
1452
|
+
0,
|
|
1453
|
+
() => DescribeRulesPackagesRequest,
|
|
1454
|
+
() => DescribeRulesPackagesResponse,
|
|
1455
|
+
];
|
|
1456
|
+
var GetAssessmentReport = [
|
|
1457
|
+
9,
|
|
1458
|
+
n0,
|
|
1459
|
+
_GAR,
|
|
1460
|
+
0,
|
|
1461
|
+
() => GetAssessmentReportRequest,
|
|
1462
|
+
() => GetAssessmentReportResponse,
|
|
1463
|
+
];
|
|
1464
|
+
var GetExclusionsPreview = [
|
|
1465
|
+
9,
|
|
1466
|
+
n0,
|
|
1467
|
+
_GEP,
|
|
1468
|
+
0,
|
|
1469
|
+
() => GetExclusionsPreviewRequest,
|
|
1470
|
+
() => GetExclusionsPreviewResponse,
|
|
1471
|
+
];
|
|
1472
|
+
var GetTelemetryMetadata = [
|
|
1473
|
+
9,
|
|
1474
|
+
n0,
|
|
1475
|
+
_GTM,
|
|
1476
|
+
0,
|
|
1477
|
+
() => GetTelemetryMetadataRequest,
|
|
1478
|
+
() => GetTelemetryMetadataResponse,
|
|
1479
|
+
];
|
|
1480
|
+
var ListAssessmentRunAgents = [
|
|
1481
|
+
9,
|
|
1482
|
+
n0,
|
|
1483
|
+
_LARA,
|
|
1484
|
+
0,
|
|
1485
|
+
() => ListAssessmentRunAgentsRequest,
|
|
1486
|
+
() => ListAssessmentRunAgentsResponse,
|
|
1487
|
+
];
|
|
1488
|
+
var ListAssessmentRuns = [
|
|
1489
|
+
9,
|
|
1490
|
+
n0,
|
|
1491
|
+
_LAR,
|
|
1492
|
+
0,
|
|
1493
|
+
() => ListAssessmentRunsRequest,
|
|
1494
|
+
() => ListAssessmentRunsResponse,
|
|
1495
|
+
];
|
|
1496
|
+
var ListAssessmentTargets = [
|
|
1497
|
+
9,
|
|
1498
|
+
n0,
|
|
1499
|
+
_LAT,
|
|
1500
|
+
0,
|
|
1501
|
+
() => ListAssessmentTargetsRequest,
|
|
1502
|
+
() => ListAssessmentTargetsResponse,
|
|
1503
|
+
];
|
|
1504
|
+
var ListAssessmentTemplates = [
|
|
1505
|
+
9,
|
|
1506
|
+
n0,
|
|
1507
|
+
_LATi,
|
|
1508
|
+
0,
|
|
1509
|
+
() => ListAssessmentTemplatesRequest,
|
|
1510
|
+
() => ListAssessmentTemplatesResponse,
|
|
1511
|
+
];
|
|
1512
|
+
var ListEventSubscriptions = [
|
|
1513
|
+
9,
|
|
1514
|
+
n0,
|
|
1515
|
+
_LES,
|
|
1516
|
+
0,
|
|
1517
|
+
() => ListEventSubscriptionsRequest,
|
|
1518
|
+
() => ListEventSubscriptionsResponse,
|
|
1519
|
+
];
|
|
1520
|
+
var ListExclusions = [
|
|
1521
|
+
9,
|
|
1522
|
+
n0,
|
|
1523
|
+
_LE,
|
|
1524
|
+
0,
|
|
1525
|
+
() => ListExclusionsRequest,
|
|
1526
|
+
() => ListExclusionsResponse,
|
|
1527
|
+
];
|
|
1528
|
+
var ListFindings = [9, n0, _LF, 0, () => ListFindingsRequest, () => ListFindingsResponse];
|
|
1529
|
+
var ListRulesPackages = [
|
|
1530
|
+
9,
|
|
1531
|
+
n0,
|
|
1532
|
+
_LRP,
|
|
1533
|
+
0,
|
|
1534
|
+
() => ListRulesPackagesRequest,
|
|
1535
|
+
() => ListRulesPackagesResponse,
|
|
1536
|
+
];
|
|
1537
|
+
var ListTagsForResource = [
|
|
1538
|
+
9,
|
|
1539
|
+
n0,
|
|
1540
|
+
_LTFR,
|
|
1541
|
+
0,
|
|
1542
|
+
() => ListTagsForResourceRequest,
|
|
1543
|
+
() => ListTagsForResourceResponse,
|
|
1544
|
+
];
|
|
1545
|
+
var PreviewAgents = [
|
|
1546
|
+
9,
|
|
1547
|
+
n0,
|
|
1548
|
+
_PA,
|
|
1549
|
+
0,
|
|
1550
|
+
() => PreviewAgentsRequest,
|
|
1551
|
+
() => PreviewAgentsResponse,
|
|
1552
|
+
];
|
|
1553
|
+
var RegisterCrossAccountAccessRole = [
|
|
1554
|
+
9,
|
|
1555
|
+
n0,
|
|
1556
|
+
_RCAAR,
|
|
1557
|
+
0,
|
|
1558
|
+
() => RegisterCrossAccountAccessRoleRequest,
|
|
1559
|
+
() => __Unit,
|
|
1560
|
+
];
|
|
1561
|
+
var RemoveAttributesFromFindings = [
|
|
1562
|
+
9,
|
|
1563
|
+
n0,
|
|
1564
|
+
_RAFF,
|
|
1565
|
+
0,
|
|
1566
|
+
() => RemoveAttributesFromFindingsRequest,
|
|
1567
|
+
() => RemoveAttributesFromFindingsResponse,
|
|
1568
|
+
];
|
|
1569
|
+
var SetTagsForResource = [9, n0, _STFR, 0, () => SetTagsForResourceRequest, () => __Unit];
|
|
1570
|
+
var StartAssessmentRun = [
|
|
1571
|
+
9,
|
|
1572
|
+
n0,
|
|
1573
|
+
_SAR,
|
|
1574
|
+
0,
|
|
1575
|
+
() => StartAssessmentRunRequest,
|
|
1576
|
+
() => StartAssessmentRunResponse,
|
|
1577
|
+
];
|
|
1578
|
+
var StopAssessmentRun = [9, n0, _SARt, 0, () => StopAssessmentRunRequest, () => __Unit];
|
|
1579
|
+
var SubscribeToEvent = [9, n0, _STE, 0, () => SubscribeToEventRequest, () => __Unit];
|
|
1580
|
+
var UnsubscribeFromEvent = [
|
|
1581
|
+
9,
|
|
1582
|
+
n0,
|
|
1583
|
+
_UFEn,
|
|
1584
|
+
0,
|
|
1585
|
+
() => UnsubscribeFromEventRequest,
|
|
1586
|
+
() => __Unit,
|
|
1587
|
+
];
|
|
1588
|
+
var UpdateAssessmentTarget = [
|
|
1589
|
+
9,
|
|
1590
|
+
n0,
|
|
1591
|
+
_UAT,
|
|
1592
|
+
0,
|
|
1593
|
+
() => UpdateAssessmentTargetRequest,
|
|
1594
|
+
() => __Unit,
|
|
1595
|
+
];
|
|
1575
1596
|
|
|
1576
1597
|
class AddAttributesToFindingsCommand extends smithyClient.Command
|
|
1577
1598
|
.classBuilder()
|
|
1578
1599
|
.ep(commonParams)
|
|
1579
1600
|
.m(function (Command, cs, config, o) {
|
|
1580
|
-
return [
|
|
1581
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1582
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1583
|
-
];
|
|
1601
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1584
1602
|
})
|
|
1585
1603
|
.s("InspectorService", "AddAttributesToFindings", {})
|
|
1586
1604
|
.n("InspectorClient", "AddAttributesToFindingsCommand")
|
|
1587
|
-
.
|
|
1588
|
-
.ser(se_AddAttributesToFindingsCommand)
|
|
1589
|
-
.de(de_AddAttributesToFindingsCommand)
|
|
1605
|
+
.sc(AddAttributesToFindings)
|
|
1590
1606
|
.build() {
|
|
1591
1607
|
}
|
|
1592
1608
|
|
|
@@ -1594,16 +1610,11 @@ class CreateAssessmentTargetCommand extends smithyClient.Command
|
|
|
1594
1610
|
.classBuilder()
|
|
1595
1611
|
.ep(commonParams)
|
|
1596
1612
|
.m(function (Command, cs, config, o) {
|
|
1597
|
-
return [
|
|
1598
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1599
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1600
|
-
];
|
|
1613
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1601
1614
|
})
|
|
1602
1615
|
.s("InspectorService", "CreateAssessmentTarget", {})
|
|
1603
1616
|
.n("InspectorClient", "CreateAssessmentTargetCommand")
|
|
1604
|
-
.
|
|
1605
|
-
.ser(se_CreateAssessmentTargetCommand)
|
|
1606
|
-
.de(de_CreateAssessmentTargetCommand)
|
|
1617
|
+
.sc(CreateAssessmentTarget)
|
|
1607
1618
|
.build() {
|
|
1608
1619
|
}
|
|
1609
1620
|
|
|
@@ -1611,16 +1622,11 @@ class CreateAssessmentTemplateCommand extends smithyClient.Command
|
|
|
1611
1622
|
.classBuilder()
|
|
1612
1623
|
.ep(commonParams)
|
|
1613
1624
|
.m(function (Command, cs, config, o) {
|
|
1614
|
-
return [
|
|
1615
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1616
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1617
|
-
];
|
|
1625
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1618
1626
|
})
|
|
1619
1627
|
.s("InspectorService", "CreateAssessmentTemplate", {})
|
|
1620
1628
|
.n("InspectorClient", "CreateAssessmentTemplateCommand")
|
|
1621
|
-
.
|
|
1622
|
-
.ser(se_CreateAssessmentTemplateCommand)
|
|
1623
|
-
.de(de_CreateAssessmentTemplateCommand)
|
|
1629
|
+
.sc(CreateAssessmentTemplate)
|
|
1624
1630
|
.build() {
|
|
1625
1631
|
}
|
|
1626
1632
|
|
|
@@ -1628,16 +1634,11 @@ class CreateExclusionsPreviewCommand extends smithyClient.Command
|
|
|
1628
1634
|
.classBuilder()
|
|
1629
1635
|
.ep(commonParams)
|
|
1630
1636
|
.m(function (Command, cs, config, o) {
|
|
1631
|
-
return [
|
|
1632
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1633
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1634
|
-
];
|
|
1637
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1635
1638
|
})
|
|
1636
1639
|
.s("InspectorService", "CreateExclusionsPreview", {})
|
|
1637
1640
|
.n("InspectorClient", "CreateExclusionsPreviewCommand")
|
|
1638
|
-
.
|
|
1639
|
-
.ser(se_CreateExclusionsPreviewCommand)
|
|
1640
|
-
.de(de_CreateExclusionsPreviewCommand)
|
|
1641
|
+
.sc(CreateExclusionsPreview)
|
|
1641
1642
|
.build() {
|
|
1642
1643
|
}
|
|
1643
1644
|
|
|
@@ -1645,16 +1646,11 @@ class CreateResourceGroupCommand extends smithyClient.Command
|
|
|
1645
1646
|
.classBuilder()
|
|
1646
1647
|
.ep(commonParams)
|
|
1647
1648
|
.m(function (Command, cs, config, o) {
|
|
1648
|
-
return [
|
|
1649
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1650
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1651
|
-
];
|
|
1649
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1652
1650
|
})
|
|
1653
1651
|
.s("InspectorService", "CreateResourceGroup", {})
|
|
1654
1652
|
.n("InspectorClient", "CreateResourceGroupCommand")
|
|
1655
|
-
.
|
|
1656
|
-
.ser(se_CreateResourceGroupCommand)
|
|
1657
|
-
.de(de_CreateResourceGroupCommand)
|
|
1653
|
+
.sc(CreateResourceGroup)
|
|
1658
1654
|
.build() {
|
|
1659
1655
|
}
|
|
1660
1656
|
|
|
@@ -1662,16 +1658,11 @@ class DeleteAssessmentRunCommand extends smithyClient.Command
|
|
|
1662
1658
|
.classBuilder()
|
|
1663
1659
|
.ep(commonParams)
|
|
1664
1660
|
.m(function (Command, cs, config, o) {
|
|
1665
|
-
return [
|
|
1666
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1667
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1668
|
-
];
|
|
1661
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1669
1662
|
})
|
|
1670
1663
|
.s("InspectorService", "DeleteAssessmentRun", {})
|
|
1671
1664
|
.n("InspectorClient", "DeleteAssessmentRunCommand")
|
|
1672
|
-
.
|
|
1673
|
-
.ser(se_DeleteAssessmentRunCommand)
|
|
1674
|
-
.de(de_DeleteAssessmentRunCommand)
|
|
1665
|
+
.sc(DeleteAssessmentRun)
|
|
1675
1666
|
.build() {
|
|
1676
1667
|
}
|
|
1677
1668
|
|
|
@@ -1679,16 +1670,11 @@ class DeleteAssessmentTargetCommand extends smithyClient.Command
|
|
|
1679
1670
|
.classBuilder()
|
|
1680
1671
|
.ep(commonParams)
|
|
1681
1672
|
.m(function (Command, cs, config, o) {
|
|
1682
|
-
return [
|
|
1683
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1684
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1685
|
-
];
|
|
1673
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1686
1674
|
})
|
|
1687
1675
|
.s("InspectorService", "DeleteAssessmentTarget", {})
|
|
1688
1676
|
.n("InspectorClient", "DeleteAssessmentTargetCommand")
|
|
1689
|
-
.
|
|
1690
|
-
.ser(se_DeleteAssessmentTargetCommand)
|
|
1691
|
-
.de(de_DeleteAssessmentTargetCommand)
|
|
1677
|
+
.sc(DeleteAssessmentTarget)
|
|
1692
1678
|
.build() {
|
|
1693
1679
|
}
|
|
1694
1680
|
|
|
@@ -1696,16 +1682,11 @@ class DeleteAssessmentTemplateCommand extends smithyClient.Command
|
|
|
1696
1682
|
.classBuilder()
|
|
1697
1683
|
.ep(commonParams)
|
|
1698
1684
|
.m(function (Command, cs, config, o) {
|
|
1699
|
-
return [
|
|
1700
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1701
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1702
|
-
];
|
|
1685
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1703
1686
|
})
|
|
1704
1687
|
.s("InspectorService", "DeleteAssessmentTemplate", {})
|
|
1705
1688
|
.n("InspectorClient", "DeleteAssessmentTemplateCommand")
|
|
1706
|
-
.
|
|
1707
|
-
.ser(se_DeleteAssessmentTemplateCommand)
|
|
1708
|
-
.de(de_DeleteAssessmentTemplateCommand)
|
|
1689
|
+
.sc(DeleteAssessmentTemplate)
|
|
1709
1690
|
.build() {
|
|
1710
1691
|
}
|
|
1711
1692
|
|
|
@@ -1713,16 +1694,11 @@ class DescribeAssessmentRunsCommand extends smithyClient.Command
|
|
|
1713
1694
|
.classBuilder()
|
|
1714
1695
|
.ep(commonParams)
|
|
1715
1696
|
.m(function (Command, cs, config, o) {
|
|
1716
|
-
return [
|
|
1717
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1718
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1719
|
-
];
|
|
1697
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1720
1698
|
})
|
|
1721
1699
|
.s("InspectorService", "DescribeAssessmentRuns", {})
|
|
1722
1700
|
.n("InspectorClient", "DescribeAssessmentRunsCommand")
|
|
1723
|
-
.
|
|
1724
|
-
.ser(se_DescribeAssessmentRunsCommand)
|
|
1725
|
-
.de(de_DescribeAssessmentRunsCommand)
|
|
1701
|
+
.sc(DescribeAssessmentRuns)
|
|
1726
1702
|
.build() {
|
|
1727
1703
|
}
|
|
1728
1704
|
|
|
@@ -1730,16 +1706,11 @@ class DescribeAssessmentTargetsCommand extends smithyClient.Command
|
|
|
1730
1706
|
.classBuilder()
|
|
1731
1707
|
.ep(commonParams)
|
|
1732
1708
|
.m(function (Command, cs, config, o) {
|
|
1733
|
-
return [
|
|
1734
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1735
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1736
|
-
];
|
|
1709
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1737
1710
|
})
|
|
1738
1711
|
.s("InspectorService", "DescribeAssessmentTargets", {})
|
|
1739
1712
|
.n("InspectorClient", "DescribeAssessmentTargetsCommand")
|
|
1740
|
-
.
|
|
1741
|
-
.ser(se_DescribeAssessmentTargetsCommand)
|
|
1742
|
-
.de(de_DescribeAssessmentTargetsCommand)
|
|
1713
|
+
.sc(DescribeAssessmentTargets)
|
|
1743
1714
|
.build() {
|
|
1744
1715
|
}
|
|
1745
1716
|
|
|
@@ -1747,16 +1718,11 @@ class DescribeAssessmentTemplatesCommand extends smithyClient.Command
|
|
|
1747
1718
|
.classBuilder()
|
|
1748
1719
|
.ep(commonParams)
|
|
1749
1720
|
.m(function (Command, cs, config, o) {
|
|
1750
|
-
return [
|
|
1751
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1752
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1753
|
-
];
|
|
1721
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1754
1722
|
})
|
|
1755
1723
|
.s("InspectorService", "DescribeAssessmentTemplates", {})
|
|
1756
1724
|
.n("InspectorClient", "DescribeAssessmentTemplatesCommand")
|
|
1757
|
-
.
|
|
1758
|
-
.ser(se_DescribeAssessmentTemplatesCommand)
|
|
1759
|
-
.de(de_DescribeAssessmentTemplatesCommand)
|
|
1725
|
+
.sc(DescribeAssessmentTemplates)
|
|
1760
1726
|
.build() {
|
|
1761
1727
|
}
|
|
1762
1728
|
|
|
@@ -1764,16 +1730,11 @@ class DescribeCrossAccountAccessRoleCommand extends smithyClient.Command
|
|
|
1764
1730
|
.classBuilder()
|
|
1765
1731
|
.ep(commonParams)
|
|
1766
1732
|
.m(function (Command, cs, config, o) {
|
|
1767
|
-
return [
|
|
1768
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1769
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1770
|
-
];
|
|
1733
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1771
1734
|
})
|
|
1772
1735
|
.s("InspectorService", "DescribeCrossAccountAccessRole", {})
|
|
1773
1736
|
.n("InspectorClient", "DescribeCrossAccountAccessRoleCommand")
|
|
1774
|
-
.
|
|
1775
|
-
.ser(se_DescribeCrossAccountAccessRoleCommand)
|
|
1776
|
-
.de(de_DescribeCrossAccountAccessRoleCommand)
|
|
1737
|
+
.sc(DescribeCrossAccountAccessRole)
|
|
1777
1738
|
.build() {
|
|
1778
1739
|
}
|
|
1779
1740
|
|
|
@@ -1781,16 +1742,11 @@ class DescribeExclusionsCommand extends smithyClient.Command
|
|
|
1781
1742
|
.classBuilder()
|
|
1782
1743
|
.ep(commonParams)
|
|
1783
1744
|
.m(function (Command, cs, config, o) {
|
|
1784
|
-
return [
|
|
1785
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1786
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1787
|
-
];
|
|
1745
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1788
1746
|
})
|
|
1789
1747
|
.s("InspectorService", "DescribeExclusions", {})
|
|
1790
1748
|
.n("InspectorClient", "DescribeExclusionsCommand")
|
|
1791
|
-
.
|
|
1792
|
-
.ser(se_DescribeExclusionsCommand)
|
|
1793
|
-
.de(de_DescribeExclusionsCommand)
|
|
1749
|
+
.sc(DescribeExclusions)
|
|
1794
1750
|
.build() {
|
|
1795
1751
|
}
|
|
1796
1752
|
|
|
@@ -1798,16 +1754,11 @@ class DescribeFindingsCommand extends smithyClient.Command
|
|
|
1798
1754
|
.classBuilder()
|
|
1799
1755
|
.ep(commonParams)
|
|
1800
1756
|
.m(function (Command, cs, config, o) {
|
|
1801
|
-
return [
|
|
1802
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1803
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1804
|
-
];
|
|
1757
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1805
1758
|
})
|
|
1806
1759
|
.s("InspectorService", "DescribeFindings", {})
|
|
1807
1760
|
.n("InspectorClient", "DescribeFindingsCommand")
|
|
1808
|
-
.
|
|
1809
|
-
.ser(se_DescribeFindingsCommand)
|
|
1810
|
-
.de(de_DescribeFindingsCommand)
|
|
1761
|
+
.sc(DescribeFindings)
|
|
1811
1762
|
.build() {
|
|
1812
1763
|
}
|
|
1813
1764
|
|
|
@@ -1815,16 +1766,11 @@ class DescribeResourceGroupsCommand extends smithyClient.Command
|
|
|
1815
1766
|
.classBuilder()
|
|
1816
1767
|
.ep(commonParams)
|
|
1817
1768
|
.m(function (Command, cs, config, o) {
|
|
1818
|
-
return [
|
|
1819
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1820
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1821
|
-
];
|
|
1769
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1822
1770
|
})
|
|
1823
1771
|
.s("InspectorService", "DescribeResourceGroups", {})
|
|
1824
1772
|
.n("InspectorClient", "DescribeResourceGroupsCommand")
|
|
1825
|
-
.
|
|
1826
|
-
.ser(se_DescribeResourceGroupsCommand)
|
|
1827
|
-
.de(de_DescribeResourceGroupsCommand)
|
|
1773
|
+
.sc(DescribeResourceGroups)
|
|
1828
1774
|
.build() {
|
|
1829
1775
|
}
|
|
1830
1776
|
|
|
@@ -1832,16 +1778,11 @@ class DescribeRulesPackagesCommand extends smithyClient.Command
|
|
|
1832
1778
|
.classBuilder()
|
|
1833
1779
|
.ep(commonParams)
|
|
1834
1780
|
.m(function (Command, cs, config, o) {
|
|
1835
|
-
return [
|
|
1836
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1837
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1838
|
-
];
|
|
1781
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1839
1782
|
})
|
|
1840
1783
|
.s("InspectorService", "DescribeRulesPackages", {})
|
|
1841
1784
|
.n("InspectorClient", "DescribeRulesPackagesCommand")
|
|
1842
|
-
.
|
|
1843
|
-
.ser(se_DescribeRulesPackagesCommand)
|
|
1844
|
-
.de(de_DescribeRulesPackagesCommand)
|
|
1785
|
+
.sc(DescribeRulesPackages)
|
|
1845
1786
|
.build() {
|
|
1846
1787
|
}
|
|
1847
1788
|
|
|
@@ -1849,16 +1790,11 @@ class GetAssessmentReportCommand extends smithyClient.Command
|
|
|
1849
1790
|
.classBuilder()
|
|
1850
1791
|
.ep(commonParams)
|
|
1851
1792
|
.m(function (Command, cs, config, o) {
|
|
1852
|
-
return [
|
|
1853
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1854
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1855
|
-
];
|
|
1793
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1856
1794
|
})
|
|
1857
1795
|
.s("InspectorService", "GetAssessmentReport", {})
|
|
1858
1796
|
.n("InspectorClient", "GetAssessmentReportCommand")
|
|
1859
|
-
.
|
|
1860
|
-
.ser(se_GetAssessmentReportCommand)
|
|
1861
|
-
.de(de_GetAssessmentReportCommand)
|
|
1797
|
+
.sc(GetAssessmentReport)
|
|
1862
1798
|
.build() {
|
|
1863
1799
|
}
|
|
1864
1800
|
|
|
@@ -1866,16 +1802,11 @@ class GetExclusionsPreviewCommand extends smithyClient.Command
|
|
|
1866
1802
|
.classBuilder()
|
|
1867
1803
|
.ep(commonParams)
|
|
1868
1804
|
.m(function (Command, cs, config, o) {
|
|
1869
|
-
return [
|
|
1870
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1871
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1872
|
-
];
|
|
1805
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1873
1806
|
})
|
|
1874
1807
|
.s("InspectorService", "GetExclusionsPreview", {})
|
|
1875
1808
|
.n("InspectorClient", "GetExclusionsPreviewCommand")
|
|
1876
|
-
.
|
|
1877
|
-
.ser(se_GetExclusionsPreviewCommand)
|
|
1878
|
-
.de(de_GetExclusionsPreviewCommand)
|
|
1809
|
+
.sc(GetExclusionsPreview)
|
|
1879
1810
|
.build() {
|
|
1880
1811
|
}
|
|
1881
1812
|
|
|
@@ -1883,16 +1814,11 @@ class GetTelemetryMetadataCommand extends smithyClient.Command
|
|
|
1883
1814
|
.classBuilder()
|
|
1884
1815
|
.ep(commonParams)
|
|
1885
1816
|
.m(function (Command, cs, config, o) {
|
|
1886
|
-
return [
|
|
1887
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1888
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1889
|
-
];
|
|
1817
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1890
1818
|
})
|
|
1891
1819
|
.s("InspectorService", "GetTelemetryMetadata", {})
|
|
1892
1820
|
.n("InspectorClient", "GetTelemetryMetadataCommand")
|
|
1893
|
-
.
|
|
1894
|
-
.ser(se_GetTelemetryMetadataCommand)
|
|
1895
|
-
.de(de_GetTelemetryMetadataCommand)
|
|
1821
|
+
.sc(GetTelemetryMetadata)
|
|
1896
1822
|
.build() {
|
|
1897
1823
|
}
|
|
1898
1824
|
|
|
@@ -1900,16 +1826,11 @@ class ListAssessmentRunAgentsCommand extends smithyClient.Command
|
|
|
1900
1826
|
.classBuilder()
|
|
1901
1827
|
.ep(commonParams)
|
|
1902
1828
|
.m(function (Command, cs, config, o) {
|
|
1903
|
-
return [
|
|
1904
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1905
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1906
|
-
];
|
|
1829
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1907
1830
|
})
|
|
1908
1831
|
.s("InspectorService", "ListAssessmentRunAgents", {})
|
|
1909
1832
|
.n("InspectorClient", "ListAssessmentRunAgentsCommand")
|
|
1910
|
-
.
|
|
1911
|
-
.ser(se_ListAssessmentRunAgentsCommand)
|
|
1912
|
-
.de(de_ListAssessmentRunAgentsCommand)
|
|
1833
|
+
.sc(ListAssessmentRunAgents)
|
|
1913
1834
|
.build() {
|
|
1914
1835
|
}
|
|
1915
1836
|
|
|
@@ -1917,16 +1838,11 @@ class ListAssessmentRunsCommand extends smithyClient.Command
|
|
|
1917
1838
|
.classBuilder()
|
|
1918
1839
|
.ep(commonParams)
|
|
1919
1840
|
.m(function (Command, cs, config, o) {
|
|
1920
|
-
return [
|
|
1921
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1922
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1923
|
-
];
|
|
1841
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1924
1842
|
})
|
|
1925
1843
|
.s("InspectorService", "ListAssessmentRuns", {})
|
|
1926
1844
|
.n("InspectorClient", "ListAssessmentRunsCommand")
|
|
1927
|
-
.
|
|
1928
|
-
.ser(se_ListAssessmentRunsCommand)
|
|
1929
|
-
.de(de_ListAssessmentRunsCommand)
|
|
1845
|
+
.sc(ListAssessmentRuns)
|
|
1930
1846
|
.build() {
|
|
1931
1847
|
}
|
|
1932
1848
|
|
|
@@ -1934,16 +1850,11 @@ class ListAssessmentTargetsCommand extends smithyClient.Command
|
|
|
1934
1850
|
.classBuilder()
|
|
1935
1851
|
.ep(commonParams)
|
|
1936
1852
|
.m(function (Command, cs, config, o) {
|
|
1937
|
-
return [
|
|
1938
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1939
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1940
|
-
];
|
|
1853
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1941
1854
|
})
|
|
1942
1855
|
.s("InspectorService", "ListAssessmentTargets", {})
|
|
1943
1856
|
.n("InspectorClient", "ListAssessmentTargetsCommand")
|
|
1944
|
-
.
|
|
1945
|
-
.ser(se_ListAssessmentTargetsCommand)
|
|
1946
|
-
.de(de_ListAssessmentTargetsCommand)
|
|
1857
|
+
.sc(ListAssessmentTargets)
|
|
1947
1858
|
.build() {
|
|
1948
1859
|
}
|
|
1949
1860
|
|
|
@@ -1951,16 +1862,11 @@ class ListAssessmentTemplatesCommand extends smithyClient.Command
|
|
|
1951
1862
|
.classBuilder()
|
|
1952
1863
|
.ep(commonParams)
|
|
1953
1864
|
.m(function (Command, cs, config, o) {
|
|
1954
|
-
return [
|
|
1955
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1956
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1957
|
-
];
|
|
1865
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1958
1866
|
})
|
|
1959
1867
|
.s("InspectorService", "ListAssessmentTemplates", {})
|
|
1960
1868
|
.n("InspectorClient", "ListAssessmentTemplatesCommand")
|
|
1961
|
-
.
|
|
1962
|
-
.ser(se_ListAssessmentTemplatesCommand)
|
|
1963
|
-
.de(de_ListAssessmentTemplatesCommand)
|
|
1869
|
+
.sc(ListAssessmentTemplates)
|
|
1964
1870
|
.build() {
|
|
1965
1871
|
}
|
|
1966
1872
|
|
|
@@ -1968,16 +1874,11 @@ class ListEventSubscriptionsCommand extends smithyClient.Command
|
|
|
1968
1874
|
.classBuilder()
|
|
1969
1875
|
.ep(commonParams)
|
|
1970
1876
|
.m(function (Command, cs, config, o) {
|
|
1971
|
-
return [
|
|
1972
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1973
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1974
|
-
];
|
|
1877
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1975
1878
|
})
|
|
1976
1879
|
.s("InspectorService", "ListEventSubscriptions", {})
|
|
1977
1880
|
.n("InspectorClient", "ListEventSubscriptionsCommand")
|
|
1978
|
-
.
|
|
1979
|
-
.ser(se_ListEventSubscriptionsCommand)
|
|
1980
|
-
.de(de_ListEventSubscriptionsCommand)
|
|
1881
|
+
.sc(ListEventSubscriptions)
|
|
1981
1882
|
.build() {
|
|
1982
1883
|
}
|
|
1983
1884
|
|
|
@@ -1985,16 +1886,11 @@ class ListExclusionsCommand extends smithyClient.Command
|
|
|
1985
1886
|
.classBuilder()
|
|
1986
1887
|
.ep(commonParams)
|
|
1987
1888
|
.m(function (Command, cs, config, o) {
|
|
1988
|
-
return [
|
|
1989
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1990
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1991
|
-
];
|
|
1889
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1992
1890
|
})
|
|
1993
1891
|
.s("InspectorService", "ListExclusions", {})
|
|
1994
1892
|
.n("InspectorClient", "ListExclusionsCommand")
|
|
1995
|
-
.
|
|
1996
|
-
.ser(se_ListExclusionsCommand)
|
|
1997
|
-
.de(de_ListExclusionsCommand)
|
|
1893
|
+
.sc(ListExclusions)
|
|
1998
1894
|
.build() {
|
|
1999
1895
|
}
|
|
2000
1896
|
|
|
@@ -2002,16 +1898,11 @@ class ListFindingsCommand extends smithyClient.Command
|
|
|
2002
1898
|
.classBuilder()
|
|
2003
1899
|
.ep(commonParams)
|
|
2004
1900
|
.m(function (Command, cs, config, o) {
|
|
2005
|
-
return [
|
|
2006
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2007
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2008
|
-
];
|
|
1901
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2009
1902
|
})
|
|
2010
1903
|
.s("InspectorService", "ListFindings", {})
|
|
2011
1904
|
.n("InspectorClient", "ListFindingsCommand")
|
|
2012
|
-
.
|
|
2013
|
-
.ser(se_ListFindingsCommand)
|
|
2014
|
-
.de(de_ListFindingsCommand)
|
|
1905
|
+
.sc(ListFindings)
|
|
2015
1906
|
.build() {
|
|
2016
1907
|
}
|
|
2017
1908
|
|
|
@@ -2019,16 +1910,11 @@ class ListRulesPackagesCommand extends smithyClient.Command
|
|
|
2019
1910
|
.classBuilder()
|
|
2020
1911
|
.ep(commonParams)
|
|
2021
1912
|
.m(function (Command, cs, config, o) {
|
|
2022
|
-
return [
|
|
2023
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2024
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2025
|
-
];
|
|
1913
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2026
1914
|
})
|
|
2027
1915
|
.s("InspectorService", "ListRulesPackages", {})
|
|
2028
1916
|
.n("InspectorClient", "ListRulesPackagesCommand")
|
|
2029
|
-
.
|
|
2030
|
-
.ser(se_ListRulesPackagesCommand)
|
|
2031
|
-
.de(de_ListRulesPackagesCommand)
|
|
1917
|
+
.sc(ListRulesPackages)
|
|
2032
1918
|
.build() {
|
|
2033
1919
|
}
|
|
2034
1920
|
|
|
@@ -2036,16 +1922,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2036
1922
|
.classBuilder()
|
|
2037
1923
|
.ep(commonParams)
|
|
2038
1924
|
.m(function (Command, cs, config, o) {
|
|
2039
|
-
return [
|
|
2040
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2041
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2042
|
-
];
|
|
1925
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2043
1926
|
})
|
|
2044
1927
|
.s("InspectorService", "ListTagsForResource", {})
|
|
2045
1928
|
.n("InspectorClient", "ListTagsForResourceCommand")
|
|
2046
|
-
.
|
|
2047
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2048
|
-
.de(de_ListTagsForResourceCommand)
|
|
1929
|
+
.sc(ListTagsForResource)
|
|
2049
1930
|
.build() {
|
|
2050
1931
|
}
|
|
2051
1932
|
|
|
@@ -2053,16 +1934,11 @@ class PreviewAgentsCommand extends smithyClient.Command
|
|
|
2053
1934
|
.classBuilder()
|
|
2054
1935
|
.ep(commonParams)
|
|
2055
1936
|
.m(function (Command, cs, config, o) {
|
|
2056
|
-
return [
|
|
2057
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2058
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2059
|
-
];
|
|
1937
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2060
1938
|
})
|
|
2061
1939
|
.s("InspectorService", "PreviewAgents", {})
|
|
2062
1940
|
.n("InspectorClient", "PreviewAgentsCommand")
|
|
2063
|
-
.
|
|
2064
|
-
.ser(se_PreviewAgentsCommand)
|
|
2065
|
-
.de(de_PreviewAgentsCommand)
|
|
1941
|
+
.sc(PreviewAgents)
|
|
2066
1942
|
.build() {
|
|
2067
1943
|
}
|
|
2068
1944
|
|
|
@@ -2070,16 +1946,11 @@ class RegisterCrossAccountAccessRoleCommand extends smithyClient.Command
|
|
|
2070
1946
|
.classBuilder()
|
|
2071
1947
|
.ep(commonParams)
|
|
2072
1948
|
.m(function (Command, cs, config, o) {
|
|
2073
|
-
return [
|
|
2074
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2075
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2076
|
-
];
|
|
1949
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2077
1950
|
})
|
|
2078
1951
|
.s("InspectorService", "RegisterCrossAccountAccessRole", {})
|
|
2079
1952
|
.n("InspectorClient", "RegisterCrossAccountAccessRoleCommand")
|
|
2080
|
-
.
|
|
2081
|
-
.ser(se_RegisterCrossAccountAccessRoleCommand)
|
|
2082
|
-
.de(de_RegisterCrossAccountAccessRoleCommand)
|
|
1953
|
+
.sc(RegisterCrossAccountAccessRole)
|
|
2083
1954
|
.build() {
|
|
2084
1955
|
}
|
|
2085
1956
|
|
|
@@ -2087,16 +1958,11 @@ class RemoveAttributesFromFindingsCommand extends smithyClient.Command
|
|
|
2087
1958
|
.classBuilder()
|
|
2088
1959
|
.ep(commonParams)
|
|
2089
1960
|
.m(function (Command, cs, config, o) {
|
|
2090
|
-
return [
|
|
2091
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2092
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2093
|
-
];
|
|
1961
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2094
1962
|
})
|
|
2095
1963
|
.s("InspectorService", "RemoveAttributesFromFindings", {})
|
|
2096
1964
|
.n("InspectorClient", "RemoveAttributesFromFindingsCommand")
|
|
2097
|
-
.
|
|
2098
|
-
.ser(se_RemoveAttributesFromFindingsCommand)
|
|
2099
|
-
.de(de_RemoveAttributesFromFindingsCommand)
|
|
1965
|
+
.sc(RemoveAttributesFromFindings)
|
|
2100
1966
|
.build() {
|
|
2101
1967
|
}
|
|
2102
1968
|
|
|
@@ -2104,16 +1970,11 @@ class SetTagsForResourceCommand extends smithyClient.Command
|
|
|
2104
1970
|
.classBuilder()
|
|
2105
1971
|
.ep(commonParams)
|
|
2106
1972
|
.m(function (Command, cs, config, o) {
|
|
2107
|
-
return [
|
|
2108
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2109
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2110
|
-
];
|
|
1973
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2111
1974
|
})
|
|
2112
1975
|
.s("InspectorService", "SetTagsForResource", {})
|
|
2113
1976
|
.n("InspectorClient", "SetTagsForResourceCommand")
|
|
2114
|
-
.
|
|
2115
|
-
.ser(se_SetTagsForResourceCommand)
|
|
2116
|
-
.de(de_SetTagsForResourceCommand)
|
|
1977
|
+
.sc(SetTagsForResource)
|
|
2117
1978
|
.build() {
|
|
2118
1979
|
}
|
|
2119
1980
|
|
|
@@ -2121,16 +1982,11 @@ class StartAssessmentRunCommand extends smithyClient.Command
|
|
|
2121
1982
|
.classBuilder()
|
|
2122
1983
|
.ep(commonParams)
|
|
2123
1984
|
.m(function (Command, cs, config, o) {
|
|
2124
|
-
return [
|
|
2125
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2126
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2127
|
-
];
|
|
1985
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2128
1986
|
})
|
|
2129
1987
|
.s("InspectorService", "StartAssessmentRun", {})
|
|
2130
1988
|
.n("InspectorClient", "StartAssessmentRunCommand")
|
|
2131
|
-
.
|
|
2132
|
-
.ser(se_StartAssessmentRunCommand)
|
|
2133
|
-
.de(de_StartAssessmentRunCommand)
|
|
1989
|
+
.sc(StartAssessmentRun)
|
|
2134
1990
|
.build() {
|
|
2135
1991
|
}
|
|
2136
1992
|
|
|
@@ -2138,16 +1994,11 @@ class StopAssessmentRunCommand extends smithyClient.Command
|
|
|
2138
1994
|
.classBuilder()
|
|
2139
1995
|
.ep(commonParams)
|
|
2140
1996
|
.m(function (Command, cs, config, o) {
|
|
2141
|
-
return [
|
|
2142
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2143
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2144
|
-
];
|
|
1997
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2145
1998
|
})
|
|
2146
1999
|
.s("InspectorService", "StopAssessmentRun", {})
|
|
2147
2000
|
.n("InspectorClient", "StopAssessmentRunCommand")
|
|
2148
|
-
.
|
|
2149
|
-
.ser(se_StopAssessmentRunCommand)
|
|
2150
|
-
.de(de_StopAssessmentRunCommand)
|
|
2001
|
+
.sc(StopAssessmentRun)
|
|
2151
2002
|
.build() {
|
|
2152
2003
|
}
|
|
2153
2004
|
|
|
@@ -2155,16 +2006,11 @@ class SubscribeToEventCommand extends smithyClient.Command
|
|
|
2155
2006
|
.classBuilder()
|
|
2156
2007
|
.ep(commonParams)
|
|
2157
2008
|
.m(function (Command, cs, config, o) {
|
|
2158
|
-
return [
|
|
2159
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2160
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2161
|
-
];
|
|
2009
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2162
2010
|
})
|
|
2163
2011
|
.s("InspectorService", "SubscribeToEvent", {})
|
|
2164
2012
|
.n("InspectorClient", "SubscribeToEventCommand")
|
|
2165
|
-
.
|
|
2166
|
-
.ser(se_SubscribeToEventCommand)
|
|
2167
|
-
.de(de_SubscribeToEventCommand)
|
|
2013
|
+
.sc(SubscribeToEvent)
|
|
2168
2014
|
.build() {
|
|
2169
2015
|
}
|
|
2170
2016
|
|
|
@@ -2172,16 +2018,11 @@ class UnsubscribeFromEventCommand extends smithyClient.Command
|
|
|
2172
2018
|
.classBuilder()
|
|
2173
2019
|
.ep(commonParams)
|
|
2174
2020
|
.m(function (Command, cs, config, o) {
|
|
2175
|
-
return [
|
|
2176
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2177
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2178
|
-
];
|
|
2021
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2179
2022
|
})
|
|
2180
2023
|
.s("InspectorService", "UnsubscribeFromEvent", {})
|
|
2181
2024
|
.n("InspectorClient", "UnsubscribeFromEventCommand")
|
|
2182
|
-
.
|
|
2183
|
-
.ser(se_UnsubscribeFromEventCommand)
|
|
2184
|
-
.de(de_UnsubscribeFromEventCommand)
|
|
2025
|
+
.sc(UnsubscribeFromEvent)
|
|
2185
2026
|
.build() {
|
|
2186
2027
|
}
|
|
2187
2028
|
|
|
@@ -2189,16 +2030,11 @@ class UpdateAssessmentTargetCommand extends smithyClient.Command
|
|
|
2189
2030
|
.classBuilder()
|
|
2190
2031
|
.ep(commonParams)
|
|
2191
2032
|
.m(function (Command, cs, config, o) {
|
|
2192
|
-
return [
|
|
2193
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2194
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2195
|
-
];
|
|
2033
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2196
2034
|
})
|
|
2197
2035
|
.s("InspectorService", "UpdateAssessmentTarget", {})
|
|
2198
2036
|
.n("InspectorClient", "UpdateAssessmentTargetCommand")
|
|
2199
|
-
.
|
|
2200
|
-
.ser(se_UpdateAssessmentTargetCommand)
|
|
2201
|
-
.de(de_UpdateAssessmentTargetCommand)
|
|
2037
|
+
.sc(UpdateAssessmentTarget)
|
|
2202
2038
|
.build() {
|
|
2203
2039
|
}
|
|
2204
2040
|
|
|
@@ -2274,12 +2110,12 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2274
2110
|
get: function () { return smithyClient.Client; }
|
|
2275
2111
|
});
|
|
2276
2112
|
exports.AccessDeniedErrorCode = AccessDeniedErrorCode;
|
|
2277
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2113
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2278
2114
|
exports.AddAttributesToFindingsCommand = AddAttributesToFindingsCommand;
|
|
2279
2115
|
exports.AgentHealth = AgentHealth;
|
|
2280
2116
|
exports.AgentHealthCode = AgentHealthCode;
|
|
2281
|
-
exports.AgentsAlreadyRunningAssessmentException = AgentsAlreadyRunningAssessmentException;
|
|
2282
|
-
exports.AssessmentRunInProgressException = AssessmentRunInProgressException;
|
|
2117
|
+
exports.AgentsAlreadyRunningAssessmentException = AgentsAlreadyRunningAssessmentException$1;
|
|
2118
|
+
exports.AssessmentRunInProgressException = AssessmentRunInProgressException$1;
|
|
2283
2119
|
exports.AssessmentRunNotificationSnsStatusCode = AssessmentRunNotificationSnsStatusCode;
|
|
2284
2120
|
exports.AssessmentRunState = AssessmentRunState;
|
|
2285
2121
|
exports.AssetType = AssetType;
|
|
@@ -2305,14 +2141,14 @@ exports.GetTelemetryMetadataCommand = GetTelemetryMetadataCommand;
|
|
|
2305
2141
|
exports.Inspector = Inspector;
|
|
2306
2142
|
exports.InspectorClient = InspectorClient;
|
|
2307
2143
|
exports.InspectorEvent = InspectorEvent;
|
|
2308
|
-
exports.InspectorServiceException = InspectorServiceException;
|
|
2309
|
-
exports.InternalException = InternalException;
|
|
2144
|
+
exports.InspectorServiceException = InspectorServiceException$1;
|
|
2145
|
+
exports.InternalException = InternalException$1;
|
|
2310
2146
|
exports.InvalidCrossAccountRoleErrorCode = InvalidCrossAccountRoleErrorCode;
|
|
2311
|
-
exports.InvalidCrossAccountRoleException = InvalidCrossAccountRoleException;
|
|
2147
|
+
exports.InvalidCrossAccountRoleException = InvalidCrossAccountRoleException$1;
|
|
2312
2148
|
exports.InvalidInputErrorCode = InvalidInputErrorCode;
|
|
2313
|
-
exports.InvalidInputException = InvalidInputException;
|
|
2149
|
+
exports.InvalidInputException = InvalidInputException$1;
|
|
2314
2150
|
exports.LimitExceededErrorCode = LimitExceededErrorCode;
|
|
2315
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2151
|
+
exports.LimitExceededException = LimitExceededException$1;
|
|
2316
2152
|
exports.ListAssessmentRunAgentsCommand = ListAssessmentRunAgentsCommand;
|
|
2317
2153
|
exports.ListAssessmentRunsCommand = ListAssessmentRunsCommand;
|
|
2318
2154
|
exports.ListAssessmentTargetsCommand = ListAssessmentTargetsCommand;
|
|
@@ -2324,9 +2160,9 @@ exports.ListRulesPackagesCommand = ListRulesPackagesCommand;
|
|
|
2324
2160
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2325
2161
|
exports.Locale = Locale;
|
|
2326
2162
|
exports.NoSuchEntityErrorCode = NoSuchEntityErrorCode;
|
|
2327
|
-
exports.NoSuchEntityException = NoSuchEntityException;
|
|
2163
|
+
exports.NoSuchEntityException = NoSuchEntityException$1;
|
|
2328
2164
|
exports.PreviewAgentsCommand = PreviewAgentsCommand;
|
|
2329
|
-
exports.PreviewGenerationInProgressException = PreviewGenerationInProgressException;
|
|
2165
|
+
exports.PreviewGenerationInProgressException = PreviewGenerationInProgressException$1;
|
|
2330
2166
|
exports.PreviewStatus = PreviewStatus;
|
|
2331
2167
|
exports.RegisterCrossAccountAccessRoleCommand = RegisterCrossAccountAccessRoleCommand;
|
|
2332
2168
|
exports.RemoveAttributesFromFindingsCommand = RemoveAttributesFromFindingsCommand;
|
|
@@ -2334,7 +2170,7 @@ exports.ReportFileFormat = ReportFileFormat;
|
|
|
2334
2170
|
exports.ReportStatus = ReportStatus;
|
|
2335
2171
|
exports.ReportType = ReportType;
|
|
2336
2172
|
exports.ScopeType = ScopeType;
|
|
2337
|
-
exports.ServiceTemporarilyUnavailableException = ServiceTemporarilyUnavailableException;
|
|
2173
|
+
exports.ServiceTemporarilyUnavailableException = ServiceTemporarilyUnavailableException$1;
|
|
2338
2174
|
exports.SetTagsForResourceCommand = SetTagsForResourceCommand;
|
|
2339
2175
|
exports.Severity = Severity;
|
|
2340
2176
|
exports.StartAssessmentRunCommand = StartAssessmentRunCommand;
|
|
@@ -2342,7 +2178,7 @@ exports.StopAction = StopAction;
|
|
|
2342
2178
|
exports.StopAssessmentRunCommand = StopAssessmentRunCommand;
|
|
2343
2179
|
exports.SubscribeToEventCommand = SubscribeToEventCommand;
|
|
2344
2180
|
exports.UnsubscribeFromEventCommand = UnsubscribeFromEventCommand;
|
|
2345
|
-
exports.UnsupportedFeatureException = UnsupportedFeatureException;
|
|
2181
|
+
exports.UnsupportedFeatureException = UnsupportedFeatureException$1;
|
|
2346
2182
|
exports.UpdateAssessmentTargetCommand = UpdateAssessmentTargetCommand;
|
|
2347
2183
|
exports.paginateGetExclusionsPreview = paginateGetExclusionsPreview;
|
|
2348
2184
|
exports.paginateListAssessmentRunAgents = paginateListAssessmentRunAgents;
|