@aws-sdk/client-inspector2 3.721.0 → 3.726.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 +340 -231
- package/dist-es/Inspector2Client.js +1 -0
- package/dist-es/models/models_0.js +27 -20
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -302,7 +302,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
302
302
|
}, "resolveRuntimeExtensions");
|
|
303
303
|
|
|
304
304
|
// src/Inspector2Client.ts
|
|
305
|
-
var
|
|
305
|
+
var Inspector2Client = class extends import_smithy_client.Client {
|
|
306
|
+
static {
|
|
307
|
+
__name(this, "Inspector2Client");
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* The resolved configuration of Inspector2Client class. This is resolved and normalized from the {@link Inspector2ClientConfig | constructor configuration interface}.
|
|
311
|
+
*/
|
|
312
|
+
config;
|
|
306
313
|
constructor(...[configuration]) {
|
|
307
314
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
308
315
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -312,7 +319,7 @@ var _Inspector2Client = class _Inspector2Client extends import_smithy_client.Cli
|
|
|
312
319
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
313
320
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
314
321
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
315
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
322
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
316
323
|
super(_config_8);
|
|
317
324
|
this.config = _config_8;
|
|
318
325
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -340,8 +347,6 @@ var _Inspector2Client = class _Inspector2Client extends import_smithy_client.Cli
|
|
|
340
347
|
super.destroy();
|
|
341
348
|
}
|
|
342
349
|
};
|
|
343
|
-
__name(_Inspector2Client, "Inspector2Client");
|
|
344
|
-
var Inspector2Client = _Inspector2Client;
|
|
345
350
|
|
|
346
351
|
// src/Inspector2.ts
|
|
347
352
|
|
|
@@ -359,7 +364,10 @@ var import_uuid = require("uuid");
|
|
|
359
364
|
|
|
360
365
|
// src/models/Inspector2ServiceException.ts
|
|
361
366
|
|
|
362
|
-
var
|
|
367
|
+
var Inspector2ServiceException = class _Inspector2ServiceException extends import_smithy_client.ServiceException {
|
|
368
|
+
static {
|
|
369
|
+
__name(this, "Inspector2ServiceException");
|
|
370
|
+
}
|
|
363
371
|
/**
|
|
364
372
|
* @internal
|
|
365
373
|
*/
|
|
@@ -368,11 +376,14 @@ var _Inspector2ServiceException = class _Inspector2ServiceException extends impo
|
|
|
368
376
|
Object.setPrototypeOf(this, _Inspector2ServiceException.prototype);
|
|
369
377
|
}
|
|
370
378
|
};
|
|
371
|
-
__name(_Inspector2ServiceException, "Inspector2ServiceException");
|
|
372
|
-
var Inspector2ServiceException = _Inspector2ServiceException;
|
|
373
379
|
|
|
374
380
|
// src/models/models_0.ts
|
|
375
|
-
var
|
|
381
|
+
var AccessDeniedException = class _AccessDeniedException extends Inspector2ServiceException {
|
|
382
|
+
static {
|
|
383
|
+
__name(this, "AccessDeniedException");
|
|
384
|
+
}
|
|
385
|
+
name = "AccessDeniedException";
|
|
386
|
+
$fault = "client";
|
|
376
387
|
/**
|
|
377
388
|
* @internal
|
|
378
389
|
*/
|
|
@@ -382,13 +393,9 @@ var _AccessDeniedException = class _AccessDeniedException extends Inspector2Serv
|
|
|
382
393
|
$fault: "client",
|
|
383
394
|
...opts
|
|
384
395
|
});
|
|
385
|
-
this.name = "AccessDeniedException";
|
|
386
|
-
this.$fault = "client";
|
|
387
396
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
388
397
|
}
|
|
389
398
|
};
|
|
390
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
391
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
392
399
|
var Status = {
|
|
393
400
|
DISABLED: "DISABLED",
|
|
394
401
|
DISABLING: "DISABLING",
|
|
@@ -573,7 +580,18 @@ var Architecture = {
|
|
|
573
580
|
ARM64: "ARM64",
|
|
574
581
|
X86_64: "X86_64"
|
|
575
582
|
};
|
|
576
|
-
var
|
|
583
|
+
var InternalServerException = class _InternalServerException extends Inspector2ServiceException {
|
|
584
|
+
static {
|
|
585
|
+
__name(this, "InternalServerException");
|
|
586
|
+
}
|
|
587
|
+
name = "InternalServerException";
|
|
588
|
+
$fault = "server";
|
|
589
|
+
$retryable = {};
|
|
590
|
+
/**
|
|
591
|
+
* <p>The number of seconds to wait before retrying the request.</p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
retryAfterSeconds;
|
|
577
595
|
/**
|
|
578
596
|
* @internal
|
|
579
597
|
*/
|
|
@@ -583,16 +601,21 @@ var _InternalServerException = class _InternalServerException extends Inspector2
|
|
|
583
601
|
$fault: "server",
|
|
584
602
|
...opts
|
|
585
603
|
});
|
|
586
|
-
this.name = "InternalServerException";
|
|
587
|
-
this.$fault = "server";
|
|
588
|
-
this.$retryable = {};
|
|
589
604
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
590
605
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
591
606
|
}
|
|
592
607
|
};
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
608
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends Inspector2ServiceException {
|
|
609
|
+
static {
|
|
610
|
+
__name(this, "ServiceQuotaExceededException");
|
|
611
|
+
}
|
|
612
|
+
name = "ServiceQuotaExceededException";
|
|
613
|
+
$fault = "client";
|
|
614
|
+
/**
|
|
615
|
+
* <p>The ID of the resource that exceeds a service quota.</p>
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
resourceId;
|
|
596
619
|
/**
|
|
597
620
|
* @internal
|
|
598
621
|
*/
|
|
@@ -602,15 +625,24 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
602
625
|
$fault: "client",
|
|
603
626
|
...opts
|
|
604
627
|
});
|
|
605
|
-
this.name = "ServiceQuotaExceededException";
|
|
606
|
-
this.$fault = "client";
|
|
607
628
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
608
629
|
this.resourceId = opts.resourceId;
|
|
609
630
|
}
|
|
610
631
|
};
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
632
|
+
var ThrottlingException = class _ThrottlingException extends Inspector2ServiceException {
|
|
633
|
+
static {
|
|
634
|
+
__name(this, "ThrottlingException");
|
|
635
|
+
}
|
|
636
|
+
name = "ThrottlingException";
|
|
637
|
+
$fault = "client";
|
|
638
|
+
$retryable = {
|
|
639
|
+
throttling: true
|
|
640
|
+
};
|
|
641
|
+
/**
|
|
642
|
+
* <p>The number of seconds to wait before retrying the request.</p>
|
|
643
|
+
* @public
|
|
644
|
+
*/
|
|
645
|
+
retryAfterSeconds;
|
|
614
646
|
/**
|
|
615
647
|
* @internal
|
|
616
648
|
*/
|
|
@@ -620,23 +652,31 @@ var _ThrottlingException = class _ThrottlingException extends Inspector2ServiceE
|
|
|
620
652
|
$fault: "client",
|
|
621
653
|
...opts
|
|
622
654
|
});
|
|
623
|
-
this.name = "ThrottlingException";
|
|
624
|
-
this.$fault = "client";
|
|
625
|
-
this.$retryable = {
|
|
626
|
-
throttling: true
|
|
627
|
-
};
|
|
628
655
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
629
656
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
630
657
|
}
|
|
631
658
|
};
|
|
632
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
633
|
-
var ThrottlingException = _ThrottlingException;
|
|
634
659
|
var ValidationExceptionReason = {
|
|
635
660
|
CANNOT_PARSE: "CANNOT_PARSE",
|
|
636
661
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
637
662
|
OTHER: "OTHER"
|
|
638
663
|
};
|
|
639
|
-
var
|
|
664
|
+
var ValidationException = class _ValidationException extends Inspector2ServiceException {
|
|
665
|
+
static {
|
|
666
|
+
__name(this, "ValidationException");
|
|
667
|
+
}
|
|
668
|
+
name = "ValidationException";
|
|
669
|
+
$fault = "client";
|
|
670
|
+
/**
|
|
671
|
+
* <p>The reason for the validation failure.</p>
|
|
672
|
+
* @public
|
|
673
|
+
*/
|
|
674
|
+
reason;
|
|
675
|
+
/**
|
|
676
|
+
* <p>The fields that failed validation.</p>
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
679
|
+
fields;
|
|
640
680
|
/**
|
|
641
681
|
* @internal
|
|
642
682
|
*/
|
|
@@ -646,15 +686,11 @@ var _ValidationException = class _ValidationException extends Inspector2ServiceE
|
|
|
646
686
|
$fault: "client",
|
|
647
687
|
...opts
|
|
648
688
|
});
|
|
649
|
-
this.name = "ValidationException";
|
|
650
|
-
this.$fault = "client";
|
|
651
689
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
652
690
|
this.reason = opts.reason;
|
|
653
691
|
this.fields = opts.fields;
|
|
654
692
|
}
|
|
655
693
|
};
|
|
656
|
-
__name(_ValidationException, "ValidationException");
|
|
657
|
-
var ValidationException = _ValidationException;
|
|
658
694
|
var PackageType = {
|
|
659
695
|
IMAGE: "IMAGE",
|
|
660
696
|
ZIP: "ZIP"
|
|
@@ -682,7 +718,12 @@ var Runtime = {
|
|
|
682
718
|
RUBY_3_2: "RUBY_3_2",
|
|
683
719
|
UNSUPPORTED: "UNSUPPORTED"
|
|
684
720
|
};
|
|
685
|
-
var
|
|
721
|
+
var BadRequestException = class _BadRequestException extends Inspector2ServiceException {
|
|
722
|
+
static {
|
|
723
|
+
__name(this, "BadRequestException");
|
|
724
|
+
}
|
|
725
|
+
name = "BadRequestException";
|
|
726
|
+
$fault = "client";
|
|
686
727
|
/**
|
|
687
728
|
* @internal
|
|
688
729
|
*/
|
|
@@ -692,14 +733,15 @@ var _BadRequestException = class _BadRequestException extends Inspector2ServiceE
|
|
|
692
733
|
$fault: "client",
|
|
693
734
|
...opts
|
|
694
735
|
});
|
|
695
|
-
this.name = "BadRequestException";
|
|
696
|
-
this.$fault = "client";
|
|
697
736
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
698
737
|
}
|
|
699
738
|
};
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
739
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends Inspector2ServiceException {
|
|
740
|
+
static {
|
|
741
|
+
__name(this, "ResourceNotFoundException");
|
|
742
|
+
}
|
|
743
|
+
name = "ResourceNotFoundException";
|
|
744
|
+
$fault = "client";
|
|
703
745
|
/**
|
|
704
746
|
* @internal
|
|
705
747
|
*/
|
|
@@ -709,13 +751,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Inspec
|
|
|
709
751
|
$fault: "client",
|
|
710
752
|
...opts
|
|
711
753
|
});
|
|
712
|
-
this.name = "ResourceNotFoundException";
|
|
713
|
-
this.$fault = "client";
|
|
714
754
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
715
755
|
}
|
|
716
756
|
};
|
|
717
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
718
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
719
757
|
var CodeSnippetErrorCode = {
|
|
720
758
|
ACCESS_DENIED: "ACCESS_DENIED",
|
|
721
759
|
CODE_SNIPPET_NOT_FOUND: "CODE_SNIPPET_NOT_FOUND",
|
|
@@ -864,7 +902,22 @@ var CisSortOrder = {
|
|
|
864
902
|
ASC: "ASC",
|
|
865
903
|
DESC: "DESC"
|
|
866
904
|
};
|
|
867
|
-
var
|
|
905
|
+
var ConflictException = class _ConflictException extends Inspector2ServiceException {
|
|
906
|
+
static {
|
|
907
|
+
__name(this, "ConflictException");
|
|
908
|
+
}
|
|
909
|
+
name = "ConflictException";
|
|
910
|
+
$fault = "client";
|
|
911
|
+
/**
|
|
912
|
+
* <p>The ID of the conflicting resource.</p>
|
|
913
|
+
* @public
|
|
914
|
+
*/
|
|
915
|
+
resourceId;
|
|
916
|
+
/**
|
|
917
|
+
* <p>The type of the conflicting resource.</p>
|
|
918
|
+
* @public
|
|
919
|
+
*/
|
|
920
|
+
resourceType;
|
|
868
921
|
/**
|
|
869
922
|
* @internal
|
|
870
923
|
*/
|
|
@@ -874,15 +927,11 @@ var _ConflictException = class _ConflictException extends Inspector2ServiceExcep
|
|
|
874
927
|
$fault: "client",
|
|
875
928
|
...opts
|
|
876
929
|
});
|
|
877
|
-
this.name = "ConflictException";
|
|
878
|
-
this.$fault = "client";
|
|
879
930
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
880
931
|
this.resourceId = opts.resourceId;
|
|
881
932
|
this.resourceType = opts.resourceType;
|
|
882
933
|
}
|
|
883
934
|
};
|
|
884
|
-
__name(_ConflictException, "ConflictException");
|
|
885
|
-
var ConflictException = _ConflictException;
|
|
886
935
|
var GroupKey = {
|
|
887
936
|
ACCOUNT_ID: "ACCOUNT_ID",
|
|
888
937
|
ECR_REPOSITORY_NAME: "ECR_REPOSITORY_NAME",
|
|
@@ -3742,827 +3791,886 @@ var _sT = "scanType";
|
|
|
3742
3791
|
var _tK = "tagKeys";
|
|
3743
3792
|
|
|
3744
3793
|
// src/commands/AssociateMemberCommand.ts
|
|
3745
|
-
var
|
|
3794
|
+
var AssociateMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3746
3795
|
return [
|
|
3747
3796
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3748
3797
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3749
3798
|
];
|
|
3750
3799
|
}).s("Inspector2", "AssociateMember", {}).n("Inspector2Client", "AssociateMemberCommand").f(void 0, void 0).ser(se_AssociateMemberCommand).de(de_AssociateMemberCommand).build() {
|
|
3800
|
+
static {
|
|
3801
|
+
__name(this, "AssociateMemberCommand");
|
|
3802
|
+
}
|
|
3751
3803
|
};
|
|
3752
|
-
__name(_AssociateMemberCommand, "AssociateMemberCommand");
|
|
3753
|
-
var AssociateMemberCommand = _AssociateMemberCommand;
|
|
3754
3804
|
|
|
3755
3805
|
// src/commands/BatchGetAccountStatusCommand.ts
|
|
3756
3806
|
|
|
3757
3807
|
|
|
3758
3808
|
|
|
3759
|
-
var
|
|
3809
|
+
var BatchGetAccountStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3760
3810
|
return [
|
|
3761
3811
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3762
3812
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3763
3813
|
];
|
|
3764
3814
|
}).s("Inspector2", "BatchGetAccountStatus", {}).n("Inspector2Client", "BatchGetAccountStatusCommand").f(void 0, void 0).ser(se_BatchGetAccountStatusCommand).de(de_BatchGetAccountStatusCommand).build() {
|
|
3815
|
+
static {
|
|
3816
|
+
__name(this, "BatchGetAccountStatusCommand");
|
|
3817
|
+
}
|
|
3765
3818
|
};
|
|
3766
|
-
__name(_BatchGetAccountStatusCommand, "BatchGetAccountStatusCommand");
|
|
3767
|
-
var BatchGetAccountStatusCommand = _BatchGetAccountStatusCommand;
|
|
3768
3819
|
|
|
3769
3820
|
// src/commands/BatchGetCodeSnippetCommand.ts
|
|
3770
3821
|
|
|
3771
3822
|
|
|
3772
3823
|
|
|
3773
|
-
var
|
|
3824
|
+
var BatchGetCodeSnippetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3774
3825
|
return [
|
|
3775
3826
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3776
3827
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3777
3828
|
];
|
|
3778
3829
|
}).s("Inspector2", "BatchGetCodeSnippet", {}).n("Inspector2Client", "BatchGetCodeSnippetCommand").f(void 0, void 0).ser(se_BatchGetCodeSnippetCommand).de(de_BatchGetCodeSnippetCommand).build() {
|
|
3830
|
+
static {
|
|
3831
|
+
__name(this, "BatchGetCodeSnippetCommand");
|
|
3832
|
+
}
|
|
3779
3833
|
};
|
|
3780
|
-
__name(_BatchGetCodeSnippetCommand, "BatchGetCodeSnippetCommand");
|
|
3781
|
-
var BatchGetCodeSnippetCommand = _BatchGetCodeSnippetCommand;
|
|
3782
3834
|
|
|
3783
3835
|
// src/commands/BatchGetFindingDetailsCommand.ts
|
|
3784
3836
|
|
|
3785
3837
|
|
|
3786
3838
|
|
|
3787
|
-
var
|
|
3839
|
+
var BatchGetFindingDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3788
3840
|
return [
|
|
3789
3841
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3790
3842
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3791
3843
|
];
|
|
3792
3844
|
}).s("Inspector2", "BatchGetFindingDetails", {}).n("Inspector2Client", "BatchGetFindingDetailsCommand").f(void 0, void 0).ser(se_BatchGetFindingDetailsCommand).de(de_BatchGetFindingDetailsCommand).build() {
|
|
3845
|
+
static {
|
|
3846
|
+
__name(this, "BatchGetFindingDetailsCommand");
|
|
3847
|
+
}
|
|
3793
3848
|
};
|
|
3794
|
-
__name(_BatchGetFindingDetailsCommand, "BatchGetFindingDetailsCommand");
|
|
3795
|
-
var BatchGetFindingDetailsCommand = _BatchGetFindingDetailsCommand;
|
|
3796
3849
|
|
|
3797
3850
|
// src/commands/BatchGetFreeTrialInfoCommand.ts
|
|
3798
3851
|
|
|
3799
3852
|
|
|
3800
3853
|
|
|
3801
|
-
var
|
|
3854
|
+
var BatchGetFreeTrialInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3802
3855
|
return [
|
|
3803
3856
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3804
3857
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3805
3858
|
];
|
|
3806
3859
|
}).s("Inspector2", "BatchGetFreeTrialInfo", {}).n("Inspector2Client", "BatchGetFreeTrialInfoCommand").f(void 0, void 0).ser(se_BatchGetFreeTrialInfoCommand).de(de_BatchGetFreeTrialInfoCommand).build() {
|
|
3860
|
+
static {
|
|
3861
|
+
__name(this, "BatchGetFreeTrialInfoCommand");
|
|
3862
|
+
}
|
|
3807
3863
|
};
|
|
3808
|
-
__name(_BatchGetFreeTrialInfoCommand, "BatchGetFreeTrialInfoCommand");
|
|
3809
|
-
var BatchGetFreeTrialInfoCommand = _BatchGetFreeTrialInfoCommand;
|
|
3810
3864
|
|
|
3811
3865
|
// src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts
|
|
3812
3866
|
|
|
3813
3867
|
|
|
3814
3868
|
|
|
3815
|
-
var
|
|
3869
|
+
var BatchGetMemberEc2DeepInspectionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3816
3870
|
return [
|
|
3817
3871
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3818
3872
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3819
3873
|
];
|
|
3820
3874
|
}).s("Inspector2", "BatchGetMemberEc2DeepInspectionStatus", {}).n("Inspector2Client", "BatchGetMemberEc2DeepInspectionStatusCommand").f(void 0, void 0).ser(se_BatchGetMemberEc2DeepInspectionStatusCommand).de(de_BatchGetMemberEc2DeepInspectionStatusCommand).build() {
|
|
3875
|
+
static {
|
|
3876
|
+
__name(this, "BatchGetMemberEc2DeepInspectionStatusCommand");
|
|
3877
|
+
}
|
|
3821
3878
|
};
|
|
3822
|
-
__name(_BatchGetMemberEc2DeepInspectionStatusCommand, "BatchGetMemberEc2DeepInspectionStatusCommand");
|
|
3823
|
-
var BatchGetMemberEc2DeepInspectionStatusCommand = _BatchGetMemberEc2DeepInspectionStatusCommand;
|
|
3824
3879
|
|
|
3825
3880
|
// src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts
|
|
3826
3881
|
|
|
3827
3882
|
|
|
3828
3883
|
|
|
3829
|
-
var
|
|
3884
|
+
var BatchUpdateMemberEc2DeepInspectionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3830
3885
|
return [
|
|
3831
3886
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3832
3887
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3833
3888
|
];
|
|
3834
3889
|
}).s("Inspector2", "BatchUpdateMemberEc2DeepInspectionStatus", {}).n("Inspector2Client", "BatchUpdateMemberEc2DeepInspectionStatusCommand").f(void 0, void 0).ser(se_BatchUpdateMemberEc2DeepInspectionStatusCommand).de(de_BatchUpdateMemberEc2DeepInspectionStatusCommand).build() {
|
|
3890
|
+
static {
|
|
3891
|
+
__name(this, "BatchUpdateMemberEc2DeepInspectionStatusCommand");
|
|
3892
|
+
}
|
|
3835
3893
|
};
|
|
3836
|
-
__name(_BatchUpdateMemberEc2DeepInspectionStatusCommand, "BatchUpdateMemberEc2DeepInspectionStatusCommand");
|
|
3837
|
-
var BatchUpdateMemberEc2DeepInspectionStatusCommand = _BatchUpdateMemberEc2DeepInspectionStatusCommand;
|
|
3838
3894
|
|
|
3839
3895
|
// src/commands/CancelFindingsReportCommand.ts
|
|
3840
3896
|
|
|
3841
3897
|
|
|
3842
3898
|
|
|
3843
|
-
var
|
|
3899
|
+
var CancelFindingsReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3844
3900
|
return [
|
|
3845
3901
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3846
3902
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3847
3903
|
];
|
|
3848
3904
|
}).s("Inspector2", "CancelFindingsReport", {}).n("Inspector2Client", "CancelFindingsReportCommand").f(void 0, void 0).ser(se_CancelFindingsReportCommand).de(de_CancelFindingsReportCommand).build() {
|
|
3905
|
+
static {
|
|
3906
|
+
__name(this, "CancelFindingsReportCommand");
|
|
3907
|
+
}
|
|
3849
3908
|
};
|
|
3850
|
-
__name(_CancelFindingsReportCommand, "CancelFindingsReportCommand");
|
|
3851
|
-
var CancelFindingsReportCommand = _CancelFindingsReportCommand;
|
|
3852
3909
|
|
|
3853
3910
|
// src/commands/CancelSbomExportCommand.ts
|
|
3854
3911
|
|
|
3855
3912
|
|
|
3856
3913
|
|
|
3857
|
-
var
|
|
3914
|
+
var CancelSbomExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3858
3915
|
return [
|
|
3859
3916
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3860
3917
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3861
3918
|
];
|
|
3862
3919
|
}).s("Inspector2", "CancelSbomExport", {}).n("Inspector2Client", "CancelSbomExportCommand").f(void 0, void 0).ser(se_CancelSbomExportCommand).de(de_CancelSbomExportCommand).build() {
|
|
3920
|
+
static {
|
|
3921
|
+
__name(this, "CancelSbomExportCommand");
|
|
3922
|
+
}
|
|
3863
3923
|
};
|
|
3864
|
-
__name(_CancelSbomExportCommand, "CancelSbomExportCommand");
|
|
3865
|
-
var CancelSbomExportCommand = _CancelSbomExportCommand;
|
|
3866
3924
|
|
|
3867
3925
|
// src/commands/CreateCisScanConfigurationCommand.ts
|
|
3868
3926
|
|
|
3869
3927
|
|
|
3870
3928
|
|
|
3871
|
-
var
|
|
3929
|
+
var CreateCisScanConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3872
3930
|
return [
|
|
3873
3931
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3874
3932
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3875
3933
|
];
|
|
3876
3934
|
}).s("Inspector2", "CreateCisScanConfiguration", {}).n("Inspector2Client", "CreateCisScanConfigurationCommand").f(void 0, void 0).ser(se_CreateCisScanConfigurationCommand).de(de_CreateCisScanConfigurationCommand).build() {
|
|
3935
|
+
static {
|
|
3936
|
+
__name(this, "CreateCisScanConfigurationCommand");
|
|
3937
|
+
}
|
|
3877
3938
|
};
|
|
3878
|
-
__name(_CreateCisScanConfigurationCommand, "CreateCisScanConfigurationCommand");
|
|
3879
|
-
var CreateCisScanConfigurationCommand = _CreateCisScanConfigurationCommand;
|
|
3880
3939
|
|
|
3881
3940
|
// src/commands/CreateFilterCommand.ts
|
|
3882
3941
|
|
|
3883
3942
|
|
|
3884
3943
|
|
|
3885
|
-
var
|
|
3944
|
+
var CreateFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3886
3945
|
return [
|
|
3887
3946
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3888
3947
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3889
3948
|
];
|
|
3890
3949
|
}).s("Inspector2", "CreateFilter", {}).n("Inspector2Client", "CreateFilterCommand").f(void 0, void 0).ser(se_CreateFilterCommand).de(de_CreateFilterCommand).build() {
|
|
3950
|
+
static {
|
|
3951
|
+
__name(this, "CreateFilterCommand");
|
|
3952
|
+
}
|
|
3891
3953
|
};
|
|
3892
|
-
__name(_CreateFilterCommand, "CreateFilterCommand");
|
|
3893
|
-
var CreateFilterCommand = _CreateFilterCommand;
|
|
3894
3954
|
|
|
3895
3955
|
// src/commands/CreateFindingsReportCommand.ts
|
|
3896
3956
|
|
|
3897
3957
|
|
|
3898
3958
|
|
|
3899
|
-
var
|
|
3959
|
+
var CreateFindingsReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3900
3960
|
return [
|
|
3901
3961
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3902
3962
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3903
3963
|
];
|
|
3904
3964
|
}).s("Inspector2", "CreateFindingsReport", {}).n("Inspector2Client", "CreateFindingsReportCommand").f(void 0, void 0).ser(se_CreateFindingsReportCommand).de(de_CreateFindingsReportCommand).build() {
|
|
3965
|
+
static {
|
|
3966
|
+
__name(this, "CreateFindingsReportCommand");
|
|
3967
|
+
}
|
|
3905
3968
|
};
|
|
3906
|
-
__name(_CreateFindingsReportCommand, "CreateFindingsReportCommand");
|
|
3907
|
-
var CreateFindingsReportCommand = _CreateFindingsReportCommand;
|
|
3908
3969
|
|
|
3909
3970
|
// src/commands/CreateSbomExportCommand.ts
|
|
3910
3971
|
|
|
3911
3972
|
|
|
3912
3973
|
|
|
3913
|
-
var
|
|
3974
|
+
var CreateSbomExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3914
3975
|
return [
|
|
3915
3976
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3916
3977
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3917
3978
|
];
|
|
3918
3979
|
}).s("Inspector2", "CreateSbomExport", {}).n("Inspector2Client", "CreateSbomExportCommand").f(void 0, void 0).ser(se_CreateSbomExportCommand).de(de_CreateSbomExportCommand).build() {
|
|
3980
|
+
static {
|
|
3981
|
+
__name(this, "CreateSbomExportCommand");
|
|
3982
|
+
}
|
|
3919
3983
|
};
|
|
3920
|
-
__name(_CreateSbomExportCommand, "CreateSbomExportCommand");
|
|
3921
|
-
var CreateSbomExportCommand = _CreateSbomExportCommand;
|
|
3922
3984
|
|
|
3923
3985
|
// src/commands/DeleteCisScanConfigurationCommand.ts
|
|
3924
3986
|
|
|
3925
3987
|
|
|
3926
3988
|
|
|
3927
|
-
var
|
|
3989
|
+
var DeleteCisScanConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3928
3990
|
return [
|
|
3929
3991
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3930
3992
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3931
3993
|
];
|
|
3932
3994
|
}).s("Inspector2", "DeleteCisScanConfiguration", {}).n("Inspector2Client", "DeleteCisScanConfigurationCommand").f(void 0, void 0).ser(se_DeleteCisScanConfigurationCommand).de(de_DeleteCisScanConfigurationCommand).build() {
|
|
3995
|
+
static {
|
|
3996
|
+
__name(this, "DeleteCisScanConfigurationCommand");
|
|
3997
|
+
}
|
|
3933
3998
|
};
|
|
3934
|
-
__name(_DeleteCisScanConfigurationCommand, "DeleteCisScanConfigurationCommand");
|
|
3935
|
-
var DeleteCisScanConfigurationCommand = _DeleteCisScanConfigurationCommand;
|
|
3936
3999
|
|
|
3937
4000
|
// src/commands/DeleteFilterCommand.ts
|
|
3938
4001
|
|
|
3939
4002
|
|
|
3940
4003
|
|
|
3941
|
-
var
|
|
4004
|
+
var DeleteFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3942
4005
|
return [
|
|
3943
4006
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3944
4007
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3945
4008
|
];
|
|
3946
4009
|
}).s("Inspector2", "DeleteFilter", {}).n("Inspector2Client", "DeleteFilterCommand").f(void 0, void 0).ser(se_DeleteFilterCommand).de(de_DeleteFilterCommand).build() {
|
|
4010
|
+
static {
|
|
4011
|
+
__name(this, "DeleteFilterCommand");
|
|
4012
|
+
}
|
|
3947
4013
|
};
|
|
3948
|
-
__name(_DeleteFilterCommand, "DeleteFilterCommand");
|
|
3949
|
-
var DeleteFilterCommand = _DeleteFilterCommand;
|
|
3950
4014
|
|
|
3951
4015
|
// src/commands/DescribeOrganizationConfigurationCommand.ts
|
|
3952
4016
|
|
|
3953
4017
|
|
|
3954
4018
|
|
|
3955
|
-
var
|
|
4019
|
+
var DescribeOrganizationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3956
4020
|
return [
|
|
3957
4021
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3958
4022
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3959
4023
|
];
|
|
3960
4024
|
}).s("Inspector2", "DescribeOrganizationConfiguration", {}).n("Inspector2Client", "DescribeOrganizationConfigurationCommand").f(void 0, void 0).ser(se_DescribeOrganizationConfigurationCommand).de(de_DescribeOrganizationConfigurationCommand).build() {
|
|
4025
|
+
static {
|
|
4026
|
+
__name(this, "DescribeOrganizationConfigurationCommand");
|
|
4027
|
+
}
|
|
3961
4028
|
};
|
|
3962
|
-
__name(_DescribeOrganizationConfigurationCommand, "DescribeOrganizationConfigurationCommand");
|
|
3963
|
-
var DescribeOrganizationConfigurationCommand = _DescribeOrganizationConfigurationCommand;
|
|
3964
4029
|
|
|
3965
4030
|
// src/commands/DisableCommand.ts
|
|
3966
4031
|
|
|
3967
4032
|
|
|
3968
4033
|
|
|
3969
|
-
var
|
|
4034
|
+
var DisableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3970
4035
|
return [
|
|
3971
4036
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3972
4037
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3973
4038
|
];
|
|
3974
4039
|
}).s("Inspector2", "Disable", {}).n("Inspector2Client", "DisableCommand").f(void 0, void 0).ser(se_DisableCommand).de(de_DisableCommand).build() {
|
|
4040
|
+
static {
|
|
4041
|
+
__name(this, "DisableCommand");
|
|
4042
|
+
}
|
|
3975
4043
|
};
|
|
3976
|
-
__name(_DisableCommand, "DisableCommand");
|
|
3977
|
-
var DisableCommand = _DisableCommand;
|
|
3978
4044
|
|
|
3979
4045
|
// src/commands/DisableDelegatedAdminAccountCommand.ts
|
|
3980
4046
|
|
|
3981
4047
|
|
|
3982
4048
|
|
|
3983
|
-
var
|
|
4049
|
+
var DisableDelegatedAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3984
4050
|
return [
|
|
3985
4051
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3986
4052
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3987
4053
|
];
|
|
3988
4054
|
}).s("Inspector2", "DisableDelegatedAdminAccount", {}).n("Inspector2Client", "DisableDelegatedAdminAccountCommand").f(void 0, void 0).ser(se_DisableDelegatedAdminAccountCommand).de(de_DisableDelegatedAdminAccountCommand).build() {
|
|
4055
|
+
static {
|
|
4056
|
+
__name(this, "DisableDelegatedAdminAccountCommand");
|
|
4057
|
+
}
|
|
3989
4058
|
};
|
|
3990
|
-
__name(_DisableDelegatedAdminAccountCommand, "DisableDelegatedAdminAccountCommand");
|
|
3991
|
-
var DisableDelegatedAdminAccountCommand = _DisableDelegatedAdminAccountCommand;
|
|
3992
4059
|
|
|
3993
4060
|
// src/commands/DisassociateMemberCommand.ts
|
|
3994
4061
|
|
|
3995
4062
|
|
|
3996
4063
|
|
|
3997
|
-
var
|
|
4064
|
+
var DisassociateMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3998
4065
|
return [
|
|
3999
4066
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4000
4067
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4001
4068
|
];
|
|
4002
4069
|
}).s("Inspector2", "DisassociateMember", {}).n("Inspector2Client", "DisassociateMemberCommand").f(void 0, void 0).ser(se_DisassociateMemberCommand).de(de_DisassociateMemberCommand).build() {
|
|
4070
|
+
static {
|
|
4071
|
+
__name(this, "DisassociateMemberCommand");
|
|
4072
|
+
}
|
|
4003
4073
|
};
|
|
4004
|
-
__name(_DisassociateMemberCommand, "DisassociateMemberCommand");
|
|
4005
|
-
var DisassociateMemberCommand = _DisassociateMemberCommand;
|
|
4006
4074
|
|
|
4007
4075
|
// src/commands/EnableCommand.ts
|
|
4008
4076
|
|
|
4009
4077
|
|
|
4010
4078
|
|
|
4011
|
-
var
|
|
4079
|
+
var EnableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4012
4080
|
return [
|
|
4013
4081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4014
4082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4015
4083
|
];
|
|
4016
4084
|
}).s("Inspector2", "Enable", {}).n("Inspector2Client", "EnableCommand").f(void 0, void 0).ser(se_EnableCommand).de(de_EnableCommand).build() {
|
|
4085
|
+
static {
|
|
4086
|
+
__name(this, "EnableCommand");
|
|
4087
|
+
}
|
|
4017
4088
|
};
|
|
4018
|
-
__name(_EnableCommand, "EnableCommand");
|
|
4019
|
-
var EnableCommand = _EnableCommand;
|
|
4020
4089
|
|
|
4021
4090
|
// src/commands/EnableDelegatedAdminAccountCommand.ts
|
|
4022
4091
|
|
|
4023
4092
|
|
|
4024
4093
|
|
|
4025
|
-
var
|
|
4094
|
+
var EnableDelegatedAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4026
4095
|
return [
|
|
4027
4096
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4028
4097
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4029
4098
|
];
|
|
4030
4099
|
}).s("Inspector2", "EnableDelegatedAdminAccount", {}).n("Inspector2Client", "EnableDelegatedAdminAccountCommand").f(void 0, void 0).ser(se_EnableDelegatedAdminAccountCommand).de(de_EnableDelegatedAdminAccountCommand).build() {
|
|
4100
|
+
static {
|
|
4101
|
+
__name(this, "EnableDelegatedAdminAccountCommand");
|
|
4102
|
+
}
|
|
4031
4103
|
};
|
|
4032
|
-
__name(_EnableDelegatedAdminAccountCommand, "EnableDelegatedAdminAccountCommand");
|
|
4033
|
-
var EnableDelegatedAdminAccountCommand = _EnableDelegatedAdminAccountCommand;
|
|
4034
4104
|
|
|
4035
4105
|
// src/commands/GetCisScanReportCommand.ts
|
|
4036
4106
|
|
|
4037
4107
|
|
|
4038
4108
|
|
|
4039
|
-
var
|
|
4109
|
+
var GetCisScanReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4040
4110
|
return [
|
|
4041
4111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4042
4112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4043
4113
|
];
|
|
4044
4114
|
}).s("Inspector2", "GetCisScanReport", {}).n("Inspector2Client", "GetCisScanReportCommand").f(void 0, void 0).ser(se_GetCisScanReportCommand).de(de_GetCisScanReportCommand).build() {
|
|
4115
|
+
static {
|
|
4116
|
+
__name(this, "GetCisScanReportCommand");
|
|
4117
|
+
}
|
|
4045
4118
|
};
|
|
4046
|
-
__name(_GetCisScanReportCommand, "GetCisScanReportCommand");
|
|
4047
|
-
var GetCisScanReportCommand = _GetCisScanReportCommand;
|
|
4048
4119
|
|
|
4049
4120
|
// src/commands/GetCisScanResultDetailsCommand.ts
|
|
4050
4121
|
|
|
4051
4122
|
|
|
4052
4123
|
|
|
4053
|
-
var
|
|
4124
|
+
var GetCisScanResultDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4054
4125
|
return [
|
|
4055
4126
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4056
4127
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4057
4128
|
];
|
|
4058
4129
|
}).s("Inspector2", "GetCisScanResultDetails", {}).n("Inspector2Client", "GetCisScanResultDetailsCommand").f(void 0, void 0).ser(se_GetCisScanResultDetailsCommand).de(de_GetCisScanResultDetailsCommand).build() {
|
|
4130
|
+
static {
|
|
4131
|
+
__name(this, "GetCisScanResultDetailsCommand");
|
|
4132
|
+
}
|
|
4059
4133
|
};
|
|
4060
|
-
__name(_GetCisScanResultDetailsCommand, "GetCisScanResultDetailsCommand");
|
|
4061
|
-
var GetCisScanResultDetailsCommand = _GetCisScanResultDetailsCommand;
|
|
4062
4134
|
|
|
4063
4135
|
// src/commands/GetConfigurationCommand.ts
|
|
4064
4136
|
|
|
4065
4137
|
|
|
4066
4138
|
|
|
4067
|
-
var
|
|
4139
|
+
var GetConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4068
4140
|
return [
|
|
4069
4141
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4070
4142
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4071
4143
|
];
|
|
4072
4144
|
}).s("Inspector2", "GetConfiguration", {}).n("Inspector2Client", "GetConfigurationCommand").f(void 0, void 0).ser(se_GetConfigurationCommand).de(de_GetConfigurationCommand).build() {
|
|
4145
|
+
static {
|
|
4146
|
+
__name(this, "GetConfigurationCommand");
|
|
4147
|
+
}
|
|
4073
4148
|
};
|
|
4074
|
-
__name(_GetConfigurationCommand, "GetConfigurationCommand");
|
|
4075
|
-
var GetConfigurationCommand = _GetConfigurationCommand;
|
|
4076
4149
|
|
|
4077
4150
|
// src/commands/GetDelegatedAdminAccountCommand.ts
|
|
4078
4151
|
|
|
4079
4152
|
|
|
4080
4153
|
|
|
4081
|
-
var
|
|
4154
|
+
var GetDelegatedAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4082
4155
|
return [
|
|
4083
4156
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4084
4157
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4085
4158
|
];
|
|
4086
4159
|
}).s("Inspector2", "GetDelegatedAdminAccount", {}).n("Inspector2Client", "GetDelegatedAdminAccountCommand").f(void 0, void 0).ser(se_GetDelegatedAdminAccountCommand).de(de_GetDelegatedAdminAccountCommand).build() {
|
|
4160
|
+
static {
|
|
4161
|
+
__name(this, "GetDelegatedAdminAccountCommand");
|
|
4162
|
+
}
|
|
4087
4163
|
};
|
|
4088
|
-
__name(_GetDelegatedAdminAccountCommand, "GetDelegatedAdminAccountCommand");
|
|
4089
|
-
var GetDelegatedAdminAccountCommand = _GetDelegatedAdminAccountCommand;
|
|
4090
4164
|
|
|
4091
4165
|
// src/commands/GetEc2DeepInspectionConfigurationCommand.ts
|
|
4092
4166
|
|
|
4093
4167
|
|
|
4094
4168
|
|
|
4095
|
-
var
|
|
4169
|
+
var GetEc2DeepInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4096
4170
|
return [
|
|
4097
4171
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4098
4172
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4099
4173
|
];
|
|
4100
4174
|
}).s("Inspector2", "GetEc2DeepInspectionConfiguration", {}).n("Inspector2Client", "GetEc2DeepInspectionConfigurationCommand").f(void 0, void 0).ser(se_GetEc2DeepInspectionConfigurationCommand).de(de_GetEc2DeepInspectionConfigurationCommand).build() {
|
|
4175
|
+
static {
|
|
4176
|
+
__name(this, "GetEc2DeepInspectionConfigurationCommand");
|
|
4177
|
+
}
|
|
4101
4178
|
};
|
|
4102
|
-
__name(_GetEc2DeepInspectionConfigurationCommand, "GetEc2DeepInspectionConfigurationCommand");
|
|
4103
|
-
var GetEc2DeepInspectionConfigurationCommand = _GetEc2DeepInspectionConfigurationCommand;
|
|
4104
4179
|
|
|
4105
4180
|
// src/commands/GetEncryptionKeyCommand.ts
|
|
4106
4181
|
|
|
4107
4182
|
|
|
4108
4183
|
|
|
4109
|
-
var
|
|
4184
|
+
var GetEncryptionKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4110
4185
|
return [
|
|
4111
4186
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4112
4187
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4113
4188
|
];
|
|
4114
4189
|
}).s("Inspector2", "GetEncryptionKey", {}).n("Inspector2Client", "GetEncryptionKeyCommand").f(void 0, void 0).ser(se_GetEncryptionKeyCommand).de(de_GetEncryptionKeyCommand).build() {
|
|
4190
|
+
static {
|
|
4191
|
+
__name(this, "GetEncryptionKeyCommand");
|
|
4192
|
+
}
|
|
4115
4193
|
};
|
|
4116
|
-
__name(_GetEncryptionKeyCommand, "GetEncryptionKeyCommand");
|
|
4117
|
-
var GetEncryptionKeyCommand = _GetEncryptionKeyCommand;
|
|
4118
4194
|
|
|
4119
4195
|
// src/commands/GetFindingsReportStatusCommand.ts
|
|
4120
4196
|
|
|
4121
4197
|
|
|
4122
4198
|
|
|
4123
|
-
var
|
|
4199
|
+
var GetFindingsReportStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4124
4200
|
return [
|
|
4125
4201
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4126
4202
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4127
4203
|
];
|
|
4128
4204
|
}).s("Inspector2", "GetFindingsReportStatus", {}).n("Inspector2Client", "GetFindingsReportStatusCommand").f(void 0, void 0).ser(se_GetFindingsReportStatusCommand).de(de_GetFindingsReportStatusCommand).build() {
|
|
4205
|
+
static {
|
|
4206
|
+
__name(this, "GetFindingsReportStatusCommand");
|
|
4207
|
+
}
|
|
4129
4208
|
};
|
|
4130
|
-
__name(_GetFindingsReportStatusCommand, "GetFindingsReportStatusCommand");
|
|
4131
|
-
var GetFindingsReportStatusCommand = _GetFindingsReportStatusCommand;
|
|
4132
4209
|
|
|
4133
4210
|
// src/commands/GetMemberCommand.ts
|
|
4134
4211
|
|
|
4135
4212
|
|
|
4136
4213
|
|
|
4137
|
-
var
|
|
4214
|
+
var GetMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4138
4215
|
return [
|
|
4139
4216
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4140
4217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4141
4218
|
];
|
|
4142
4219
|
}).s("Inspector2", "GetMember", {}).n("Inspector2Client", "GetMemberCommand").f(void 0, void 0).ser(se_GetMemberCommand).de(de_GetMemberCommand).build() {
|
|
4220
|
+
static {
|
|
4221
|
+
__name(this, "GetMemberCommand");
|
|
4222
|
+
}
|
|
4143
4223
|
};
|
|
4144
|
-
__name(_GetMemberCommand, "GetMemberCommand");
|
|
4145
|
-
var GetMemberCommand = _GetMemberCommand;
|
|
4146
4224
|
|
|
4147
4225
|
// src/commands/GetSbomExportCommand.ts
|
|
4148
4226
|
|
|
4149
4227
|
|
|
4150
4228
|
|
|
4151
|
-
var
|
|
4229
|
+
var GetSbomExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4152
4230
|
return [
|
|
4153
4231
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4154
4232
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4155
4233
|
];
|
|
4156
4234
|
}).s("Inspector2", "GetSbomExport", {}).n("Inspector2Client", "GetSbomExportCommand").f(void 0, void 0).ser(se_GetSbomExportCommand).de(de_GetSbomExportCommand).build() {
|
|
4235
|
+
static {
|
|
4236
|
+
__name(this, "GetSbomExportCommand");
|
|
4237
|
+
}
|
|
4157
4238
|
};
|
|
4158
|
-
__name(_GetSbomExportCommand, "GetSbomExportCommand");
|
|
4159
|
-
var GetSbomExportCommand = _GetSbomExportCommand;
|
|
4160
4239
|
|
|
4161
4240
|
// src/commands/ListAccountPermissionsCommand.ts
|
|
4162
4241
|
|
|
4163
4242
|
|
|
4164
4243
|
|
|
4165
|
-
var
|
|
4244
|
+
var ListAccountPermissionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4166
4245
|
return [
|
|
4167
4246
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4168
4247
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4169
4248
|
];
|
|
4170
4249
|
}).s("Inspector2", "ListAccountPermissions", {}).n("Inspector2Client", "ListAccountPermissionsCommand").f(void 0, void 0).ser(se_ListAccountPermissionsCommand).de(de_ListAccountPermissionsCommand).build() {
|
|
4250
|
+
static {
|
|
4251
|
+
__name(this, "ListAccountPermissionsCommand");
|
|
4252
|
+
}
|
|
4171
4253
|
};
|
|
4172
|
-
__name(_ListAccountPermissionsCommand, "ListAccountPermissionsCommand");
|
|
4173
|
-
var ListAccountPermissionsCommand = _ListAccountPermissionsCommand;
|
|
4174
4254
|
|
|
4175
4255
|
// src/commands/ListCisScanConfigurationsCommand.ts
|
|
4176
4256
|
|
|
4177
4257
|
|
|
4178
4258
|
|
|
4179
|
-
var
|
|
4259
|
+
var ListCisScanConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4180
4260
|
return [
|
|
4181
4261
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4182
4262
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4183
4263
|
];
|
|
4184
4264
|
}).s("Inspector2", "ListCisScanConfigurations", {}).n("Inspector2Client", "ListCisScanConfigurationsCommand").f(void 0, void 0).ser(se_ListCisScanConfigurationsCommand).de(de_ListCisScanConfigurationsCommand).build() {
|
|
4265
|
+
static {
|
|
4266
|
+
__name(this, "ListCisScanConfigurationsCommand");
|
|
4267
|
+
}
|
|
4185
4268
|
};
|
|
4186
|
-
__name(_ListCisScanConfigurationsCommand, "ListCisScanConfigurationsCommand");
|
|
4187
|
-
var ListCisScanConfigurationsCommand = _ListCisScanConfigurationsCommand;
|
|
4188
4269
|
|
|
4189
4270
|
// src/commands/ListCisScanResultsAggregatedByChecksCommand.ts
|
|
4190
4271
|
|
|
4191
4272
|
|
|
4192
4273
|
|
|
4193
|
-
var
|
|
4274
|
+
var ListCisScanResultsAggregatedByChecksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4194
4275
|
return [
|
|
4195
4276
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4196
4277
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4197
4278
|
];
|
|
4198
4279
|
}).s("Inspector2", "ListCisScanResultsAggregatedByChecks", {}).n("Inspector2Client", "ListCisScanResultsAggregatedByChecksCommand").f(void 0, void 0).ser(se_ListCisScanResultsAggregatedByChecksCommand).de(de_ListCisScanResultsAggregatedByChecksCommand).build() {
|
|
4280
|
+
static {
|
|
4281
|
+
__name(this, "ListCisScanResultsAggregatedByChecksCommand");
|
|
4282
|
+
}
|
|
4199
4283
|
};
|
|
4200
|
-
__name(_ListCisScanResultsAggregatedByChecksCommand, "ListCisScanResultsAggregatedByChecksCommand");
|
|
4201
|
-
var ListCisScanResultsAggregatedByChecksCommand = _ListCisScanResultsAggregatedByChecksCommand;
|
|
4202
4284
|
|
|
4203
4285
|
// src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts
|
|
4204
4286
|
|
|
4205
4287
|
|
|
4206
4288
|
|
|
4207
|
-
var
|
|
4289
|
+
var ListCisScanResultsAggregatedByTargetResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4208
4290
|
return [
|
|
4209
4291
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4210
4292
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4211
4293
|
];
|
|
4212
4294
|
}).s("Inspector2", "ListCisScanResultsAggregatedByTargetResource", {}).n("Inspector2Client", "ListCisScanResultsAggregatedByTargetResourceCommand").f(void 0, void 0).ser(se_ListCisScanResultsAggregatedByTargetResourceCommand).de(de_ListCisScanResultsAggregatedByTargetResourceCommand).build() {
|
|
4295
|
+
static {
|
|
4296
|
+
__name(this, "ListCisScanResultsAggregatedByTargetResourceCommand");
|
|
4297
|
+
}
|
|
4213
4298
|
};
|
|
4214
|
-
__name(_ListCisScanResultsAggregatedByTargetResourceCommand, "ListCisScanResultsAggregatedByTargetResourceCommand");
|
|
4215
|
-
var ListCisScanResultsAggregatedByTargetResourceCommand = _ListCisScanResultsAggregatedByTargetResourceCommand;
|
|
4216
4299
|
|
|
4217
4300
|
// src/commands/ListCisScansCommand.ts
|
|
4218
4301
|
|
|
4219
4302
|
|
|
4220
4303
|
|
|
4221
|
-
var
|
|
4304
|
+
var ListCisScansCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4222
4305
|
return [
|
|
4223
4306
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4224
4307
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4225
4308
|
];
|
|
4226
4309
|
}).s("Inspector2", "ListCisScans", {}).n("Inspector2Client", "ListCisScansCommand").f(void 0, void 0).ser(se_ListCisScansCommand).de(de_ListCisScansCommand).build() {
|
|
4310
|
+
static {
|
|
4311
|
+
__name(this, "ListCisScansCommand");
|
|
4312
|
+
}
|
|
4227
4313
|
};
|
|
4228
|
-
__name(_ListCisScansCommand, "ListCisScansCommand");
|
|
4229
|
-
var ListCisScansCommand = _ListCisScansCommand;
|
|
4230
4314
|
|
|
4231
4315
|
// src/commands/ListCoverageCommand.ts
|
|
4232
4316
|
|
|
4233
4317
|
|
|
4234
4318
|
|
|
4235
|
-
var
|
|
4319
|
+
var ListCoverageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4236
4320
|
return [
|
|
4237
4321
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4238
4322
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4239
4323
|
];
|
|
4240
4324
|
}).s("Inspector2", "ListCoverage", {}).n("Inspector2Client", "ListCoverageCommand").f(void 0, void 0).ser(se_ListCoverageCommand).de(de_ListCoverageCommand).build() {
|
|
4325
|
+
static {
|
|
4326
|
+
__name(this, "ListCoverageCommand");
|
|
4327
|
+
}
|
|
4241
4328
|
};
|
|
4242
|
-
__name(_ListCoverageCommand, "ListCoverageCommand");
|
|
4243
|
-
var ListCoverageCommand = _ListCoverageCommand;
|
|
4244
4329
|
|
|
4245
4330
|
// src/commands/ListCoverageStatisticsCommand.ts
|
|
4246
4331
|
|
|
4247
4332
|
|
|
4248
4333
|
|
|
4249
|
-
var
|
|
4334
|
+
var ListCoverageStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4250
4335
|
return [
|
|
4251
4336
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4252
4337
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4253
4338
|
];
|
|
4254
4339
|
}).s("Inspector2", "ListCoverageStatistics", {}).n("Inspector2Client", "ListCoverageStatisticsCommand").f(void 0, void 0).ser(se_ListCoverageStatisticsCommand).de(de_ListCoverageStatisticsCommand).build() {
|
|
4340
|
+
static {
|
|
4341
|
+
__name(this, "ListCoverageStatisticsCommand");
|
|
4342
|
+
}
|
|
4255
4343
|
};
|
|
4256
|
-
__name(_ListCoverageStatisticsCommand, "ListCoverageStatisticsCommand");
|
|
4257
|
-
var ListCoverageStatisticsCommand = _ListCoverageStatisticsCommand;
|
|
4258
4344
|
|
|
4259
4345
|
// src/commands/ListDelegatedAdminAccountsCommand.ts
|
|
4260
4346
|
|
|
4261
4347
|
|
|
4262
4348
|
|
|
4263
|
-
var
|
|
4349
|
+
var ListDelegatedAdminAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4264
4350
|
return [
|
|
4265
4351
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4266
4352
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4267
4353
|
];
|
|
4268
4354
|
}).s("Inspector2", "ListDelegatedAdminAccounts", {}).n("Inspector2Client", "ListDelegatedAdminAccountsCommand").f(void 0, void 0).ser(se_ListDelegatedAdminAccountsCommand).de(de_ListDelegatedAdminAccountsCommand).build() {
|
|
4355
|
+
static {
|
|
4356
|
+
__name(this, "ListDelegatedAdminAccountsCommand");
|
|
4357
|
+
}
|
|
4269
4358
|
};
|
|
4270
|
-
__name(_ListDelegatedAdminAccountsCommand, "ListDelegatedAdminAccountsCommand");
|
|
4271
|
-
var ListDelegatedAdminAccountsCommand = _ListDelegatedAdminAccountsCommand;
|
|
4272
4359
|
|
|
4273
4360
|
// src/commands/ListFiltersCommand.ts
|
|
4274
4361
|
|
|
4275
4362
|
|
|
4276
4363
|
|
|
4277
|
-
var
|
|
4364
|
+
var ListFiltersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4278
4365
|
return [
|
|
4279
4366
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4280
4367
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4281
4368
|
];
|
|
4282
4369
|
}).s("Inspector2", "ListFilters", {}).n("Inspector2Client", "ListFiltersCommand").f(void 0, void 0).ser(se_ListFiltersCommand).de(de_ListFiltersCommand).build() {
|
|
4370
|
+
static {
|
|
4371
|
+
__name(this, "ListFiltersCommand");
|
|
4372
|
+
}
|
|
4283
4373
|
};
|
|
4284
|
-
__name(_ListFiltersCommand, "ListFiltersCommand");
|
|
4285
|
-
var ListFiltersCommand = _ListFiltersCommand;
|
|
4286
4374
|
|
|
4287
4375
|
// src/commands/ListFindingAggregationsCommand.ts
|
|
4288
4376
|
|
|
4289
4377
|
|
|
4290
4378
|
|
|
4291
|
-
var
|
|
4379
|
+
var ListFindingAggregationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4292
4380
|
return [
|
|
4293
4381
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4294
4382
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4295
4383
|
];
|
|
4296
4384
|
}).s("Inspector2", "ListFindingAggregations", {}).n("Inspector2Client", "ListFindingAggregationsCommand").f(void 0, void 0).ser(se_ListFindingAggregationsCommand).de(de_ListFindingAggregationsCommand).build() {
|
|
4385
|
+
static {
|
|
4386
|
+
__name(this, "ListFindingAggregationsCommand");
|
|
4387
|
+
}
|
|
4297
4388
|
};
|
|
4298
|
-
__name(_ListFindingAggregationsCommand, "ListFindingAggregationsCommand");
|
|
4299
|
-
var ListFindingAggregationsCommand = _ListFindingAggregationsCommand;
|
|
4300
4389
|
|
|
4301
4390
|
// src/commands/ListFindingsCommand.ts
|
|
4302
4391
|
|
|
4303
4392
|
|
|
4304
4393
|
|
|
4305
|
-
var
|
|
4394
|
+
var ListFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4306
4395
|
return [
|
|
4307
4396
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4308
4397
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4309
4398
|
];
|
|
4310
4399
|
}).s("Inspector2", "ListFindings", {}).n("Inspector2Client", "ListFindingsCommand").f(void 0, void 0).ser(se_ListFindingsCommand).de(de_ListFindingsCommand).build() {
|
|
4400
|
+
static {
|
|
4401
|
+
__name(this, "ListFindingsCommand");
|
|
4402
|
+
}
|
|
4311
4403
|
};
|
|
4312
|
-
__name(_ListFindingsCommand, "ListFindingsCommand");
|
|
4313
|
-
var ListFindingsCommand = _ListFindingsCommand;
|
|
4314
4404
|
|
|
4315
4405
|
// src/commands/ListMembersCommand.ts
|
|
4316
4406
|
|
|
4317
4407
|
|
|
4318
4408
|
|
|
4319
|
-
var
|
|
4409
|
+
var ListMembersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4320
4410
|
return [
|
|
4321
4411
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4322
4412
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4323
4413
|
];
|
|
4324
4414
|
}).s("Inspector2", "ListMembers", {}).n("Inspector2Client", "ListMembersCommand").f(void 0, void 0).ser(se_ListMembersCommand).de(de_ListMembersCommand).build() {
|
|
4415
|
+
static {
|
|
4416
|
+
__name(this, "ListMembersCommand");
|
|
4417
|
+
}
|
|
4325
4418
|
};
|
|
4326
|
-
__name(_ListMembersCommand, "ListMembersCommand");
|
|
4327
|
-
var ListMembersCommand = _ListMembersCommand;
|
|
4328
4419
|
|
|
4329
4420
|
// src/commands/ListTagsForResourceCommand.ts
|
|
4330
4421
|
|
|
4331
4422
|
|
|
4332
4423
|
|
|
4333
|
-
var
|
|
4424
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4334
4425
|
return [
|
|
4335
4426
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4336
4427
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4337
4428
|
];
|
|
4338
4429
|
}).s("Inspector2", "ListTagsForResource", {}).n("Inspector2Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4430
|
+
static {
|
|
4431
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4432
|
+
}
|
|
4339
4433
|
};
|
|
4340
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
4341
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
4342
4434
|
|
|
4343
4435
|
// src/commands/ListUsageTotalsCommand.ts
|
|
4344
4436
|
|
|
4345
4437
|
|
|
4346
4438
|
|
|
4347
|
-
var
|
|
4439
|
+
var ListUsageTotalsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4348
4440
|
return [
|
|
4349
4441
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4350
4442
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4351
4443
|
];
|
|
4352
4444
|
}).s("Inspector2", "ListUsageTotals", {}).n("Inspector2Client", "ListUsageTotalsCommand").f(void 0, void 0).ser(se_ListUsageTotalsCommand).de(de_ListUsageTotalsCommand).build() {
|
|
4445
|
+
static {
|
|
4446
|
+
__name(this, "ListUsageTotalsCommand");
|
|
4447
|
+
}
|
|
4353
4448
|
};
|
|
4354
|
-
__name(_ListUsageTotalsCommand, "ListUsageTotalsCommand");
|
|
4355
|
-
var ListUsageTotalsCommand = _ListUsageTotalsCommand;
|
|
4356
4449
|
|
|
4357
4450
|
// src/commands/ResetEncryptionKeyCommand.ts
|
|
4358
4451
|
|
|
4359
4452
|
|
|
4360
4453
|
|
|
4361
|
-
var
|
|
4454
|
+
var ResetEncryptionKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4362
4455
|
return [
|
|
4363
4456
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4364
4457
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4365
4458
|
];
|
|
4366
4459
|
}).s("Inspector2", "ResetEncryptionKey", {}).n("Inspector2Client", "ResetEncryptionKeyCommand").f(void 0, void 0).ser(se_ResetEncryptionKeyCommand).de(de_ResetEncryptionKeyCommand).build() {
|
|
4460
|
+
static {
|
|
4461
|
+
__name(this, "ResetEncryptionKeyCommand");
|
|
4462
|
+
}
|
|
4367
4463
|
};
|
|
4368
|
-
__name(_ResetEncryptionKeyCommand, "ResetEncryptionKeyCommand");
|
|
4369
|
-
var ResetEncryptionKeyCommand = _ResetEncryptionKeyCommand;
|
|
4370
4464
|
|
|
4371
4465
|
// src/commands/SearchVulnerabilitiesCommand.ts
|
|
4372
4466
|
|
|
4373
4467
|
|
|
4374
4468
|
|
|
4375
|
-
var
|
|
4469
|
+
var SearchVulnerabilitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4376
4470
|
return [
|
|
4377
4471
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4378
4472
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4379
4473
|
];
|
|
4380
4474
|
}).s("Inspector2", "SearchVulnerabilities", {}).n("Inspector2Client", "SearchVulnerabilitiesCommand").f(void 0, void 0).ser(se_SearchVulnerabilitiesCommand).de(de_SearchVulnerabilitiesCommand).build() {
|
|
4475
|
+
static {
|
|
4476
|
+
__name(this, "SearchVulnerabilitiesCommand");
|
|
4477
|
+
}
|
|
4381
4478
|
};
|
|
4382
|
-
__name(_SearchVulnerabilitiesCommand, "SearchVulnerabilitiesCommand");
|
|
4383
|
-
var SearchVulnerabilitiesCommand = _SearchVulnerabilitiesCommand;
|
|
4384
4479
|
|
|
4385
4480
|
// src/commands/SendCisSessionHealthCommand.ts
|
|
4386
4481
|
|
|
4387
4482
|
|
|
4388
4483
|
|
|
4389
|
-
var
|
|
4484
|
+
var SendCisSessionHealthCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4390
4485
|
return [
|
|
4391
4486
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4392
4487
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4393
4488
|
];
|
|
4394
4489
|
}).s("Inspector2", "SendCisSessionHealth", {}).n("Inspector2Client", "SendCisSessionHealthCommand").f(void 0, void 0).ser(se_SendCisSessionHealthCommand).de(de_SendCisSessionHealthCommand).build() {
|
|
4490
|
+
static {
|
|
4491
|
+
__name(this, "SendCisSessionHealthCommand");
|
|
4492
|
+
}
|
|
4395
4493
|
};
|
|
4396
|
-
__name(_SendCisSessionHealthCommand, "SendCisSessionHealthCommand");
|
|
4397
|
-
var SendCisSessionHealthCommand = _SendCisSessionHealthCommand;
|
|
4398
4494
|
|
|
4399
4495
|
// src/commands/SendCisSessionTelemetryCommand.ts
|
|
4400
4496
|
|
|
4401
4497
|
|
|
4402
4498
|
|
|
4403
|
-
var
|
|
4499
|
+
var SendCisSessionTelemetryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4404
4500
|
return [
|
|
4405
4501
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4406
4502
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4407
4503
|
];
|
|
4408
4504
|
}).s("Inspector2", "SendCisSessionTelemetry", {}).n("Inspector2Client", "SendCisSessionTelemetryCommand").f(void 0, void 0).ser(se_SendCisSessionTelemetryCommand).de(de_SendCisSessionTelemetryCommand).build() {
|
|
4505
|
+
static {
|
|
4506
|
+
__name(this, "SendCisSessionTelemetryCommand");
|
|
4507
|
+
}
|
|
4409
4508
|
};
|
|
4410
|
-
__name(_SendCisSessionTelemetryCommand, "SendCisSessionTelemetryCommand");
|
|
4411
|
-
var SendCisSessionTelemetryCommand = _SendCisSessionTelemetryCommand;
|
|
4412
4509
|
|
|
4413
4510
|
// src/commands/StartCisSessionCommand.ts
|
|
4414
4511
|
|
|
4415
4512
|
|
|
4416
4513
|
|
|
4417
|
-
var
|
|
4514
|
+
var StartCisSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4418
4515
|
return [
|
|
4419
4516
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4420
4517
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4421
4518
|
];
|
|
4422
4519
|
}).s("Inspector2", "StartCisSession", {}).n("Inspector2Client", "StartCisSessionCommand").f(void 0, void 0).ser(se_StartCisSessionCommand).de(de_StartCisSessionCommand).build() {
|
|
4520
|
+
static {
|
|
4521
|
+
__name(this, "StartCisSessionCommand");
|
|
4522
|
+
}
|
|
4423
4523
|
};
|
|
4424
|
-
__name(_StartCisSessionCommand, "StartCisSessionCommand");
|
|
4425
|
-
var StartCisSessionCommand = _StartCisSessionCommand;
|
|
4426
4524
|
|
|
4427
4525
|
// src/commands/StopCisSessionCommand.ts
|
|
4428
4526
|
|
|
4429
4527
|
|
|
4430
4528
|
|
|
4431
|
-
var
|
|
4529
|
+
var StopCisSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4432
4530
|
return [
|
|
4433
4531
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4434
4532
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4435
4533
|
];
|
|
4436
4534
|
}).s("Inspector2", "StopCisSession", {}).n("Inspector2Client", "StopCisSessionCommand").f(void 0, void 0).ser(se_StopCisSessionCommand).de(de_StopCisSessionCommand).build() {
|
|
4535
|
+
static {
|
|
4536
|
+
__name(this, "StopCisSessionCommand");
|
|
4537
|
+
}
|
|
4437
4538
|
};
|
|
4438
|
-
__name(_StopCisSessionCommand, "StopCisSessionCommand");
|
|
4439
|
-
var StopCisSessionCommand = _StopCisSessionCommand;
|
|
4440
4539
|
|
|
4441
4540
|
// src/commands/TagResourceCommand.ts
|
|
4442
4541
|
|
|
4443
4542
|
|
|
4444
4543
|
|
|
4445
|
-
var
|
|
4544
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4446
4545
|
return [
|
|
4447
4546
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4448
4547
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4449
4548
|
];
|
|
4450
4549
|
}).s("Inspector2", "TagResource", {}).n("Inspector2Client", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4550
|
+
static {
|
|
4551
|
+
__name(this, "TagResourceCommand");
|
|
4552
|
+
}
|
|
4451
4553
|
};
|
|
4452
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4453
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4454
4554
|
|
|
4455
4555
|
// src/commands/UntagResourceCommand.ts
|
|
4456
4556
|
|
|
4457
4557
|
|
|
4458
4558
|
|
|
4459
|
-
var
|
|
4559
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4460
4560
|
return [
|
|
4461
4561
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4462
4562
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4463
4563
|
];
|
|
4464
4564
|
}).s("Inspector2", "UntagResource", {}).n("Inspector2Client", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4565
|
+
static {
|
|
4566
|
+
__name(this, "UntagResourceCommand");
|
|
4567
|
+
}
|
|
4465
4568
|
};
|
|
4466
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4467
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4468
4569
|
|
|
4469
4570
|
// src/commands/UpdateCisScanConfigurationCommand.ts
|
|
4470
4571
|
|
|
4471
4572
|
|
|
4472
4573
|
|
|
4473
|
-
var
|
|
4574
|
+
var UpdateCisScanConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4474
4575
|
return [
|
|
4475
4576
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4476
4577
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4477
4578
|
];
|
|
4478
4579
|
}).s("Inspector2", "UpdateCisScanConfiguration", {}).n("Inspector2Client", "UpdateCisScanConfigurationCommand").f(void 0, void 0).ser(se_UpdateCisScanConfigurationCommand).de(de_UpdateCisScanConfigurationCommand).build() {
|
|
4580
|
+
static {
|
|
4581
|
+
__name(this, "UpdateCisScanConfigurationCommand");
|
|
4582
|
+
}
|
|
4479
4583
|
};
|
|
4480
|
-
__name(_UpdateCisScanConfigurationCommand, "UpdateCisScanConfigurationCommand");
|
|
4481
|
-
var UpdateCisScanConfigurationCommand = _UpdateCisScanConfigurationCommand;
|
|
4482
4584
|
|
|
4483
4585
|
// src/commands/UpdateConfigurationCommand.ts
|
|
4484
4586
|
|
|
4485
4587
|
|
|
4486
4588
|
|
|
4487
|
-
var
|
|
4589
|
+
var UpdateConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4488
4590
|
return [
|
|
4489
4591
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4490
4592
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4491
4593
|
];
|
|
4492
4594
|
}).s("Inspector2", "UpdateConfiguration", {}).n("Inspector2Client", "UpdateConfigurationCommand").f(void 0, void 0).ser(se_UpdateConfigurationCommand).de(de_UpdateConfigurationCommand).build() {
|
|
4595
|
+
static {
|
|
4596
|
+
__name(this, "UpdateConfigurationCommand");
|
|
4597
|
+
}
|
|
4493
4598
|
};
|
|
4494
|
-
__name(_UpdateConfigurationCommand, "UpdateConfigurationCommand");
|
|
4495
|
-
var UpdateConfigurationCommand = _UpdateConfigurationCommand;
|
|
4496
4599
|
|
|
4497
4600
|
// src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts
|
|
4498
4601
|
|
|
4499
4602
|
|
|
4500
4603
|
|
|
4501
|
-
var
|
|
4604
|
+
var UpdateEc2DeepInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4502
4605
|
return [
|
|
4503
4606
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4504
4607
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4505
4608
|
];
|
|
4506
4609
|
}).s("Inspector2", "UpdateEc2DeepInspectionConfiguration", {}).n("Inspector2Client", "UpdateEc2DeepInspectionConfigurationCommand").f(void 0, void 0).ser(se_UpdateEc2DeepInspectionConfigurationCommand).de(de_UpdateEc2DeepInspectionConfigurationCommand).build() {
|
|
4610
|
+
static {
|
|
4611
|
+
__name(this, "UpdateEc2DeepInspectionConfigurationCommand");
|
|
4612
|
+
}
|
|
4507
4613
|
};
|
|
4508
|
-
__name(_UpdateEc2DeepInspectionConfigurationCommand, "UpdateEc2DeepInspectionConfigurationCommand");
|
|
4509
|
-
var UpdateEc2DeepInspectionConfigurationCommand = _UpdateEc2DeepInspectionConfigurationCommand;
|
|
4510
4614
|
|
|
4511
4615
|
// src/commands/UpdateEncryptionKeyCommand.ts
|
|
4512
4616
|
|
|
4513
4617
|
|
|
4514
4618
|
|
|
4515
|
-
var
|
|
4619
|
+
var UpdateEncryptionKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4516
4620
|
return [
|
|
4517
4621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4518
4622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4519
4623
|
];
|
|
4520
4624
|
}).s("Inspector2", "UpdateEncryptionKey", {}).n("Inspector2Client", "UpdateEncryptionKeyCommand").f(void 0, void 0).ser(se_UpdateEncryptionKeyCommand).de(de_UpdateEncryptionKeyCommand).build() {
|
|
4625
|
+
static {
|
|
4626
|
+
__name(this, "UpdateEncryptionKeyCommand");
|
|
4627
|
+
}
|
|
4521
4628
|
};
|
|
4522
|
-
__name(_UpdateEncryptionKeyCommand, "UpdateEncryptionKeyCommand");
|
|
4523
|
-
var UpdateEncryptionKeyCommand = _UpdateEncryptionKeyCommand;
|
|
4524
4629
|
|
|
4525
4630
|
// src/commands/UpdateFilterCommand.ts
|
|
4526
4631
|
|
|
4527
4632
|
|
|
4528
4633
|
|
|
4529
|
-
var
|
|
4634
|
+
var UpdateFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4530
4635
|
return [
|
|
4531
4636
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4532
4637
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4533
4638
|
];
|
|
4534
4639
|
}).s("Inspector2", "UpdateFilter", {}).n("Inspector2Client", "UpdateFilterCommand").f(void 0, void 0).ser(se_UpdateFilterCommand).de(de_UpdateFilterCommand).build() {
|
|
4640
|
+
static {
|
|
4641
|
+
__name(this, "UpdateFilterCommand");
|
|
4642
|
+
}
|
|
4535
4643
|
};
|
|
4536
|
-
__name(_UpdateFilterCommand, "UpdateFilterCommand");
|
|
4537
|
-
var UpdateFilterCommand = _UpdateFilterCommand;
|
|
4538
4644
|
|
|
4539
4645
|
// src/commands/UpdateOrganizationConfigurationCommand.ts
|
|
4540
4646
|
|
|
4541
4647
|
|
|
4542
4648
|
|
|
4543
|
-
var
|
|
4649
|
+
var UpdateOrganizationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4544
4650
|
return [
|
|
4545
4651
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4546
4652
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4547
4653
|
];
|
|
4548
4654
|
}).s("Inspector2", "UpdateOrganizationConfiguration", {}).n("Inspector2Client", "UpdateOrganizationConfigurationCommand").f(void 0, void 0).ser(se_UpdateOrganizationConfigurationCommand).de(de_UpdateOrganizationConfigurationCommand).build() {
|
|
4655
|
+
static {
|
|
4656
|
+
__name(this, "UpdateOrganizationConfigurationCommand");
|
|
4657
|
+
}
|
|
4549
4658
|
};
|
|
4550
|
-
__name(_UpdateOrganizationConfigurationCommand, "UpdateOrganizationConfigurationCommand");
|
|
4551
|
-
var UpdateOrganizationConfigurationCommand = _UpdateOrganizationConfigurationCommand;
|
|
4552
4659
|
|
|
4553
4660
|
// src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts
|
|
4554
4661
|
|
|
4555
4662
|
|
|
4556
4663
|
|
|
4557
|
-
var
|
|
4664
|
+
var UpdateOrgEc2DeepInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4558
4665
|
return [
|
|
4559
4666
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4560
4667
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4561
4668
|
];
|
|
4562
4669
|
}).s("Inspector2", "UpdateOrgEc2DeepInspectionConfiguration", {}).n("Inspector2Client", "UpdateOrgEc2DeepInspectionConfigurationCommand").f(void 0, void 0).ser(se_UpdateOrgEc2DeepInspectionConfigurationCommand).de(de_UpdateOrgEc2DeepInspectionConfigurationCommand).build() {
|
|
4670
|
+
static {
|
|
4671
|
+
__name(this, "UpdateOrgEc2DeepInspectionConfigurationCommand");
|
|
4672
|
+
}
|
|
4563
4673
|
};
|
|
4564
|
-
__name(_UpdateOrgEc2DeepInspectionConfigurationCommand, "UpdateOrgEc2DeepInspectionConfigurationCommand");
|
|
4565
|
-
var UpdateOrgEc2DeepInspectionConfigurationCommand = _UpdateOrgEc2DeepInspectionConfigurationCommand;
|
|
4566
4674
|
|
|
4567
4675
|
// src/Inspector2.ts
|
|
4568
4676
|
var commands = {
|
|
@@ -4626,10 +4734,11 @@ var commands = {
|
|
|
4626
4734
|
UpdateOrganizationConfigurationCommand,
|
|
4627
4735
|
UpdateOrgEc2DeepInspectionConfigurationCommand
|
|
4628
4736
|
};
|
|
4629
|
-
var
|
|
4737
|
+
var Inspector2 = class extends Inspector2Client {
|
|
4738
|
+
static {
|
|
4739
|
+
__name(this, "Inspector2");
|
|
4740
|
+
}
|
|
4630
4741
|
};
|
|
4631
|
-
__name(_Inspector2, "Inspector2");
|
|
4632
|
-
var Inspector2 = _Inspector2;
|
|
4633
4742
|
(0, import_smithy_client.createAggregatedClient)(commands, Inspector2);
|
|
4634
4743
|
|
|
4635
4744
|
// src/pagination/GetCisScanResultDetailsPaginator.ts
|