@aws-sdk/client-migrationhubstrategy 3.927.0 → 3.929.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist-cjs/index.js +1256 -1073
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/MigrationHubStrategyClient.js +2 -0
  4. package/dist-es/commands/GetApplicationComponentDetailsCommand.js +3 -9
  5. package/dist-es/commands/GetApplicationComponentStrategiesCommand.js +3 -9
  6. package/dist-es/commands/GetAssessmentCommand.js +3 -9
  7. package/dist-es/commands/GetImportFileTaskCommand.js +3 -9
  8. package/dist-es/commands/GetLatestAssessmentIdCommand.js +3 -9
  9. package/dist-es/commands/GetPortfolioPreferencesCommand.js +3 -9
  10. package/dist-es/commands/GetPortfolioSummaryCommand.js +3 -9
  11. package/dist-es/commands/GetRecommendationReportDetailsCommand.js +3 -9
  12. package/dist-es/commands/GetServerDetailsCommand.js +3 -9
  13. package/dist-es/commands/GetServerStrategiesCommand.js +3 -9
  14. package/dist-es/commands/ListAnalyzableServersCommand.js +3 -9
  15. package/dist-es/commands/ListApplicationComponentsCommand.js +3 -9
  16. package/dist-es/commands/ListCollectorsCommand.js +3 -9
  17. package/dist-es/commands/ListImportFileTaskCommand.js +3 -9
  18. package/dist-es/commands/ListServersCommand.js +3 -9
  19. package/dist-es/commands/PutPortfolioPreferencesCommand.js +3 -9
  20. package/dist-es/commands/StartAssessmentCommand.js +3 -9
  21. package/dist-es/commands/StartImportFileTaskCommand.js +3 -9
  22. package/dist-es/commands/StartRecommendationReportGenerationCommand.js +3 -9
  23. package/dist-es/commands/StopAssessmentCommand.js +3 -9
  24. package/dist-es/commands/UpdateApplicationComponentConfigCommand.js +3 -10
  25. package/dist-es/commands/UpdateServerConfigCommand.js +3 -9
  26. package/dist-es/models/models_0.js +0 -5
  27. package/dist-es/runtimeConfig.shared.js +2 -0
  28. package/dist-es/schemas/schemas_0.js +1194 -0
  29. package/dist-types/MigrationHubStrategyClient.d.ts +10 -1
  30. package/dist-types/models/models_0.d.ts +0 -4
  31. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  32. package/dist-types/runtimeConfig.d.ts +1 -0
  33. package/dist-types/runtimeConfig.native.d.ts +1 -0
  34. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +165 -0
  36. package/dist-types/ts3.4/MigrationHubStrategyClient.d.ts +4 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +0 -3
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -0
  43. package/package.json +5 -5
  44. package/dist-es/protocols/Aws_restJson1.js +0 -890
  45. package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
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 MigrationHubStrategyClient 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,14 +110,14 @@ class MigrationHubStrategyClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class MigrationHubStrategyServiceException extends smithyClient.ServiceException {
113
+ let MigrationHubStrategyServiceException$1 = class MigrationHubStrategyServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, MigrationHubStrategyServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- class AccessDeniedException extends MigrationHubStrategyServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends MigrationHubStrategyServiceException$1 {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,7 +128,7 @@ class AccessDeniedException extends MigrationHubStrategyServiceException {
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- }
131
+ };
132
132
  const RuntimeAnalysisStatus = {
133
133
  ANALYSIS_FAILED: "ANALYSIS_FAILED",
134
134
  ANALYSIS_STARTED: "ANALYSIS_STARTED",
@@ -366,7 +366,7 @@ const AuthType = {
366
366
  NTLM: "NTLM",
367
367
  SSH: "SSH",
368
368
  };
369
- class InternalServerException extends MigrationHubStrategyServiceException {
369
+ let InternalServerException$1 = class InternalServerException extends MigrationHubStrategyServiceException$1 {
370
370
  name = "InternalServerException";
371
371
  $fault = "server";
372
372
  constructor(opts) {
@@ -377,8 +377,8 @@ class InternalServerException extends MigrationHubStrategyServiceException {
377
377
  });
378
378
  Object.setPrototypeOf(this, InternalServerException.prototype);
379
379
  }
380
- }
381
- class ResourceNotFoundException extends MigrationHubStrategyServiceException {
380
+ };
381
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends MigrationHubStrategyServiceException$1 {
382
382
  name = "ResourceNotFoundException";
383
383
  $fault = "client";
384
384
  constructor(opts) {
@@ -389,8 +389,8 @@ class ResourceNotFoundException extends MigrationHubStrategyServiceException {
389
389
  });
390
390
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
391
391
  }
392
- }
393
- class ThrottlingException extends MigrationHubStrategyServiceException {
392
+ };
393
+ let ThrottlingException$1 = class ThrottlingException extends MigrationHubStrategyServiceException$1 {
394
394
  name = "ThrottlingException";
395
395
  $fault = "client";
396
396
  constructor(opts) {
@@ -401,7 +401,7 @@ class ThrottlingException extends MigrationHubStrategyServiceException {
401
401
  });
402
402
  Object.setPrototypeOf(this, ThrottlingException.prototype);
403
403
  }
404
- }
404
+ };
405
405
  const ImportFileTaskStatus = {
406
406
  DELETE_FAILED: "DeleteFailed",
407
407
  DELETE_IN_PROGRESS: "DeleteInProgress",
@@ -412,7 +412,7 @@ const ImportFileTaskStatus = {
412
412
  IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess",
413
413
  IMPORT_SUCCESS: "ImportSuccess",
414
414
  };
415
- class ValidationException extends MigrationHubStrategyServiceException {
415
+ let ValidationException$1 = class ValidationException extends MigrationHubStrategyServiceException$1 {
416
416
  name = "ValidationException";
417
417
  $fault = "client";
418
418
  constructor(opts) {
@@ -423,8 +423,8 @@ class ValidationException extends MigrationHubStrategyServiceException {
423
423
  });
424
424
  Object.setPrototypeOf(this, ValidationException.prototype);
425
425
  }
426
- }
427
- class DependencyException extends MigrationHubStrategyServiceException {
426
+ };
427
+ let DependencyException$1 = class DependencyException extends MigrationHubStrategyServiceException$1 {
428
428
  name = "DependencyException";
429
429
  $fault = "server";
430
430
  constructor(opts) {
@@ -435,7 +435,7 @@ class DependencyException extends MigrationHubStrategyServiceException {
435
435
  });
436
436
  Object.setPrototypeOf(this, DependencyException.prototype);
437
437
  }
438
- }
438
+ };
439
439
  const DatabaseManagementPreference = {
440
440
  AWS_MANAGED: "AWS-managed",
441
441
  NO_PREFERENCE: "No preference",
@@ -504,7 +504,7 @@ const GroupName = {
504
504
  EXTERNAL_ID: "ExternalId",
505
505
  EXTERNAL_SOURCE_TYPE: "ExternalSourceType",
506
506
  };
507
- class ServiceLinkedRoleLockClientException extends MigrationHubStrategyServiceException {
507
+ let ServiceLinkedRoleLockClientException$1 = class ServiceLinkedRoleLockClientException extends MigrationHubStrategyServiceException$1 {
508
508
  name = "ServiceLinkedRoleLockClientException";
509
509
  $fault = "client";
510
510
  constructor(opts) {
@@ -515,7 +515,7 @@ class ServiceLinkedRoleLockClientException extends MigrationHubStrategyServiceEx
515
515
  });
516
516
  Object.setPrototypeOf(this, ServiceLinkedRoleLockClientException.prototype);
517
517
  }
518
- }
518
+ };
519
519
  const CollectorHealth = {
520
520
  COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY",
521
521
  COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY",
@@ -537,7 +537,7 @@ const ServerCriteria = {
537
537
  SERVER_ID: "SERVER_ID",
538
538
  STRATEGY: "STRATEGY",
539
539
  };
540
- class ConflictException extends MigrationHubStrategyServiceException {
540
+ let ConflictException$1 = class ConflictException extends MigrationHubStrategyServiceException$1 {
541
541
  name = "ConflictException";
542
542
  $fault = "client";
543
543
  constructor(opts) {
@@ -548,8 +548,8 @@ class ConflictException extends MigrationHubStrategyServiceException {
548
548
  });
549
549
  Object.setPrototypeOf(this, ConflictException.prototype);
550
550
  }
551
- }
552
- class ServiceQuotaExceededException extends MigrationHubStrategyServiceException {
551
+ };
552
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends MigrationHubStrategyServiceException$1 {
553
553
  name = "ServiceQuotaExceededException";
554
554
  $fault = "client";
555
555
  constructor(opts) {
@@ -560,7 +560,7 @@ class ServiceQuotaExceededException extends MigrationHubStrategyServiceException
560
560
  });
561
561
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
562
562
  }
563
- }
563
+ };
564
564
  const DataSourceType = {
565
565
  ADS: "ApplicationDiscoveryService",
566
566
  IMPORT: "Import",
@@ -576,910 +576,1199 @@ const VersionControl = {
576
576
  GITHUB: "GITHUB",
577
577
  GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
578
578
  };
579
- const UpdateApplicationComponentConfigRequestFilterSensitiveLog = (obj) => ({
580
- ...obj,
581
- ...(obj.secretsManagerKey && { secretsManagerKey: smithyClient.SENSITIVE_STRING }),
582
- });
583
579
 
584
- const se_GetApplicationComponentDetailsCommand = async (input, context) => {
585
- const b = core.requestBuilder(input, context);
586
- const headers = {};
587
- b.bp("/get-applicationcomponent-details/{applicationComponentId}");
588
- b.p("applicationComponentId", () => input.applicationComponentId, "{applicationComponentId}", false);
589
- let body;
590
- b.m("GET").h(headers).b(body);
591
- return b.build();
592
- };
593
- const se_GetApplicationComponentStrategiesCommand = async (input, context) => {
594
- const b = core.requestBuilder(input, context);
595
- const headers = {};
596
- b.bp("/get-applicationcomponent-strategies/{applicationComponentId}");
597
- b.p("applicationComponentId", () => input.applicationComponentId, "{applicationComponentId}", false);
598
- let body;
599
- b.m("GET").h(headers).b(body);
600
- return b.build();
601
- };
602
- const se_GetAssessmentCommand = async (input, context) => {
603
- const b = core.requestBuilder(input, context);
604
- const headers = {};
605
- b.bp("/get-assessment/{id}");
606
- b.p("id", () => input.id, "{id}", false);
607
- let body;
608
- b.m("GET").h(headers).b(body);
609
- return b.build();
610
- };
611
- const se_GetImportFileTaskCommand = async (input, context) => {
612
- const b = core.requestBuilder(input, context);
613
- const headers = {};
614
- b.bp("/get-import-file-task/{id}");
615
- b.p("id", () => input.id, "{id}", false);
616
- let body;
617
- b.m("GET").h(headers).b(body);
618
- return b.build();
619
- };
620
- const se_GetLatestAssessmentIdCommand = async (input, context) => {
621
- const b = core.requestBuilder(input, context);
622
- const headers = {};
623
- b.bp("/get-latest-assessment-id");
624
- let body;
625
- b.m("GET").h(headers).b(body);
626
- return b.build();
627
- };
628
- const se_GetPortfolioPreferencesCommand = async (input, context) => {
629
- const b = core.requestBuilder(input, context);
630
- const headers = {};
631
- b.bp("/get-portfolio-preferences");
632
- let body;
633
- b.m("GET").h(headers).b(body);
634
- return b.build();
635
- };
636
- const se_GetPortfolioSummaryCommand = async (input, context) => {
637
- const b = core.requestBuilder(input, context);
638
- const headers = {};
639
- b.bp("/get-portfolio-summary");
640
- let body;
641
- b.m("GET").h(headers).b(body);
642
- return b.build();
643
- };
644
- const se_GetRecommendationReportDetailsCommand = async (input, context) => {
645
- const b = core.requestBuilder(input, context);
646
- const headers = {};
647
- b.bp("/get-recommendation-report-details/{id}");
648
- b.p("id", () => input.id, "{id}", false);
649
- let body;
650
- b.m("GET").h(headers).b(body);
651
- return b.build();
652
- };
653
- const se_GetServerDetailsCommand = async (input, context) => {
654
- const b = core.requestBuilder(input, context);
655
- const headers = {};
656
- b.bp("/get-server-details/{serverId}");
657
- b.p("serverId", () => input.serverId, "{serverId}", false);
658
- const query = smithyClient.map({
659
- [_nT]: [, input[_nT]],
660
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
661
- });
662
- let body;
663
- b.m("GET").h(headers).q(query).b(body);
664
- return b.build();
665
- };
666
- const se_GetServerStrategiesCommand = async (input, context) => {
667
- const b = core.requestBuilder(input, context);
668
- const headers = {};
669
- b.bp("/get-server-strategies/{serverId}");
670
- b.p("serverId", () => input.serverId, "{serverId}", false);
671
- let body;
672
- b.m("GET").h(headers).b(body);
673
- return b.build();
674
- };
675
- const se_ListAnalyzableServersCommand = async (input, context) => {
676
- const b = core.requestBuilder(input, context);
677
- const headers = {
678
- "content-type": "application/json",
679
- };
680
- b.bp("/list-analyzable-servers");
681
- let body;
682
- body = JSON.stringify(smithyClient.take(input, {
683
- maxResults: [],
684
- nextToken: [],
685
- sort: [],
686
- }));
687
- b.m("POST").h(headers).b(body);
688
- return b.build();
689
- };
690
- const se_ListApplicationComponentsCommand = async (input, context) => {
691
- const b = core.requestBuilder(input, context);
692
- const headers = {
693
- "content-type": "application/json",
694
- };
695
- b.bp("/list-applicationcomponents");
696
- let body;
697
- body = JSON.stringify(smithyClient.take(input, {
698
- applicationComponentCriteria: [],
699
- filterValue: [],
700
- groupIdFilter: (_) => smithyClient._json(_),
701
- maxResults: [],
702
- nextToken: [],
703
- sort: [],
704
- }));
705
- b.m("POST").h(headers).b(body);
706
- return b.build();
707
- };
708
- const se_ListCollectorsCommand = async (input, context) => {
709
- const b = core.requestBuilder(input, context);
710
- const headers = {};
711
- b.bp("/list-collectors");
712
- const query = smithyClient.map({
713
- [_nT]: [, input[_nT]],
714
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
715
- });
716
- let body;
717
- b.m("GET").h(headers).q(query).b(body);
718
- return b.build();
719
- };
720
- const se_ListImportFileTaskCommand = async (input, context) => {
721
- const b = core.requestBuilder(input, context);
722
- const headers = {};
723
- b.bp("/list-import-file-task");
724
- const query = smithyClient.map({
725
- [_nT]: [, input[_nT]],
726
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
727
- });
728
- let body;
729
- b.m("GET").h(headers).q(query).b(body);
730
- return b.build();
731
- };
732
- const se_ListServersCommand = async (input, context) => {
733
- const b = core.requestBuilder(input, context);
734
- const headers = {
735
- "content-type": "application/json",
736
- };
737
- b.bp("/list-servers");
738
- let body;
739
- body = JSON.stringify(smithyClient.take(input, {
740
- filterValue: [],
741
- groupIdFilter: (_) => smithyClient._json(_),
742
- maxResults: [],
743
- nextToken: [],
744
- serverCriteria: [],
745
- sort: [],
746
- }));
747
- b.m("POST").h(headers).b(body);
748
- return b.build();
749
- };
750
- const se_PutPortfolioPreferencesCommand = async (input, context) => {
751
- const b = core.requestBuilder(input, context);
752
- const headers = {
753
- "content-type": "application/json",
754
- };
755
- b.bp("/put-portfolio-preferences");
756
- let body;
757
- body = JSON.stringify(smithyClient.take(input, {
758
- applicationMode: [],
759
- applicationPreferences: (_) => smithyClient._json(_),
760
- databasePreferences: (_) => smithyClient._json(_),
761
- prioritizeBusinessGoals: (_) => smithyClient._json(_),
762
- }));
763
- b.m("POST").h(headers).b(body);
764
- return b.build();
765
- };
766
- const se_StartAssessmentCommand = async (input, context) => {
767
- const b = core.requestBuilder(input, context);
768
- const headers = {
769
- "content-type": "application/json",
770
- };
771
- b.bp("/start-assessment");
772
- let body;
773
- body = JSON.stringify(smithyClient.take(input, {
774
- assessmentDataSourceType: [],
775
- assessmentTargets: (_) => smithyClient._json(_),
776
- s3bucketForAnalysisData: [],
777
- s3bucketForReportData: [],
778
- }));
779
- b.m("POST").h(headers).b(body);
780
- return b.build();
781
- };
782
- const se_StartImportFileTaskCommand = async (input, context) => {
783
- const b = core.requestBuilder(input, context);
784
- const headers = {
785
- "content-type": "application/json",
786
- };
787
- b.bp("/start-import-file-task");
788
- let body;
789
- body = JSON.stringify(smithyClient.take(input, {
790
- S3Bucket: [],
791
- dataSourceType: [],
792
- groupId: (_) => smithyClient._json(_),
793
- name: [],
794
- s3bucketForReportData: [],
795
- s3key: [],
796
- }));
797
- b.m("POST").h(headers).b(body);
798
- return b.build();
799
- };
800
- const se_StartRecommendationReportGenerationCommand = async (input, context) => {
801
- const b = core.requestBuilder(input, context);
802
- const headers = {
803
- "content-type": "application/json",
804
- };
805
- b.bp("/start-recommendation-report-generation");
806
- let body;
807
- body = JSON.stringify(smithyClient.take(input, {
808
- groupIdFilter: (_) => smithyClient._json(_),
809
- outputFormat: [],
810
- }));
811
- b.m("POST").h(headers).b(body);
812
- return b.build();
813
- };
814
- const se_StopAssessmentCommand = async (input, context) => {
815
- const b = core.requestBuilder(input, context);
816
- const headers = {
817
- "content-type": "application/json",
818
- };
819
- b.bp("/stop-assessment");
820
- let body;
821
- body = JSON.stringify(smithyClient.take(input, {
822
- assessmentId: [],
823
- }));
824
- b.m("POST").h(headers).b(body);
825
- return b.build();
826
- };
827
- const se_UpdateApplicationComponentConfigCommand = async (input, context) => {
828
- const b = core.requestBuilder(input, context);
829
- const headers = {
830
- "content-type": "application/json",
831
- };
832
- b.bp("/update-applicationcomponent-config");
833
- let body;
834
- body = JSON.stringify(smithyClient.take(input, {
835
- appType: [],
836
- applicationComponentId: [],
837
- configureOnly: [],
838
- inclusionStatus: [],
839
- secretsManagerKey: [],
840
- sourceCodeList: (_) => smithyClient._json(_),
841
- strategyOption: (_) => smithyClient._json(_),
842
- }));
843
- b.m("POST").h(headers).b(body);
844
- return b.build();
845
- };
846
- const se_UpdateServerConfigCommand = async (input, context) => {
847
- const b = core.requestBuilder(input, context);
848
- const headers = {
849
- "content-type": "application/json",
850
- };
851
- b.bp("/update-server-config");
852
- let body;
853
- body = JSON.stringify(smithyClient.take(input, {
854
- serverId: [],
855
- strategyOption: (_) => smithyClient._json(_),
856
- }));
857
- b.m("POST").h(headers).b(body);
858
- return b.build();
859
- };
860
- const de_GetApplicationComponentDetailsCommand = async (output, context) => {
861
- if (output.statusCode !== 200 && output.statusCode >= 300) {
862
- return de_CommandError(output, context);
863
- }
864
- const contents = smithyClient.map({
865
- $metadata: deserializeMetadata(output),
866
- });
867
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
868
- const doc = smithyClient.take(data, {
869
- applicationComponentDetail: (_) => de_ApplicationComponentDetail(_),
870
- associatedApplications: smithyClient._json,
871
- associatedServerIds: smithyClient._json,
872
- moreApplicationResource: smithyClient.expectBoolean,
873
- });
874
- Object.assign(contents, doc);
875
- return contents;
876
- };
877
- const de_GetApplicationComponentStrategiesCommand = async (output, context) => {
878
- if (output.statusCode !== 200 && output.statusCode >= 300) {
879
- return de_CommandError(output, context);
880
- }
881
- const contents = smithyClient.map({
882
- $metadata: deserializeMetadata(output),
883
- });
884
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
885
- const doc = smithyClient.take(data, {
886
- applicationComponentStrategies: smithyClient._json,
887
- });
888
- Object.assign(contents, doc);
889
- return contents;
890
- };
891
- const de_GetAssessmentCommand = async (output, context) => {
892
- if (output.statusCode !== 200 && output.statusCode >= 300) {
893
- return de_CommandError(output, context);
894
- }
895
- const contents = smithyClient.map({
896
- $metadata: deserializeMetadata(output),
897
- });
898
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
899
- const doc = smithyClient.take(data, {
900
- assessmentTargets: smithyClient._json,
901
- dataCollectionDetails: (_) => de_DataCollectionDetails(_),
902
- id: smithyClient.expectString,
903
- });
904
- Object.assign(contents, doc);
905
- return contents;
906
- };
907
- const de_GetImportFileTaskCommand = async (output, context) => {
908
- if (output.statusCode !== 200 && output.statusCode >= 300) {
909
- return de_CommandError(output, context);
910
- }
911
- const contents = smithyClient.map({
912
- $metadata: deserializeMetadata(output),
913
- });
914
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
915
- const doc = smithyClient.take(data, {
916
- completionTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
917
- id: smithyClient.expectString,
918
- importName: smithyClient.expectString,
919
- inputS3Bucket: smithyClient.expectString,
920
- inputS3Key: smithyClient.expectString,
921
- numberOfRecordsFailed: smithyClient.expectInt32,
922
- numberOfRecordsSuccess: smithyClient.expectInt32,
923
- startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
924
- status: smithyClient.expectString,
925
- statusReportS3Bucket: smithyClient.expectString,
926
- statusReportS3Key: smithyClient.expectString,
927
- });
928
- Object.assign(contents, doc);
929
- return contents;
930
- };
931
- const de_GetLatestAssessmentIdCommand = async (output, context) => {
932
- if (output.statusCode !== 200 && output.statusCode >= 300) {
933
- return de_CommandError(output, context);
934
- }
935
- const contents = smithyClient.map({
936
- $metadata: deserializeMetadata(output),
937
- });
938
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
939
- const doc = smithyClient.take(data, {
940
- id: smithyClient.expectString,
941
- });
942
- Object.assign(contents, doc);
943
- return contents;
944
- };
945
- const de_GetPortfolioPreferencesCommand = async (output, context) => {
946
- if (output.statusCode !== 200 && output.statusCode >= 300) {
947
- return de_CommandError(output, context);
948
- }
949
- const contents = smithyClient.map({
950
- $metadata: deserializeMetadata(output),
951
- });
952
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
953
- const doc = smithyClient.take(data, {
954
- applicationMode: smithyClient.expectString,
955
- applicationPreferences: smithyClient._json,
956
- databasePreferences: smithyClient._json,
957
- prioritizeBusinessGoals: smithyClient._json,
958
- });
959
- Object.assign(contents, doc);
960
- return contents;
961
- };
962
- const de_GetPortfolioSummaryCommand = async (output, context) => {
963
- if (output.statusCode !== 200 && output.statusCode >= 300) {
964
- return de_CommandError(output, context);
965
- }
966
- const contents = smithyClient.map({
967
- $metadata: deserializeMetadata(output),
968
- });
969
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
970
- const doc = smithyClient.take(data, {
971
- assessmentSummary: (_) => de_AssessmentSummary(_),
972
- });
973
- Object.assign(contents, doc);
974
- return contents;
975
- };
976
- const de_GetRecommendationReportDetailsCommand = async (output, context) => {
977
- if (output.statusCode !== 200 && output.statusCode >= 300) {
978
- return de_CommandError(output, context);
979
- }
980
- const contents = smithyClient.map({
981
- $metadata: deserializeMetadata(output),
982
- });
983
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
984
- const doc = smithyClient.take(data, {
985
- id: smithyClient.expectString,
986
- recommendationReportDetails: (_) => de_RecommendationReportDetails(_),
987
- });
988
- Object.assign(contents, doc);
989
- return contents;
990
- };
991
- const de_GetServerDetailsCommand = async (output, context) => {
992
- if (output.statusCode !== 200 && output.statusCode >= 300) {
993
- return de_CommandError(output, context);
994
- }
995
- const contents = smithyClient.map({
996
- $metadata: deserializeMetadata(output),
997
- });
998
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
999
- const doc = smithyClient.take(data, {
1000
- associatedApplications: smithyClient._json,
1001
- nextToken: smithyClient.expectString,
1002
- serverDetail: (_) => de_ServerDetail(_),
1003
- });
1004
- Object.assign(contents, doc);
1005
- return contents;
1006
- };
1007
- const de_GetServerStrategiesCommand = async (output, context) => {
1008
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1009
- return de_CommandError(output, context);
1010
- }
1011
- const contents = smithyClient.map({
1012
- $metadata: deserializeMetadata(output),
1013
- });
1014
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1015
- const doc = smithyClient.take(data, {
1016
- serverStrategies: smithyClient._json,
1017
- });
1018
- Object.assign(contents, doc);
1019
- return contents;
1020
- };
1021
- const de_ListAnalyzableServersCommand = async (output, context) => {
1022
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1023
- return de_CommandError(output, context);
1024
- }
1025
- const contents = smithyClient.map({
1026
- $metadata: deserializeMetadata(output),
1027
- });
1028
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1029
- const doc = smithyClient.take(data, {
1030
- analyzableServers: smithyClient._json,
1031
- nextToken: smithyClient.expectString,
1032
- });
1033
- Object.assign(contents, doc);
1034
- return contents;
1035
- };
1036
- const de_ListApplicationComponentsCommand = async (output, context) => {
1037
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1038
- return de_CommandError(output, context);
1039
- }
1040
- const contents = smithyClient.map({
1041
- $metadata: deserializeMetadata(output),
1042
- });
1043
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1044
- const doc = smithyClient.take(data, {
1045
- applicationComponentInfos: (_) => de_ApplicationComponentDetails(_),
1046
- nextToken: smithyClient.expectString,
1047
- });
1048
- Object.assign(contents, doc);
1049
- return contents;
1050
- };
1051
- const de_ListCollectorsCommand = async (output, context) => {
1052
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1053
- return de_CommandError(output, context);
1054
- }
1055
- const contents = smithyClient.map({
1056
- $metadata: deserializeMetadata(output),
1057
- });
1058
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1059
- const doc = smithyClient.take(data, {
1060
- Collectors: smithyClient._json,
1061
- nextToken: smithyClient.expectString,
1062
- });
1063
- Object.assign(contents, doc);
1064
- return contents;
1065
- };
1066
- const de_ListImportFileTaskCommand = async (output, context) => {
1067
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1068
- return de_CommandError(output, context);
1069
- }
1070
- const contents = smithyClient.map({
1071
- $metadata: deserializeMetadata(output),
1072
- });
1073
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1074
- const doc = smithyClient.take(data, {
1075
- nextToken: smithyClient.expectString,
1076
- taskInfos: (_) => de_ListImportFileTaskInformation(_),
1077
- });
1078
- Object.assign(contents, doc);
1079
- return contents;
1080
- };
1081
- const de_ListServersCommand = async (output, context) => {
1082
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1083
- return de_CommandError(output, context);
1084
- }
1085
- const contents = smithyClient.map({
1086
- $metadata: deserializeMetadata(output),
1087
- });
1088
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1089
- const doc = smithyClient.take(data, {
1090
- nextToken: smithyClient.expectString,
1091
- serverInfos: (_) => de_ServerDetails(_),
1092
- });
1093
- Object.assign(contents, doc);
1094
- return contents;
1095
- };
1096
- const de_PutPortfolioPreferencesCommand = async (output, context) => {
1097
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1098
- return de_CommandError(output, context);
1099
- }
1100
- const contents = smithyClient.map({
1101
- $metadata: deserializeMetadata(output),
1102
- });
1103
- await smithyClient.collectBody(output.body, context);
1104
- return contents;
1105
- };
1106
- const de_StartAssessmentCommand = async (output, context) => {
1107
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1108
- return de_CommandError(output, context);
1109
- }
1110
- const contents = smithyClient.map({
1111
- $metadata: deserializeMetadata(output),
1112
- });
1113
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1114
- const doc = smithyClient.take(data, {
1115
- assessmentId: smithyClient.expectString,
1116
- });
1117
- Object.assign(contents, doc);
1118
- return contents;
1119
- };
1120
- const de_StartImportFileTaskCommand = async (output, context) => {
1121
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1122
- return de_CommandError(output, context);
1123
- }
1124
- const contents = smithyClient.map({
1125
- $metadata: deserializeMetadata(output),
1126
- });
1127
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1128
- const doc = smithyClient.take(data, {
1129
- id: smithyClient.expectString,
1130
- });
1131
- Object.assign(contents, doc);
1132
- return contents;
1133
- };
1134
- const de_StartRecommendationReportGenerationCommand = async (output, context) => {
1135
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1136
- return de_CommandError(output, context);
1137
- }
1138
- const contents = smithyClient.map({
1139
- $metadata: deserializeMetadata(output),
1140
- });
1141
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1142
- const doc = smithyClient.take(data, {
1143
- id: smithyClient.expectString,
1144
- });
1145
- Object.assign(contents, doc);
1146
- return contents;
1147
- };
1148
- const de_StopAssessmentCommand = async (output, context) => {
1149
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1150
- return de_CommandError(output, context);
1151
- }
1152
- const contents = smithyClient.map({
1153
- $metadata: deserializeMetadata(output),
1154
- });
1155
- await smithyClient.collectBody(output.body, context);
1156
- return contents;
1157
- };
1158
- const de_UpdateApplicationComponentConfigCommand = async (output, context) => {
1159
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1160
- return de_CommandError(output, context);
1161
- }
1162
- const contents = smithyClient.map({
1163
- $metadata: deserializeMetadata(output),
1164
- });
1165
- await smithyClient.collectBody(output.body, context);
1166
- return contents;
1167
- };
1168
- const de_UpdateServerConfigCommand = async (output, context) => {
1169
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1170
- return de_CommandError(output, context);
1171
- }
1172
- const contents = smithyClient.map({
1173
- $metadata: deserializeMetadata(output),
1174
- });
1175
- await smithyClient.collectBody(output.body, context);
1176
- return contents;
1177
- };
1178
- const de_CommandError = async (output, context) => {
1179
- const parsedOutput = {
1180
- ...output,
1181
- body: await core$1.parseJsonErrorBody(output.body, context),
1182
- };
1183
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1184
- switch (errorCode) {
1185
- case "InternalServerException":
1186
- case "com.amazonaws.migrationhubstrategy#InternalServerException":
1187
- throw await de_InternalServerExceptionRes(parsedOutput);
1188
- case "ResourceNotFoundException":
1189
- case "com.amazonaws.migrationhubstrategy#ResourceNotFoundException":
1190
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1191
- case "ThrottlingException":
1192
- case "com.amazonaws.migrationhubstrategy#ThrottlingException":
1193
- throw await de_ThrottlingExceptionRes(parsedOutput);
1194
- case "AccessDeniedException":
1195
- case "com.amazonaws.migrationhubstrategy#AccessDeniedException":
1196
- throw await de_AccessDeniedExceptionRes(parsedOutput);
1197
- case "ValidationException":
1198
- case "com.amazonaws.migrationhubstrategy#ValidationException":
1199
- throw await de_ValidationExceptionRes(parsedOutput);
1200
- case "DependencyException":
1201
- case "com.amazonaws.migrationhubstrategy#DependencyException":
1202
- throw await de_DependencyExceptionRes(parsedOutput);
1203
- case "ServiceLinkedRoleLockClientException":
1204
- case "com.amazonaws.migrationhubstrategy#ServiceLinkedRoleLockClientException":
1205
- throw await de_ServiceLinkedRoleLockClientExceptionRes(parsedOutput);
1206
- case "ConflictException":
1207
- case "com.amazonaws.migrationhubstrategy#ConflictException":
1208
- throw await de_ConflictExceptionRes(parsedOutput);
1209
- case "ServiceQuotaExceededException":
1210
- case "com.amazonaws.migrationhubstrategy#ServiceQuotaExceededException":
1211
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
1212
- default:
1213
- const parsedBody = parsedOutput.body;
1214
- return throwDefaultError({
1215
- output,
1216
- parsedBody,
1217
- errorCode,
1218
- });
1219
- }
1220
- };
1221
- const throwDefaultError = smithyClient.withBaseException(MigrationHubStrategyServiceException);
1222
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1223
- const contents = smithyClient.map({});
1224
- const data = parsedOutput.body;
1225
- const doc = smithyClient.take(data, {
1226
- message: smithyClient.expectString,
1227
- });
1228
- Object.assign(contents, doc);
1229
- const exception = new AccessDeniedException({
1230
- $metadata: deserializeMetadata(parsedOutput),
1231
- ...contents,
1232
- });
1233
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1234
- };
1235
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1236
- const contents = smithyClient.map({});
1237
- const data = parsedOutput.body;
1238
- const doc = smithyClient.take(data, {
1239
- message: smithyClient.expectString,
1240
- });
1241
- Object.assign(contents, doc);
1242
- const exception = new ConflictException({
1243
- $metadata: deserializeMetadata(parsedOutput),
1244
- ...contents,
1245
- });
1246
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1247
- };
1248
- const de_DependencyExceptionRes = async (parsedOutput, context) => {
1249
- const contents = smithyClient.map({});
1250
- const data = parsedOutput.body;
1251
- const doc = smithyClient.take(data, {
1252
- message: smithyClient.expectString,
1253
- });
1254
- Object.assign(contents, doc);
1255
- const exception = new DependencyException({
1256
- $metadata: deserializeMetadata(parsedOutput),
1257
- ...contents,
1258
- });
1259
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1260
- };
1261
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
1262
- const contents = smithyClient.map({});
1263
- const data = parsedOutput.body;
1264
- const doc = smithyClient.take(data, {
1265
- message: smithyClient.expectString,
1266
- });
1267
- Object.assign(contents, doc);
1268
- const exception = new InternalServerException({
1269
- $metadata: deserializeMetadata(parsedOutput),
1270
- ...contents,
1271
- });
1272
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1273
- };
1274
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1275
- const contents = smithyClient.map({});
1276
- const data = parsedOutput.body;
1277
- const doc = smithyClient.take(data, {
1278
- message: smithyClient.expectString,
1279
- });
1280
- Object.assign(contents, doc);
1281
- const exception = new ResourceNotFoundException({
1282
- $metadata: deserializeMetadata(parsedOutput),
1283
- ...contents,
1284
- });
1285
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1286
- };
1287
- const de_ServiceLinkedRoleLockClientExceptionRes = async (parsedOutput, context) => {
1288
- const contents = smithyClient.map({});
1289
- const data = parsedOutput.body;
1290
- const doc = smithyClient.take(data, {
1291
- message: smithyClient.expectString,
1292
- });
1293
- Object.assign(contents, doc);
1294
- const exception = new ServiceLinkedRoleLockClientException({
1295
- $metadata: deserializeMetadata(parsedOutput),
1296
- ...contents,
1297
- });
1298
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1299
- };
1300
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1301
- const contents = smithyClient.map({});
1302
- const data = parsedOutput.body;
1303
- const doc = smithyClient.take(data, {
1304
- message: smithyClient.expectString,
1305
- });
1306
- Object.assign(contents, doc);
1307
- const exception = new ServiceQuotaExceededException({
1308
- $metadata: deserializeMetadata(parsedOutput),
1309
- ...contents,
1310
- });
1311
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1312
- };
1313
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1314
- const contents = smithyClient.map({});
1315
- const data = parsedOutput.body;
1316
- const doc = smithyClient.take(data, {
1317
- message: smithyClient.expectString,
1318
- });
1319
- Object.assign(contents, doc);
1320
- const exception = new ThrottlingException({
1321
- $metadata: deserializeMetadata(parsedOutput),
1322
- ...contents,
1323
- });
1324
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1325
- };
1326
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1327
- const contents = smithyClient.map({});
1328
- const data = parsedOutput.body;
1329
- const doc = smithyClient.take(data, {
1330
- message: smithyClient.expectString,
1331
- });
1332
- Object.assign(contents, doc);
1333
- const exception = new ValidationException({
1334
- $metadata: deserializeMetadata(parsedOutput),
1335
- ...contents,
1336
- });
1337
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1338
- };
1339
- const de_ApplicationComponentDetail = (output, context) => {
1340
- return smithyClient.take(output, {
1341
- analysisStatus: smithyClient.expectString,
1342
- antipatternReportS3Object: smithyClient._json,
1343
- antipatternReportStatus: smithyClient.expectString,
1344
- antipatternReportStatusMessage: smithyClient.expectString,
1345
- appType: smithyClient.expectString,
1346
- appUnitError: smithyClient._json,
1347
- associatedServerId: smithyClient.expectString,
1348
- databaseConfigDetail: smithyClient._json,
1349
- id: smithyClient.expectString,
1350
- inclusionStatus: smithyClient.expectString,
1351
- lastAnalyzedTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1352
- listAntipatternSeveritySummary: smithyClient._json,
1353
- moreServerAssociationExists: smithyClient.expectBoolean,
1354
- name: smithyClient.expectString,
1355
- osDriver: smithyClient.expectString,
1356
- osVersion: smithyClient.expectString,
1357
- recommendationSet: smithyClient._json,
1358
- resourceSubType: smithyClient.expectString,
1359
- resultList: smithyClient._json,
1360
- runtimeStatus: smithyClient.expectString,
1361
- runtimeStatusMessage: smithyClient.expectString,
1362
- sourceCodeRepositories: smithyClient._json,
1363
- statusMessage: smithyClient.expectString,
1364
- });
1365
- };
1366
- const de_ApplicationComponentDetails = (output, context) => {
1367
- const retVal = (output || [])
1368
- .filter((e) => e != null)
1369
- .map((entry) => {
1370
- return de_ApplicationComponentDetail(entry);
1371
- });
1372
- return retVal;
1373
- };
1374
- const de_AssessmentSummary = (output, context) => {
1375
- return smithyClient.take(output, {
1376
- antipatternReportS3Object: smithyClient._json,
1377
- antipatternReportStatus: smithyClient.expectString,
1378
- antipatternReportStatusMessage: smithyClient.expectString,
1379
- lastAnalyzedTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1380
- listAntipatternSeveritySummary: smithyClient._json,
1381
- listApplicationComponentStatusSummary: smithyClient._json,
1382
- listApplicationComponentStrategySummary: smithyClient._json,
1383
- listApplicationComponentSummary: smithyClient._json,
1384
- listServerStatusSummary: smithyClient._json,
1385
- listServerStrategySummary: smithyClient._json,
1386
- listServerSummary: smithyClient._json,
1387
- });
1388
- };
1389
- const de_DataCollectionDetails = (output, context) => {
1390
- return smithyClient.take(output, {
1391
- completionTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1392
- failed: smithyClient.expectInt32,
1393
- inProgress: smithyClient.expectInt32,
1394
- servers: smithyClient.expectInt32,
1395
- startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1396
- status: smithyClient.expectString,
1397
- statusMessage: smithyClient.expectString,
1398
- success: smithyClient.expectInt32,
1399
- });
1400
- };
1401
- const de_ImportFileTaskInformation = (output, context) => {
1402
- return smithyClient.take(output, {
1403
- completionTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1404
- id: smithyClient.expectString,
1405
- importName: smithyClient.expectString,
1406
- inputS3Bucket: smithyClient.expectString,
1407
- inputS3Key: smithyClient.expectString,
1408
- numberOfRecordsFailed: smithyClient.expectInt32,
1409
- numberOfRecordsSuccess: smithyClient.expectInt32,
1410
- startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1411
- status: smithyClient.expectString,
1412
- statusReportS3Bucket: smithyClient.expectString,
1413
- statusReportS3Key: smithyClient.expectString,
1414
- });
1415
- };
1416
- const de_ListImportFileTaskInformation = (output, context) => {
1417
- const retVal = (output || [])
1418
- .filter((e) => e != null)
1419
- .map((entry) => {
1420
- return de_ImportFileTaskInformation(entry);
1421
- });
1422
- return retVal;
1423
- };
1424
- const de_RecommendationReportDetails = (output, context) => {
1425
- return smithyClient.take(output, {
1426
- completionTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1427
- s3Bucket: smithyClient.expectString,
1428
- s3Keys: smithyClient._json,
1429
- startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1430
- status: smithyClient.expectString,
1431
- statusMessage: smithyClient.expectString,
1432
- });
1433
- };
1434
- const de_ServerDetail = (output, context) => {
1435
- return smithyClient.take(output, {
1436
- antipatternReportS3Object: smithyClient._json,
1437
- antipatternReportStatus: smithyClient.expectString,
1438
- antipatternReportStatusMessage: smithyClient.expectString,
1439
- applicationComponentStrategySummary: smithyClient._json,
1440
- dataCollectionStatus: smithyClient.expectString,
1441
- id: smithyClient.expectString,
1442
- lastAnalyzedTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1443
- listAntipatternSeveritySummary: smithyClient._json,
1444
- name: smithyClient.expectString,
1445
- recommendationSet: smithyClient._json,
1446
- serverError: smithyClient._json,
1447
- serverType: smithyClient.expectString,
1448
- statusMessage: smithyClient.expectString,
1449
- systemInfo: smithyClient._json,
1450
- });
1451
- };
1452
- const de_ServerDetails = (output, context) => {
1453
- const retVal = (output || [])
1454
- .filter((e) => e != null)
1455
- .map((entry) => {
1456
- return de_ServerDetail(entry);
1457
- });
1458
- return retVal;
1459
- };
1460
- const deserializeMetadata = (output) => ({
1461
- httpStatusCode: output.statusCode,
1462
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1463
- extendedRequestId: output.headers["x-amz-id-2"],
1464
- cfId: output.headers["x-amz-cf-id"],
1465
- });
580
+ const _AA = "AssociatedApplication";
581
+ const _AAs = "AssociatedApplications";
582
+ const _ACD = "ApplicationComponentDetail";
583
+ const _ACDp = "ApplicationComponentDetails";
584
+ const _ACS = "ApplicationComponentStrategy";
585
+ const _ACSS = "ApplicationComponentStatusSummary";
586
+ const _ACSp = "ApplicationComponentSummary";
587
+ const _ACSpp = "ApplicationComponentStrategies";
588
+ const _ADE = "AccessDeniedException";
589
+ const _AMR = "AwsManagedResources";
590
+ const _ANU = "AnalyzerNameUnion";
591
+ const _AP = "ApplicationPreferences";
592
+ const _ARR = "AntipatternReportResult";
593
+ const _ARRL = "AntipatternReportResultList";
594
+ const _AS = "AssessmentSummary";
595
+ const _ASS = "AnalyzableServerSummary";
596
+ const _ASSL = "AnalyzableServerSummaryList";
597
+ const _ASSn = "AntipatternSeveritySummary";
598
+ const _ASU = "AnalysisStatusUnion";
599
+ const _AT = "AssessmentTarget";
600
+ const _ATs = "AssessmentTargets";
601
+ const _AUE = "AppUnitError";
602
+ const _BG = "BusinessGoals";
603
+ const _C = "Collector";
604
+ const _CE = "ConflictException";
605
+ const _CS = "ConfigurationSummary";
606
+ const _Co = "Collectors";
607
+ const _DCD = "DatabaseConfigDetail";
608
+ const _DCDa = "DataCollectionDetails";
609
+ const _DE = "DependencyException";
610
+ const _DMP = "DatabaseMigrationPreference";
611
+ const _DP = "DatabasePreferences";
612
+ const _G = "Group";
613
+ const _GA = "GetAssessment";
614
+ const _GACD = "GetApplicationComponentDetails";
615
+ const _GACDR = "GetApplicationComponentDetailsRequest";
616
+ const _GACDRe = "GetApplicationComponentDetailsResponse";
617
+ const _GACS = "GetApplicationComponentStrategies";
618
+ const _GACSR = "GetApplicationComponentStrategiesRequest";
619
+ const _GACSRe = "GetApplicationComponentStrategiesResponse";
620
+ const _GAR = "GetAssessmentRequest";
621
+ const _GARe = "GetAssessmentResponse";
622
+ const _GI = "GroupIds";
623
+ const _GIFT = "GetImportFileTask";
624
+ const _GIFTR = "GetImportFileTaskRequest";
625
+ const _GIFTRe = "GetImportFileTaskResponse";
626
+ const _GLAI = "GetLatestAssessmentId";
627
+ const _GLAIR = "GetLatestAssessmentIdRequest";
628
+ const _GLAIRe = "GetLatestAssessmentIdResponse";
629
+ const _GPP = "GetPortfolioPreferences";
630
+ const _GPPR = "GetPortfolioPreferencesRequest";
631
+ const _GPPRe = "GetPortfolioPreferencesResponse";
632
+ const _GPS = "GetPortfolioSummary";
633
+ const _GPSR = "GetPortfolioSummaryRequest";
634
+ const _GPSRe = "GetPortfolioSummaryResponse";
635
+ const _GRRD = "GetRecommendationReportDetails";
636
+ const _GRRDR = "GetRecommendationReportDetailsRequest";
637
+ const _GRRDRe = "GetRecommendationReportDetailsResponse";
638
+ const _GSD = "GetServerDetails";
639
+ const _GSDR = "GetServerDetailsRequest";
640
+ const _GSDRe = "GetServerDetailsResponse";
641
+ const _GSS = "GetServerStrategies";
642
+ const _GSSR = "GetServerStrategiesRequest";
643
+ const _GSSRe = "GetServerStrategiesResponse";
644
+ const _H = "Heterogeneous";
645
+ const _Ho = "Homogeneous";
646
+ const _IFTI = "ImportFileTaskInformation";
647
+ const _IPABRI = "IPAddressBasedRemoteInfo";
648
+ const _IPABRIL = "IPAddressBasedRemoteInfoList";
649
+ const _ISE = "InternalServerException";
650
+ const _LAC = "ListApplicationComponents";
651
+ const _LACR = "ListApplicationComponentsRequest";
652
+ const _LACRi = "ListApplicationComponentsResponse";
653
+ const _LACS = "ListApplicationComponentSummary";
654
+ const _LACSS = "ListApplicationComponentStatusSummary";
655
+ const _LAS = "ListAnalyzableServers";
656
+ const _LASR = "ListAnalyzableServersRequest";
657
+ const _LASRi = "ListAnalyzableServersResponse";
658
+ const _LASS = "ListAntipatternSeveritySummary";
659
+ const _LC = "ListCollectors";
660
+ const _LCR = "ListCollectorsRequest";
661
+ const _LCRi = "ListCollectorsResponse";
662
+ const _LIFT = "ListImportFileTask";
663
+ const _LIFTI = "ListImportFileTaskInformation";
664
+ const _LIFTR = "ListImportFileTaskRequest";
665
+ const _LIFTRi = "ListImportFileTaskResponse";
666
+ const _LS = "ListServers";
667
+ const _LSR = "ListServersRequest";
668
+ const _LSRi = "ListServersResponse";
669
+ const _LSS = "ListServerSummary";
670
+ const _LSSS = "ListServerStatusSummary";
671
+ const _LSSi = "ListStrategySummary";
672
+ const _MP = "ManagementPreference";
673
+ const _NDMP = "NoDatabaseMigrationPreference";
674
+ const _NI = "NetworkInfo";
675
+ const _NIL = "NetworkInfoList";
676
+ const _NMP = "NoManagementPreference";
677
+ const _OSI = "OSInfo";
678
+ const _PBG = "PrioritizeBusinessGoals";
679
+ const _PI = "PipelineInfo";
680
+ const _PIL = "PipelineInfoList";
681
+ const _PPP = "PutPortfolioPreferences";
682
+ const _PPPR = "PutPortfolioPreferencesRequest";
683
+ const _PPPRu = "PutPortfolioPreferencesResponse";
684
+ const _R = "Result";
685
+ const _RL = "ResultList";
686
+ const _RNFE = "ResourceNotFoundException";
687
+ const _RRD = "RecommendationReportDetails";
688
+ const _RS = "RecommendationSet";
689
+ const _RSCASI = "RemoteSourceCodeAnalysisServerInfo";
690
+ const _SA = "StartAssessment";
691
+ const _SAR = "StartAssessmentRequest";
692
+ const _SARt = "StartAssessmentResponse";
693
+ const _SARto = "StopAssessmentRequest";
694
+ const _SARtop = "StopAssessmentResponse";
695
+ const _SAt = "StopAssessment";
696
+ const _SB = "S3Bucket";
697
+ const _SC = "SourceCode";
698
+ const _SCL = "SourceCodeList";
699
+ const _SCR = "SourceCodeRepository";
700
+ const _SCRo = "SourceCodeRepositories";
701
+ const _SD = "ServerDetail";
702
+ const _SDe = "ServerDetails";
703
+ const _SE = "ServerError";
704
+ const _SI = "SystemInfo";
705
+ const _SIFT = "StartImportFileTask";
706
+ const _SIFTR = "StartImportFileTaskRequest";
707
+ const _SIFTRt = "StartImportFileTaskResponse";
708
+ const _SLRLCE = "ServiceLinkedRoleLockClientException";
709
+ const _SMK = "SecretsManagerKey";
710
+ const _SMR = "SelfManageResources";
711
+ const _SO = "S3Object";
712
+ const _SOT = "ServerOsType";
713
+ const _SOt = "StrategyOption";
714
+ const _SQEE = "ServiceQuotaExceededException";
715
+ const _SRRG = "StartRecommendationReportGeneration";
716
+ const _SRRGR = "StartRecommendationReportGenerationRequest";
717
+ const _SRRGRt = "StartRecommendationReportGenerationResponse";
718
+ const _SS = "ServerStrategy";
719
+ const _SSS = "ServerStatusSummary";
720
+ const _SSe = "ServerSummary";
721
+ const _SSer = "ServerStrategies";
722
+ const _SSt = "StrategySummary";
723
+ const _TE = "ThrottlingException";
724
+ const _TT = "TransformationTool";
725
+ const _UACC = "UpdateApplicationComponentConfig";
726
+ const _UACCR = "UpdateApplicationComponentConfigRequest";
727
+ const _UACCRp = "UpdateApplicationComponentConfigResponse";
728
+ const _USC = "UpdateServerConfig";
729
+ const _USCR = "UpdateServerConfigRequest";
730
+ const _USCRp = "UpdateServerConfigResponse";
731
+ const _VBRI = "VcenterBasedRemoteInfo";
732
+ const _VBRIL = "VcenterBasedRemoteInfoList";
733
+ const _VCI = "VersionControlInfo";
734
+ const _VCIL = "VersionControlInfoList";
735
+ const _VE = "ValidationException";
736
+ const _aA = "associatedApplications";
737
+ const _aCC = "applicationComponentCriteria";
738
+ const _aCD = "applicationComponentDetail";
739
+ const _aCI = "applicationComponentId";
740
+ const _aCIp = "applicationComponentInfos";
741
+ const _aCS = "applicationComponentStrategies";
742
+ const _aCSS = "applicationComponentStrategySummary";
743
+ const _aDST = "assessmentDataSourceType";
744
+ const _aI = "assessmentId";
745
+ const _aM = "applicationMode";
746
+ const _aMR = "awsManagedResources";
747
+ const _aN = "analyzerName";
748
+ const _aP = "applicationPreferences";
749
+ const _aPRSO = "antiPatternReportS3Object";
750
+ const _aRRL = "antipatternReportResultList";
751
+ const _aRS = "antipatternReportStatus";
752
+ const _aRSM = "antipatternReportStatusMessage";
753
+ const _aRSO = "antipatternReportS3Object";
754
+ const _aS = "analysisStatus";
755
+ const _aSI = "associatedServerId";
756
+ const _aSIs = "associatedServerIds";
757
+ const _aSn = "analyzableServers";
758
+ const _aSs = "assessmentSummary";
759
+ const _aT = "appType";
760
+ const _aTn = "analysisType";
761
+ const _aTs = "assessmentTargets";
762
+ const _aTu = "authType";
763
+ const _aUE = "appUnitError";
764
+ const _aUEC = "appUnitErrorCategory";
765
+ const _b = "branch";
766
+ const _bAN = "binaryAnalyzerName";
767
+ const _bG = "businessGoals";
768
+ const _c = "client";
769
+ const _cA = "cpuArchitecture";
770
+ const _cH = "collectorHealth";
771
+ const _cI = "collectorId";
772
+ const _cO = "configureOnly";
773
+ const _cS = "configurationSummary";
774
+ const _cT = "completionTime";
775
+ const _cV = "collectorVersion";
776
+ const _co = "count";
777
+ const _con = "condition";
778
+ const _d = "description";
779
+ const _dCD = "databaseConfigDetail";
780
+ const _dCDa = "dataCollectionDetails";
781
+ const _dCS = "dataCollectionStatus";
782
+ const _dMP = "databaseManagementPreference";
783
+ const _dMPa = "databaseMigrationPreference";
784
+ const _dP = "databasePreferences";
785
+ const _dST = "dataSourceType";
786
+ const _e = "error";
787
+ const _f = "failed";
788
+ const _fST = "fileSystemType";
789
+ const _fV = "filterValue";
790
+ const _gI = "groupId";
791
+ const _gIF = "groupIdFilter";
792
+ const _h = "hostname";
793
+ const _hE = "httpError";
794
+ const _hN = "hostName";
795
+ const _hQ = "httpQuery";
796
+ const _he = "heterogeneous";
797
+ const _ho = "homogeneous";
798
+ const _ht = "http";
799
+ const _i = "id";
800
+ const _iA = "ipAddress";
801
+ const _iABRIL = "ipAddressBasedRemoteInfoList";
802
+ const _iACTS = "ipAddressConfigurationTimeStamp";
803
+ const _iN = "importName";
804
+ const _iNn = "interfaceName";
805
+ const _iP = "isPreferred";
806
+ const _iPn = "inProgress";
807
+ const _iS = "inclusionStatus";
808
+ const _iSB = "inputS3Bucket";
809
+ const _iSK = "inputS3Key";
810
+ const _l = "location";
811
+ const _lACS = "listApplicationComponentSummary";
812
+ const _lACSS = "listApplicationComponentStrategySummary";
813
+ const _lACSSi = "listApplicationComponentStatusSummary";
814
+ const _lASS = "listAntipatternSeveritySummary";
815
+ const _lAT = "lastAnalyzedTimestamp";
816
+ const _lATS = "lastActivityTimeStamp";
817
+ const _lCR = "licenseCostReduction";
818
+ const _lSS = "listServerSummary";
819
+ const _lSSS = "listServerStrategySummary";
820
+ const _lSSSi = "listServerStatusSummary";
821
+ const _m = "message";
822
+ const _mA = "macAddress";
823
+ const _mAR = "moreApplicationResource";
824
+ const _mIWCNT = "modernizeInfrastructureWithCloudNativeTechnologies";
825
+ const _mP = "managementPreference";
1466
826
  const _mR = "maxResults";
827
+ const _mSAE = "moreServerAssociationExists";
828
+ const _n = "name";
829
+ const _nIL = "networkInfoList";
830
+ const _nM = "netMask";
831
+ const _nOAC = "numberOfApplicationComponents";
832
+ const _nORF = "numberOfRecordsFailed";
833
+ const _nORS = "numberOfRecordsSuccess";
834
+ const _nP = "noPreference";
1467
835
  const _nT = "nextToken";
836
+ const _oD = "osDriver";
837
+ const _oF = "outputFormat";
838
+ const _oI = "osInfo";
839
+ const _oT = "osType";
840
+ const _oV = "osVersion";
841
+ const _pBG = "prioritizeBusinessGoals";
842
+ const _pCTS = "pipelineConfigurationTimeStamp";
843
+ const _pIL = "pipelineInfoList";
844
+ const _pN = "projectName";
845
+ const _pT = "pipelineType";
846
+ const _r = "recommendation";
847
+ const _rAS = "runtimeAnalysisStatus";
848
+ const _rL = "resultList";
849
+ const _rOOWMS = "reduceOperationalOverheadWithManagedServices";
850
+ const _rRD = "recommendationReportDetails";
851
+ const _rS = "recommendationSet";
852
+ const _rSCASCT = "remoteSourceCodeAnalysisServerConfigurationTimestamp";
853
+ const _rSCASI = "remoteSourceCodeAnalysisServerInfo";
854
+ const _rSM = "runtimeStatusMessage";
855
+ const _rST = "resourceSubType";
856
+ const _rSu = "runtimeStatus";
857
+ const _rTAN = "runTimeAnalyzerName";
858
+ const _rTAS = "runTimeAssessmentStatus";
859
+ const _rTS = "registeredTimeStamp";
860
+ const _re = "repository";
861
+ const _s = "source";
862
+ const _sB = "s3Bucket";
863
+ const _sC = "serverCriteria";
864
+ const _sCAN = "sourceCodeAnalyzerName";
865
+ const _sCL = "sourceCodeList";
866
+ const _sCODAS = "srcCodeOrDbAnalysisStatus";
867
+ const _sCR = "sourceCodeRepositories";
868
+ const _sD = "serverDetail";
869
+ const _sE = "serverError";
870
+ const _sEC = "serverErrorCategory";
871
+ const _sFAD = "s3bucketForAnalysisData";
872
+ const _sFRD = "s3bucketForReportData";
873
+ const _sI = "serverId";
874
+ const _sIe = "serverInfos";
875
+ const _sIy = "systemInfo";
876
+ const _sK = "s3Keys";
877
+ const _sM = "statusMessage";
878
+ const _sMK = "secretsManagerKey";
879
+ const _sMR = "selfManageResources";
880
+ const _sN = "secretName";
881
+ const _sO = "strategyOption";
882
+ const _sOM = "speedOfMigration";
883
+ const _sRSB = "statusReportS3Bucket";
884
+ const _sRSK = "statusReportS3Key";
885
+ const _sS = "serverStrategies";
886
+ const _sT = "startTime";
887
+ const _sTe = "serverType";
888
+ const _sV = "sourceVersion";
889
+ const _se = "severity";
890
+ const _ser = "servers";
891
+ const _serv = "server";
892
+ const _sk = "s3key";
893
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhubstrategy";
894
+ const _so = "sort";
895
+ const _st = "status";
896
+ const _str = "strategy";
897
+ const _su = "success";
898
+ const _t = "type";
899
+ const _tD = "targetDestination";
900
+ const _tDE = "targetDatabaseEngine";
901
+ const _tI = "taskInfos";
902
+ const _tN = "toolName";
903
+ const _tT = "transformationTool";
904
+ const _tTIL = "tranformationToolInstallationLink";
905
+ const _v = "values";
906
+ const _vBRIL = "vcenterBasedRemoteInfoList";
907
+ const _vC = "versionControl";
908
+ const _vCCTS = "versionControlConfigurationTimeStamp";
909
+ const _vCIL = "versionControlInfoList";
910
+ const _vCT = "versionControlType";
911
+ const _vCTS = "vcenterConfigurationTimeStamp";
912
+ const _vI = "vmId";
913
+ const _va = "value";
914
+ const _ve = "version";
915
+ const n0 = "com.amazonaws.migrationhubstrategy";
916
+ var SecretsManagerKey = [0, n0, _SMK, 8, 0];
917
+ var AccessDeniedException = [
918
+ -3,
919
+ n0,
920
+ _ADE,
921
+ {
922
+ [_e]: _c,
923
+ [_hE]: 403,
924
+ },
925
+ [_m],
926
+ [0],
927
+ ];
928
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
929
+ var AnalyzableServerSummary = [3, n0, _ASS, 0, [_h, _iA, _s, _vI], [0, 0, 0, 0]];
930
+ var AntipatternReportResult = [
931
+ 3,
932
+ n0,
933
+ _ARR,
934
+ 0,
935
+ [_aN, _aPRSO, _aRS, _aRSM],
936
+ [() => AnalyzerNameUnion, () => S3Object, 0, 0],
937
+ ];
938
+ var AntipatternSeveritySummary = [3, n0, _ASSn, 0, [_se, _co], [0, 1]];
939
+ var ApplicationComponentDetail = [
940
+ 3,
941
+ n0,
942
+ _ACD,
943
+ 0,
944
+ [
945
+ _i,
946
+ _n,
947
+ _rS,
948
+ _aS,
949
+ _sM,
950
+ _lASS,
951
+ _dCD,
952
+ _sCR,
953
+ _aT,
954
+ _rST,
955
+ _iS,
956
+ _aRSO,
957
+ _aRS,
958
+ _aRSM,
959
+ _oV,
960
+ _oD,
961
+ _lAT,
962
+ _aSI,
963
+ _mSAE,
964
+ _rSu,
965
+ _rSM,
966
+ _aUE,
967
+ _rL,
968
+ ],
969
+ [
970
+ 0,
971
+ 0,
972
+ () => RecommendationSet,
973
+ 0,
974
+ 0,
975
+ () => ListAntipatternSeveritySummary,
976
+ () => DatabaseConfigDetail,
977
+ () => SourceCodeRepositories,
978
+ 0,
979
+ 0,
980
+ 0,
981
+ () => S3Object,
982
+ 0,
983
+ 0,
984
+ 0,
985
+ 0,
986
+ 4,
987
+ 0,
988
+ 2,
989
+ 0,
990
+ 0,
991
+ () => AppUnitError,
992
+ () => ResultList,
993
+ ],
994
+ ];
995
+ var ApplicationComponentStatusSummary = [3, n0, _ACSS, 0, [_sCODAS, _co], [0, 1]];
996
+ var ApplicationComponentStrategy = [
997
+ 3,
998
+ n0,
999
+ _ACS,
1000
+ 0,
1001
+ [_r, _st, _iP],
1002
+ [() => RecommendationSet, 0, 2],
1003
+ ];
1004
+ var ApplicationComponentSummary = [3, n0, _ACSp, 0, [_aT, _co], [0, 1]];
1005
+ var ApplicationPreferences = [3, n0, _AP, 0, [_mP], [() => ManagementPreference]];
1006
+ var AppUnitError = [3, n0, _AUE, 0, [_aUEC], [0]];
1007
+ var AssessmentSummary = [
1008
+ 3,
1009
+ n0,
1010
+ _AS,
1011
+ 0,
1012
+ [_lSSS, _lACSS, _lASS, _lACS, _lSS, _aRSO, _aRS, _aRSM, _lAT, _lACSSi, _lSSSi],
1013
+ [
1014
+ () => ListStrategySummary,
1015
+ () => ListStrategySummary,
1016
+ () => ListAntipatternSeveritySummary,
1017
+ () => ListApplicationComponentSummary,
1018
+ () => ListServerSummary,
1019
+ () => S3Object,
1020
+ 0,
1021
+ 0,
1022
+ 4,
1023
+ () => ListApplicationComponentStatusSummary,
1024
+ () => ListServerStatusSummary,
1025
+ ],
1026
+ ];
1027
+ var AssessmentTarget = [3, n0, _AT, 0, [_con, _n, _v], [0, 0, 64 | 0]];
1028
+ var AssociatedApplication = [3, n0, _AA, 0, [_n, _i], [0, 0]];
1029
+ var AwsManagedResources = [3, n0, _AMR, 0, [_tD], [64 | 0]];
1030
+ var BusinessGoals = [3, n0, _BG, 0, [_sOM, _rOOWMS, _mIWCNT, _lCR], [1, 1, 1, 1]];
1031
+ var Collector = [
1032
+ 3,
1033
+ n0,
1034
+ _C,
1035
+ 0,
1036
+ [_cI, _iA, _hN, _cH, _cV, _rTS, _lATS, _cS],
1037
+ [0, 0, 0, 0, 0, 0, 0, () => ConfigurationSummary],
1038
+ ];
1039
+ var ConfigurationSummary = [
1040
+ 3,
1041
+ n0,
1042
+ _CS,
1043
+ 0,
1044
+ [_vBRIL, _iABRIL, _vCIL, _pIL, _rSCASI],
1045
+ [
1046
+ () => VcenterBasedRemoteInfoList,
1047
+ () => IPAddressBasedRemoteInfoList,
1048
+ () => VersionControlInfoList,
1049
+ () => PipelineInfoList,
1050
+ () => RemoteSourceCodeAnalysisServerInfo,
1051
+ ],
1052
+ ];
1053
+ var ConflictException = [
1054
+ -3,
1055
+ n0,
1056
+ _CE,
1057
+ {
1058
+ [_e]: _c,
1059
+ [_hE]: 409,
1060
+ },
1061
+ [_m],
1062
+ [0],
1063
+ ];
1064
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
1065
+ var DatabaseConfigDetail = [3, n0, _DCD, 0, [_sN], [0]];
1066
+ var DatabasePreferences = [
1067
+ 3,
1068
+ n0,
1069
+ _DP,
1070
+ 0,
1071
+ [_dMP, _dMPa],
1072
+ [0, () => DatabaseMigrationPreference],
1073
+ ];
1074
+ var DataCollectionDetails = [
1075
+ 3,
1076
+ n0,
1077
+ _DCDa,
1078
+ 0,
1079
+ [_st, _ser, _f, _su, _iPn, _sT, _cT, _sM],
1080
+ [0, 1, 1, 1, 1, 4, 4, 0],
1081
+ ];
1082
+ var DependencyException = [
1083
+ -3,
1084
+ n0,
1085
+ _DE,
1086
+ {
1087
+ [_e]: _serv,
1088
+ [_hE]: 500,
1089
+ },
1090
+ [_m],
1091
+ [0],
1092
+ ];
1093
+ schema.TypeRegistry.for(n0).registerError(DependencyException, DependencyException$1);
1094
+ var GetApplicationComponentDetailsRequest = [3, n0, _GACDR, 0, [_aCI], [[0, 1]]];
1095
+ var GetApplicationComponentDetailsResponse = [
1096
+ 3,
1097
+ n0,
1098
+ _GACDRe,
1099
+ 0,
1100
+ [_aCD, _aA, _mAR, _aSIs],
1101
+ [() => ApplicationComponentDetail, () => AssociatedApplications, 2, 64 | 0],
1102
+ ];
1103
+ var GetApplicationComponentStrategiesRequest = [3, n0, _GACSR, 0, [_aCI], [[0, 1]]];
1104
+ var GetApplicationComponentStrategiesResponse = [
1105
+ 3,
1106
+ n0,
1107
+ _GACSRe,
1108
+ 0,
1109
+ [_aCS],
1110
+ [() => ApplicationComponentStrategies],
1111
+ ];
1112
+ var GetAssessmentRequest = [3, n0, _GAR, 0, [_i], [[0, 1]]];
1113
+ var GetAssessmentResponse = [
1114
+ 3,
1115
+ n0,
1116
+ _GARe,
1117
+ 0,
1118
+ [_i, _dCDa, _aTs],
1119
+ [0, () => DataCollectionDetails, () => AssessmentTargets],
1120
+ ];
1121
+ var GetImportFileTaskRequest = [3, n0, _GIFTR, 0, [_i], [[0, 1]]];
1122
+ var GetImportFileTaskResponse = [
1123
+ 3,
1124
+ n0,
1125
+ _GIFTRe,
1126
+ 0,
1127
+ [_i, _st, _sT, _iSB, _iSK, _sRSB, _sRSK, _cT, _nORS, _nORF, _iN],
1128
+ [0, 0, 4, 0, 0, 0, 0, 4, 1, 1, 0],
1129
+ ];
1130
+ var GetLatestAssessmentIdRequest = [3, n0, _GLAIR, 0, [], []];
1131
+ var GetLatestAssessmentIdResponse = [3, n0, _GLAIRe, 0, [_i], [0]];
1132
+ var GetPortfolioPreferencesRequest = [3, n0, _GPPR, 0, [], []];
1133
+ var GetPortfolioPreferencesResponse = [
1134
+ 3,
1135
+ n0,
1136
+ _GPPRe,
1137
+ 0,
1138
+ [_pBG, _aP, _dP, _aM],
1139
+ [() => PrioritizeBusinessGoals, () => ApplicationPreferences, () => DatabasePreferences, 0],
1140
+ ];
1141
+ var GetPortfolioSummaryRequest = [3, n0, _GPSR, 0, [], []];
1142
+ var GetPortfolioSummaryResponse = [3, n0, _GPSRe, 0, [_aSs], [() => AssessmentSummary]];
1143
+ var GetRecommendationReportDetailsRequest = [3, n0, _GRRDR, 0, [_i], [[0, 1]]];
1144
+ var GetRecommendationReportDetailsResponse = [
1145
+ 3,
1146
+ n0,
1147
+ _GRRDRe,
1148
+ 0,
1149
+ [_i, _rRD],
1150
+ [0, () => RecommendationReportDetails],
1151
+ ];
1152
+ var GetServerDetailsRequest = [
1153
+ 3,
1154
+ n0,
1155
+ _GSDR,
1156
+ 0,
1157
+ [_sI, _nT, _mR],
1158
+ [
1159
+ [0, 1],
1160
+ [
1161
+ 0,
1162
+ {
1163
+ [_hQ]: _nT,
1164
+ },
1165
+ ],
1166
+ [
1167
+ 1,
1168
+ {
1169
+ [_hQ]: _mR,
1170
+ },
1171
+ ],
1172
+ ],
1173
+ ];
1174
+ var GetServerDetailsResponse = [
1175
+ 3,
1176
+ n0,
1177
+ _GSDRe,
1178
+ 0,
1179
+ [_nT, _sD, _aA],
1180
+ [0, () => ServerDetail, () => AssociatedApplications],
1181
+ ];
1182
+ var GetServerStrategiesRequest = [3, n0, _GSSR, 0, [_sI], [[0, 1]]];
1183
+ var GetServerStrategiesResponse = [3, n0, _GSSRe, 0, [_sS], [() => ServerStrategies]];
1184
+ var Group = [3, n0, _G, 0, [_n, _va], [0, 0]];
1185
+ var Heterogeneous = [3, n0, _H, 0, [_tDE], [64 | 0]];
1186
+ var Homogeneous = [3, n0, _Ho, 0, [_tDE], [64 | 0]];
1187
+ var ImportFileTaskInformation = [
1188
+ 3,
1189
+ n0,
1190
+ _IFTI,
1191
+ 0,
1192
+ [_i, _st, _sT, _iSB, _iSK, _sRSB, _sRSK, _cT, _nORS, _nORF, _iN],
1193
+ [0, 0, 4, 0, 0, 0, 0, 4, 1, 1, 0],
1194
+ ];
1195
+ var InternalServerException = [
1196
+ -3,
1197
+ n0,
1198
+ _ISE,
1199
+ {
1200
+ [_e]: _serv,
1201
+ [_hE]: 500,
1202
+ },
1203
+ [_m],
1204
+ [0],
1205
+ ];
1206
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1207
+ var IPAddressBasedRemoteInfo = [3, n0, _IPABRI, 0, [_iACTS, _aTu, _oT], [0, 0, 0]];
1208
+ var ListAnalyzableServersRequest = [3, n0, _LASR, 0, [_so, _nT, _mR], [0, 0, 1]];
1209
+ var ListAnalyzableServersResponse = [
1210
+ 3,
1211
+ n0,
1212
+ _LASRi,
1213
+ 0,
1214
+ [_aSn, _nT],
1215
+ [() => AnalyzableServerSummaryList, 0],
1216
+ ];
1217
+ var ListApplicationComponentsRequest = [
1218
+ 3,
1219
+ n0,
1220
+ _LACR,
1221
+ 0,
1222
+ [_aCC, _fV, _so, _gIF, _nT, _mR],
1223
+ [0, 0, 0, () => GroupIds, 0, 1],
1224
+ ];
1225
+ var ListApplicationComponentsResponse = [
1226
+ 3,
1227
+ n0,
1228
+ _LACRi,
1229
+ 0,
1230
+ [_aCIp, _nT],
1231
+ [() => ApplicationComponentDetails, 0],
1232
+ ];
1233
+ var ListCollectorsRequest = [
1234
+ 3,
1235
+ n0,
1236
+ _LCR,
1237
+ 0,
1238
+ [_nT, _mR],
1239
+ [
1240
+ [
1241
+ 0,
1242
+ {
1243
+ [_hQ]: _nT,
1244
+ },
1245
+ ],
1246
+ [
1247
+ 1,
1248
+ {
1249
+ [_hQ]: _mR,
1250
+ },
1251
+ ],
1252
+ ],
1253
+ ];
1254
+ var ListCollectorsResponse = [3, n0, _LCRi, 0, [_Co, _nT], [() => Collectors, 0]];
1255
+ var ListImportFileTaskRequest = [
1256
+ 3,
1257
+ n0,
1258
+ _LIFTR,
1259
+ 0,
1260
+ [_nT, _mR],
1261
+ [
1262
+ [
1263
+ 0,
1264
+ {
1265
+ [_hQ]: _nT,
1266
+ },
1267
+ ],
1268
+ [
1269
+ 1,
1270
+ {
1271
+ [_hQ]: _mR,
1272
+ },
1273
+ ],
1274
+ ],
1275
+ ];
1276
+ var ListImportFileTaskResponse = [
1277
+ 3,
1278
+ n0,
1279
+ _LIFTRi,
1280
+ 0,
1281
+ [_tI, _nT],
1282
+ [() => ListImportFileTaskInformation, 0],
1283
+ ];
1284
+ var ListServersRequest = [
1285
+ 3,
1286
+ n0,
1287
+ _LSR,
1288
+ 0,
1289
+ [_sC, _fV, _so, _gIF, _nT, _mR],
1290
+ [0, 0, 0, () => GroupIds, 0, 1],
1291
+ ];
1292
+ var ListServersResponse = [3, n0, _LSRi, 0, [_sIe, _nT], [() => ServerDetails, 0]];
1293
+ var NetworkInfo = [3, n0, _NI, 0, [_iNn, _iA, _mA, _nM], [0, 0, 0, 0]];
1294
+ var NoDatabaseMigrationPreference = [3, n0, _NDMP, 0, [_tDE], [64 | 0]];
1295
+ var NoManagementPreference = [3, n0, _NMP, 0, [_tD], [64 | 0]];
1296
+ var OSInfo = [3, n0, _OSI, 0, [_t, _ve], [0, 0]];
1297
+ var PipelineInfo = [3, n0, _PI, 0, [_pT, _pCTS], [0, 0]];
1298
+ var PrioritizeBusinessGoals = [3, n0, _PBG, 0, [_bG], [() => BusinessGoals]];
1299
+ var PutPortfolioPreferencesRequest = [
1300
+ 3,
1301
+ n0,
1302
+ _PPPR,
1303
+ 0,
1304
+ [_pBG, _aP, _dP, _aM],
1305
+ [() => PrioritizeBusinessGoals, () => ApplicationPreferences, () => DatabasePreferences, 0],
1306
+ ];
1307
+ var PutPortfolioPreferencesResponse = [3, n0, _PPPRu, 0, [], []];
1308
+ var RecommendationReportDetails = [
1309
+ 3,
1310
+ n0,
1311
+ _RRD,
1312
+ 0,
1313
+ [_st, _sM, _sT, _cT, _sB, _sK],
1314
+ [0, 0, 4, 4, 0, 64 | 0],
1315
+ ];
1316
+ var RecommendationSet = [
1317
+ 3,
1318
+ n0,
1319
+ _RS,
1320
+ 0,
1321
+ [_tT, _tD, _str],
1322
+ [() => TransformationTool, 0, 0],
1323
+ ];
1324
+ var RemoteSourceCodeAnalysisServerInfo = [3, n0, _RSCASI, 0, [_rSCASCT], [0]];
1325
+ var ResourceNotFoundException = [
1326
+ -3,
1327
+ n0,
1328
+ _RNFE,
1329
+ {
1330
+ [_e]: _c,
1331
+ [_hE]: 404,
1332
+ },
1333
+ [_m],
1334
+ [0],
1335
+ ];
1336
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1337
+ var Result = [
1338
+ 3,
1339
+ n0,
1340
+ _R,
1341
+ 0,
1342
+ [_aTn, _aS, _sM, _aRRL],
1343
+ [0, () => AnalysisStatusUnion, 0, () => AntipatternReportResultList],
1344
+ ];
1345
+ var S3Object = [3, n0, _SO, 0, [_sB, _sk], [0, 0]];
1346
+ var SelfManageResources = [3, n0, _SMR, 0, [_tD], [64 | 0]];
1347
+ var ServerDetail = [
1348
+ 3,
1349
+ n0,
1350
+ _SD,
1351
+ 0,
1352
+ [_i, _n, _rS, _dCS, _sM, _lASS, _sIy, _aCSS, _aRSO, _aRS, _aRSM, _sTe, _lAT, _sE],
1353
+ [
1354
+ 0,
1355
+ 0,
1356
+ () => RecommendationSet,
1357
+ 0,
1358
+ 0,
1359
+ () => ListAntipatternSeveritySummary,
1360
+ () => SystemInfo,
1361
+ () => ListStrategySummary,
1362
+ () => S3Object,
1363
+ 0,
1364
+ 0,
1365
+ 0,
1366
+ 4,
1367
+ () => ServerError,
1368
+ ],
1369
+ ];
1370
+ var ServerError = [3, n0, _SE, 0, [_sEC], [0]];
1371
+ var ServerStatusSummary = [3, n0, _SSS, 0, [_rTAS, _co], [0, 1]];
1372
+ var ServerStrategy = [
1373
+ 3,
1374
+ n0,
1375
+ _SS,
1376
+ 0,
1377
+ [_r, _st, _nOAC, _iP],
1378
+ [() => RecommendationSet, 0, 1, 2],
1379
+ ];
1380
+ var ServerSummary = [3, n0, _SSe, 0, [_SOT, _co], [0, 1]];
1381
+ var ServiceLinkedRoleLockClientException = [
1382
+ -3,
1383
+ n0,
1384
+ _SLRLCE,
1385
+ {
1386
+ [_e]: _c,
1387
+ [_hE]: 400,
1388
+ },
1389
+ [_m],
1390
+ [0],
1391
+ ];
1392
+ schema.TypeRegistry.for(n0).registerError(ServiceLinkedRoleLockClientException, ServiceLinkedRoleLockClientException$1);
1393
+ var ServiceQuotaExceededException = [
1394
+ -3,
1395
+ n0,
1396
+ _SQEE,
1397
+ {
1398
+ [_e]: _c,
1399
+ [_hE]: 402,
1400
+ },
1401
+ [_m],
1402
+ [0],
1403
+ ];
1404
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1405
+ var SourceCode = [3, n0, _SC, 0, [_vC, _sV, _l, _pN], [0, 0, 0, 0]];
1406
+ var SourceCodeRepository = [3, n0, _SCR, 0, [_re, _b, _vCT, _pN], [0, 0, 0, 0]];
1407
+ var StartAssessmentRequest = [
1408
+ 3,
1409
+ n0,
1410
+ _SAR,
1411
+ 0,
1412
+ [_sFAD, _sFRD, _aTs, _aDST],
1413
+ [0, 0, () => AssessmentTargets, 0],
1414
+ ];
1415
+ var StartAssessmentResponse = [3, n0, _SARt, 0, [_aI], [0]];
1416
+ var StartImportFileTaskRequest = [
1417
+ 3,
1418
+ n0,
1419
+ _SIFTR,
1420
+ 0,
1421
+ [_n, _SB, _sk, _dST, _gI, _sFRD],
1422
+ [0, 0, 0, 0, () => GroupIds, 0],
1423
+ ];
1424
+ var StartImportFileTaskResponse = [3, n0, _SIFTRt, 0, [_i], [0]];
1425
+ var StartRecommendationReportGenerationRequest = [
1426
+ 3,
1427
+ n0,
1428
+ _SRRGR,
1429
+ 0,
1430
+ [_oF, _gIF],
1431
+ [0, () => GroupIds],
1432
+ ];
1433
+ var StartRecommendationReportGenerationResponse = [3, n0, _SRRGRt, 0, [_i], [0]];
1434
+ var StopAssessmentRequest = [3, n0, _SARto, 0, [_aI], [0]];
1435
+ var StopAssessmentResponse = [3, n0, _SARtop, 0, [], []];
1436
+ var StrategyOption = [3, n0, _SOt, 0, [_str, _tN, _tD, _iP], [0, 0, 0, 2]];
1437
+ var StrategySummary = [3, n0, _SSt, 0, [_str, _co], [0, 1]];
1438
+ var SystemInfo = [
1439
+ 3,
1440
+ n0,
1441
+ _SI,
1442
+ 0,
1443
+ [_oI, _fST, _nIL, _cA],
1444
+ [() => OSInfo, 0, () => NetworkInfoList, 0],
1445
+ ];
1446
+ var ThrottlingException = [
1447
+ -3,
1448
+ n0,
1449
+ _TE,
1450
+ {
1451
+ [_e]: _c,
1452
+ [_hE]: 429,
1453
+ },
1454
+ [_m],
1455
+ [0],
1456
+ ];
1457
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1458
+ var TransformationTool = [3, n0, _TT, 0, [_n, _d, _tTIL], [0, 0, 0]];
1459
+ var UpdateApplicationComponentConfigRequest = [
1460
+ 3,
1461
+ n0,
1462
+ _UACCR,
1463
+ 0,
1464
+ [_aCI, _iS, _sO, _sCL, _sMK, _cO, _aT],
1465
+ [0, 0, () => StrategyOption, () => SourceCodeList, [() => SecretsManagerKey, 0], 2, 0],
1466
+ ];
1467
+ var UpdateApplicationComponentConfigResponse = [3, n0, _UACCRp, 0, [], []];
1468
+ var UpdateServerConfigRequest = [3, n0, _USCR, 0, [_sI, _sO], [0, () => StrategyOption]];
1469
+ var UpdateServerConfigResponse = [3, n0, _USCRp, 0, [], []];
1470
+ var ValidationException = [
1471
+ -3,
1472
+ n0,
1473
+ _VE,
1474
+ {
1475
+ [_e]: _c,
1476
+ [_hE]: 400,
1477
+ },
1478
+ [_m],
1479
+ [0],
1480
+ ];
1481
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1482
+ var VcenterBasedRemoteInfo = [3, n0, _VBRI, 0, [_vCTS, _oT], [0, 0]];
1483
+ var VersionControlInfo = [3, n0, _VCI, 0, [_vCT, _vCCTS], [0, 0]];
1484
+ var MigrationHubStrategyServiceException = [
1485
+ -3,
1486
+ _sm,
1487
+ "MigrationHubStrategyServiceException",
1488
+ 0,
1489
+ [],
1490
+ [],
1491
+ ];
1492
+ schema.TypeRegistry.for(_sm).registerError(MigrationHubStrategyServiceException, MigrationHubStrategyServiceException$1);
1493
+ var AnalyzableServerSummaryList = [1, n0, _ASSL, 0, () => AnalyzableServerSummary];
1494
+ var AntipatternReportResultList = [1, n0, _ARRL, 0, () => AntipatternReportResult];
1495
+ var ApplicationComponentDetails = [1, n0, _ACDp, 0, () => ApplicationComponentDetail];
1496
+ var ApplicationComponentStrategies = [1, n0, _ACSpp, 0, () => ApplicationComponentStrategy];
1497
+ var AssessmentTargets = [1, n0, _ATs, 0, () => AssessmentTarget];
1498
+ var AssociatedApplications = [1, n0, _AAs, 0, () => AssociatedApplication];
1499
+ var Collectors = [1, n0, _Co, 0, () => Collector];
1500
+ var GroupIds = [1, n0, _GI, 0, () => Group];
1501
+ var IPAddressBasedRemoteInfoList = [1, n0, _IPABRIL, 0, () => IPAddressBasedRemoteInfo];
1502
+ var ListAntipatternSeveritySummary = [1, n0, _LASS, 0, () => AntipatternSeveritySummary];
1503
+ var ListApplicationComponentStatusSummary = [
1504
+ 1,
1505
+ n0,
1506
+ _LACSS,
1507
+ 0,
1508
+ () => ApplicationComponentStatusSummary,
1509
+ ];
1510
+ var ListApplicationComponentSummary = [1, n0, _LACS, 0, () => ApplicationComponentSummary];
1511
+ var ListImportFileTaskInformation = [1, n0, _LIFTI, 0, () => ImportFileTaskInformation];
1512
+ var ListServerStatusSummary = [1, n0, _LSSS, 0, () => ServerStatusSummary];
1513
+ var ListServerSummary = [1, n0, _LSS, 0, () => ServerSummary];
1514
+ var ListStrategySummary = [1, n0, _LSSi, 0, () => StrategySummary];
1515
+ var NetworkInfoList = [1, n0, _NIL, 0, () => NetworkInfo];
1516
+ var PipelineInfoList = [1, n0, _PIL, 0, () => PipelineInfo];
1517
+ var ResultList = [1, n0, _RL, 0, () => Result];
1518
+ var ServerDetails = [1, n0, _SDe, 0, () => ServerDetail];
1519
+ var ServerStrategies = [1, n0, _SSer, 0, () => ServerStrategy];
1520
+ var SourceCodeList = [1, n0, _SCL, 0, () => SourceCode];
1521
+ var SourceCodeRepositories = [1, n0, _SCRo, 0, () => SourceCodeRepository];
1522
+ var VcenterBasedRemoteInfoList = [1, n0, _VBRIL, 0, () => VcenterBasedRemoteInfo];
1523
+ var VersionControlInfoList = [1, n0, _VCIL, 0, () => VersionControlInfo];
1524
+ var AnalysisStatusUnion = [3, n0, _ASU, 0, [_rAS, _sCODAS], [0, 0]];
1525
+ var AnalyzerNameUnion = [3, n0, _ANU, 0, [_bAN, _rTAN, _sCAN], [0, 0, 0]];
1526
+ var DatabaseMigrationPreference = [
1527
+ 3,
1528
+ n0,
1529
+ _DMP,
1530
+ 0,
1531
+ [_he, _ho, _nP],
1532
+ [() => Heterogeneous, () => Homogeneous, () => NoDatabaseMigrationPreference],
1533
+ ];
1534
+ var ManagementPreference = [
1535
+ 3,
1536
+ n0,
1537
+ _MP,
1538
+ 0,
1539
+ [_aMR, _sMR, _nP],
1540
+ [() => AwsManagedResources, () => SelfManageResources, () => NoManagementPreference],
1541
+ ];
1542
+ var GetApplicationComponentDetails = [
1543
+ 9,
1544
+ n0,
1545
+ _GACD,
1546
+ {
1547
+ [_ht]: ["GET", "/get-applicationcomponent-details/{applicationComponentId}", 200],
1548
+ },
1549
+ () => GetApplicationComponentDetailsRequest,
1550
+ () => GetApplicationComponentDetailsResponse,
1551
+ ];
1552
+ var GetApplicationComponentStrategies = [
1553
+ 9,
1554
+ n0,
1555
+ _GACS,
1556
+ {
1557
+ [_ht]: ["GET", "/get-applicationcomponent-strategies/{applicationComponentId}", 200],
1558
+ },
1559
+ () => GetApplicationComponentStrategiesRequest,
1560
+ () => GetApplicationComponentStrategiesResponse,
1561
+ ];
1562
+ var GetAssessment = [
1563
+ 9,
1564
+ n0,
1565
+ _GA,
1566
+ {
1567
+ [_ht]: ["GET", "/get-assessment/{id}", 200],
1568
+ },
1569
+ () => GetAssessmentRequest,
1570
+ () => GetAssessmentResponse,
1571
+ ];
1572
+ var GetImportFileTask = [
1573
+ 9,
1574
+ n0,
1575
+ _GIFT,
1576
+ {
1577
+ [_ht]: ["GET", "/get-import-file-task/{id}", 200],
1578
+ },
1579
+ () => GetImportFileTaskRequest,
1580
+ () => GetImportFileTaskResponse,
1581
+ ];
1582
+ var GetLatestAssessmentId = [
1583
+ 9,
1584
+ n0,
1585
+ _GLAI,
1586
+ {
1587
+ [_ht]: ["GET", "/get-latest-assessment-id", 200],
1588
+ },
1589
+ () => GetLatestAssessmentIdRequest,
1590
+ () => GetLatestAssessmentIdResponse,
1591
+ ];
1592
+ var GetPortfolioPreferences = [
1593
+ 9,
1594
+ n0,
1595
+ _GPP,
1596
+ {
1597
+ [_ht]: ["GET", "/get-portfolio-preferences", 200],
1598
+ },
1599
+ () => GetPortfolioPreferencesRequest,
1600
+ () => GetPortfolioPreferencesResponse,
1601
+ ];
1602
+ var GetPortfolioSummary = [
1603
+ 9,
1604
+ n0,
1605
+ _GPS,
1606
+ {
1607
+ [_ht]: ["GET", "/get-portfolio-summary", 200],
1608
+ },
1609
+ () => GetPortfolioSummaryRequest,
1610
+ () => GetPortfolioSummaryResponse,
1611
+ ];
1612
+ var GetRecommendationReportDetails = [
1613
+ 9,
1614
+ n0,
1615
+ _GRRD,
1616
+ {
1617
+ [_ht]: ["GET", "/get-recommendation-report-details/{id}", 200],
1618
+ },
1619
+ () => GetRecommendationReportDetailsRequest,
1620
+ () => GetRecommendationReportDetailsResponse,
1621
+ ];
1622
+ var GetServerDetails = [
1623
+ 9,
1624
+ n0,
1625
+ _GSD,
1626
+ {
1627
+ [_ht]: ["GET", "/get-server-details/{serverId}", 200],
1628
+ },
1629
+ () => GetServerDetailsRequest,
1630
+ () => GetServerDetailsResponse,
1631
+ ];
1632
+ var GetServerStrategies = [
1633
+ 9,
1634
+ n0,
1635
+ _GSS,
1636
+ {
1637
+ [_ht]: ["GET", "/get-server-strategies/{serverId}", 200],
1638
+ },
1639
+ () => GetServerStrategiesRequest,
1640
+ () => GetServerStrategiesResponse,
1641
+ ];
1642
+ var ListAnalyzableServers = [
1643
+ 9,
1644
+ n0,
1645
+ _LAS,
1646
+ {
1647
+ [_ht]: ["POST", "/list-analyzable-servers", 200],
1648
+ },
1649
+ () => ListAnalyzableServersRequest,
1650
+ () => ListAnalyzableServersResponse,
1651
+ ];
1652
+ var ListApplicationComponents = [
1653
+ 9,
1654
+ n0,
1655
+ _LAC,
1656
+ {
1657
+ [_ht]: ["POST", "/list-applicationcomponents", 200],
1658
+ },
1659
+ () => ListApplicationComponentsRequest,
1660
+ () => ListApplicationComponentsResponse,
1661
+ ];
1662
+ var ListCollectors = [
1663
+ 9,
1664
+ n0,
1665
+ _LC,
1666
+ {
1667
+ [_ht]: ["GET", "/list-collectors", 200],
1668
+ },
1669
+ () => ListCollectorsRequest,
1670
+ () => ListCollectorsResponse,
1671
+ ];
1672
+ var ListImportFileTask = [
1673
+ 9,
1674
+ n0,
1675
+ _LIFT,
1676
+ {
1677
+ [_ht]: ["GET", "/list-import-file-task", 200],
1678
+ },
1679
+ () => ListImportFileTaskRequest,
1680
+ () => ListImportFileTaskResponse,
1681
+ ];
1682
+ var ListServers = [
1683
+ 9,
1684
+ n0,
1685
+ _LS,
1686
+ {
1687
+ [_ht]: ["POST", "/list-servers", 200],
1688
+ },
1689
+ () => ListServersRequest,
1690
+ () => ListServersResponse,
1691
+ ];
1692
+ var PutPortfolioPreferences = [
1693
+ 9,
1694
+ n0,
1695
+ _PPP,
1696
+ {
1697
+ [_ht]: ["POST", "/put-portfolio-preferences", 200],
1698
+ },
1699
+ () => PutPortfolioPreferencesRequest,
1700
+ () => PutPortfolioPreferencesResponse,
1701
+ ];
1702
+ var StartAssessment = [
1703
+ 9,
1704
+ n0,
1705
+ _SA,
1706
+ {
1707
+ [_ht]: ["POST", "/start-assessment", 200],
1708
+ },
1709
+ () => StartAssessmentRequest,
1710
+ () => StartAssessmentResponse,
1711
+ ];
1712
+ var StartImportFileTask = [
1713
+ 9,
1714
+ n0,
1715
+ _SIFT,
1716
+ {
1717
+ [_ht]: ["POST", "/start-import-file-task", 200],
1718
+ },
1719
+ () => StartImportFileTaskRequest,
1720
+ () => StartImportFileTaskResponse,
1721
+ ];
1722
+ var StartRecommendationReportGeneration = [
1723
+ 9,
1724
+ n0,
1725
+ _SRRG,
1726
+ {
1727
+ [_ht]: ["POST", "/start-recommendation-report-generation", 200],
1728
+ },
1729
+ () => StartRecommendationReportGenerationRequest,
1730
+ () => StartRecommendationReportGenerationResponse,
1731
+ ];
1732
+ var StopAssessment = [
1733
+ 9,
1734
+ n0,
1735
+ _SAt,
1736
+ {
1737
+ [_ht]: ["POST", "/stop-assessment", 200],
1738
+ },
1739
+ () => StopAssessmentRequest,
1740
+ () => StopAssessmentResponse,
1741
+ ];
1742
+ var UpdateApplicationComponentConfig = [
1743
+ 9,
1744
+ n0,
1745
+ _UACC,
1746
+ {
1747
+ [_ht]: ["POST", "/update-applicationcomponent-config/", 200],
1748
+ },
1749
+ () => UpdateApplicationComponentConfigRequest,
1750
+ () => UpdateApplicationComponentConfigResponse,
1751
+ ];
1752
+ var UpdateServerConfig = [
1753
+ 9,
1754
+ n0,
1755
+ _USC,
1756
+ {
1757
+ [_ht]: ["POST", "/update-server-config/", 200],
1758
+ },
1759
+ () => UpdateServerConfigRequest,
1760
+ () => UpdateServerConfigResponse,
1761
+ ];
1468
1762
 
1469
1763
  class GetApplicationComponentDetailsCommand extends smithyClient.Command
1470
1764
  .classBuilder()
1471
1765
  .ep(commonParams)
1472
1766
  .m(function (Command, cs, config, o) {
1473
- return [
1474
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1475
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1476
- ];
1767
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1477
1768
  })
1478
1769
  .s("AWSMigrationHubStrategyRecommendation", "GetApplicationComponentDetails", {})
1479
1770
  .n("MigrationHubStrategyClient", "GetApplicationComponentDetailsCommand")
1480
- .f(void 0, void 0)
1481
- .ser(se_GetApplicationComponentDetailsCommand)
1482
- .de(de_GetApplicationComponentDetailsCommand)
1771
+ .sc(GetApplicationComponentDetails)
1483
1772
  .build() {
1484
1773
  }
1485
1774
 
@@ -1487,16 +1776,11 @@ class GetApplicationComponentStrategiesCommand extends smithyClient.Command
1487
1776
  .classBuilder()
1488
1777
  .ep(commonParams)
1489
1778
  .m(function (Command, cs, config, o) {
1490
- return [
1491
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1492
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1493
- ];
1779
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1494
1780
  })
1495
1781
  .s("AWSMigrationHubStrategyRecommendation", "GetApplicationComponentStrategies", {})
1496
1782
  .n("MigrationHubStrategyClient", "GetApplicationComponentStrategiesCommand")
1497
- .f(void 0, void 0)
1498
- .ser(se_GetApplicationComponentStrategiesCommand)
1499
- .de(de_GetApplicationComponentStrategiesCommand)
1783
+ .sc(GetApplicationComponentStrategies)
1500
1784
  .build() {
1501
1785
  }
1502
1786
 
@@ -1504,16 +1788,11 @@ class GetAssessmentCommand extends smithyClient.Command
1504
1788
  .classBuilder()
1505
1789
  .ep(commonParams)
1506
1790
  .m(function (Command, cs, config, o) {
1507
- return [
1508
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1509
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1510
- ];
1791
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1511
1792
  })
1512
1793
  .s("AWSMigrationHubStrategyRecommendation", "GetAssessment", {})
1513
1794
  .n("MigrationHubStrategyClient", "GetAssessmentCommand")
1514
- .f(void 0, void 0)
1515
- .ser(se_GetAssessmentCommand)
1516
- .de(de_GetAssessmentCommand)
1795
+ .sc(GetAssessment)
1517
1796
  .build() {
1518
1797
  }
1519
1798
 
@@ -1521,16 +1800,11 @@ class GetImportFileTaskCommand extends smithyClient.Command
1521
1800
  .classBuilder()
1522
1801
  .ep(commonParams)
1523
1802
  .m(function (Command, cs, config, o) {
1524
- return [
1525
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1526
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1527
- ];
1803
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1528
1804
  })
1529
1805
  .s("AWSMigrationHubStrategyRecommendation", "GetImportFileTask", {})
1530
1806
  .n("MigrationHubStrategyClient", "GetImportFileTaskCommand")
1531
- .f(void 0, void 0)
1532
- .ser(se_GetImportFileTaskCommand)
1533
- .de(de_GetImportFileTaskCommand)
1807
+ .sc(GetImportFileTask)
1534
1808
  .build() {
1535
1809
  }
1536
1810
 
@@ -1538,16 +1812,11 @@ class GetLatestAssessmentIdCommand extends smithyClient.Command
1538
1812
  .classBuilder()
1539
1813
  .ep(commonParams)
1540
1814
  .m(function (Command, cs, config, o) {
1541
- return [
1542
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1543
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1544
- ];
1815
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1545
1816
  })
1546
1817
  .s("AWSMigrationHubStrategyRecommendation", "GetLatestAssessmentId", {})
1547
1818
  .n("MigrationHubStrategyClient", "GetLatestAssessmentIdCommand")
1548
- .f(void 0, void 0)
1549
- .ser(se_GetLatestAssessmentIdCommand)
1550
- .de(de_GetLatestAssessmentIdCommand)
1819
+ .sc(GetLatestAssessmentId)
1551
1820
  .build() {
1552
1821
  }
1553
1822
 
@@ -1555,16 +1824,11 @@ class GetPortfolioPreferencesCommand extends smithyClient.Command
1555
1824
  .classBuilder()
1556
1825
  .ep(commonParams)
1557
1826
  .m(function (Command, cs, config, o) {
1558
- return [
1559
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1560
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1561
- ];
1827
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1562
1828
  })
1563
1829
  .s("AWSMigrationHubStrategyRecommendation", "GetPortfolioPreferences", {})
1564
1830
  .n("MigrationHubStrategyClient", "GetPortfolioPreferencesCommand")
1565
- .f(void 0, void 0)
1566
- .ser(se_GetPortfolioPreferencesCommand)
1567
- .de(de_GetPortfolioPreferencesCommand)
1831
+ .sc(GetPortfolioPreferences)
1568
1832
  .build() {
1569
1833
  }
1570
1834
 
@@ -1572,16 +1836,11 @@ class GetPortfolioSummaryCommand extends smithyClient.Command
1572
1836
  .classBuilder()
1573
1837
  .ep(commonParams)
1574
1838
  .m(function (Command, cs, config, o) {
1575
- return [
1576
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1577
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1578
- ];
1839
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1579
1840
  })
1580
1841
  .s("AWSMigrationHubStrategyRecommendation", "GetPortfolioSummary", {})
1581
1842
  .n("MigrationHubStrategyClient", "GetPortfolioSummaryCommand")
1582
- .f(void 0, void 0)
1583
- .ser(se_GetPortfolioSummaryCommand)
1584
- .de(de_GetPortfolioSummaryCommand)
1843
+ .sc(GetPortfolioSummary)
1585
1844
  .build() {
1586
1845
  }
1587
1846
 
@@ -1589,16 +1848,11 @@ class GetRecommendationReportDetailsCommand extends smithyClient.Command
1589
1848
  .classBuilder()
1590
1849
  .ep(commonParams)
1591
1850
  .m(function (Command, cs, config, o) {
1592
- return [
1593
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1594
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1595
- ];
1851
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1596
1852
  })
1597
1853
  .s("AWSMigrationHubStrategyRecommendation", "GetRecommendationReportDetails", {})
1598
1854
  .n("MigrationHubStrategyClient", "GetRecommendationReportDetailsCommand")
1599
- .f(void 0, void 0)
1600
- .ser(se_GetRecommendationReportDetailsCommand)
1601
- .de(de_GetRecommendationReportDetailsCommand)
1855
+ .sc(GetRecommendationReportDetails)
1602
1856
  .build() {
1603
1857
  }
1604
1858
 
@@ -1606,16 +1860,11 @@ class GetServerDetailsCommand extends smithyClient.Command
1606
1860
  .classBuilder()
1607
1861
  .ep(commonParams)
1608
1862
  .m(function (Command, cs, config, o) {
1609
- return [
1610
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1611
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1612
- ];
1863
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1613
1864
  })
1614
1865
  .s("AWSMigrationHubStrategyRecommendation", "GetServerDetails", {})
1615
1866
  .n("MigrationHubStrategyClient", "GetServerDetailsCommand")
1616
- .f(void 0, void 0)
1617
- .ser(se_GetServerDetailsCommand)
1618
- .de(de_GetServerDetailsCommand)
1867
+ .sc(GetServerDetails)
1619
1868
  .build() {
1620
1869
  }
1621
1870
 
@@ -1623,16 +1872,11 @@ class GetServerStrategiesCommand extends smithyClient.Command
1623
1872
  .classBuilder()
1624
1873
  .ep(commonParams)
1625
1874
  .m(function (Command, cs, config, o) {
1626
- return [
1627
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1628
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1629
- ];
1875
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1630
1876
  })
1631
1877
  .s("AWSMigrationHubStrategyRecommendation", "GetServerStrategies", {})
1632
1878
  .n("MigrationHubStrategyClient", "GetServerStrategiesCommand")
1633
- .f(void 0, void 0)
1634
- .ser(se_GetServerStrategiesCommand)
1635
- .de(de_GetServerStrategiesCommand)
1879
+ .sc(GetServerStrategies)
1636
1880
  .build() {
1637
1881
  }
1638
1882
 
@@ -1640,16 +1884,11 @@ class ListAnalyzableServersCommand extends smithyClient.Command
1640
1884
  .classBuilder()
1641
1885
  .ep(commonParams)
1642
1886
  .m(function (Command, cs, config, o) {
1643
- return [
1644
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1645
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1646
- ];
1887
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1647
1888
  })
1648
1889
  .s("AWSMigrationHubStrategyRecommendation", "ListAnalyzableServers", {})
1649
1890
  .n("MigrationHubStrategyClient", "ListAnalyzableServersCommand")
1650
- .f(void 0, void 0)
1651
- .ser(se_ListAnalyzableServersCommand)
1652
- .de(de_ListAnalyzableServersCommand)
1891
+ .sc(ListAnalyzableServers)
1653
1892
  .build() {
1654
1893
  }
1655
1894
 
@@ -1657,16 +1896,11 @@ class ListApplicationComponentsCommand extends smithyClient.Command
1657
1896
  .classBuilder()
1658
1897
  .ep(commonParams)
1659
1898
  .m(function (Command, cs, config, o) {
1660
- return [
1661
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1662
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1663
- ];
1899
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1664
1900
  })
1665
1901
  .s("AWSMigrationHubStrategyRecommendation", "ListApplicationComponents", {})
1666
1902
  .n("MigrationHubStrategyClient", "ListApplicationComponentsCommand")
1667
- .f(void 0, void 0)
1668
- .ser(se_ListApplicationComponentsCommand)
1669
- .de(de_ListApplicationComponentsCommand)
1903
+ .sc(ListApplicationComponents)
1670
1904
  .build() {
1671
1905
  }
1672
1906
 
@@ -1674,16 +1908,11 @@ class ListCollectorsCommand extends smithyClient.Command
1674
1908
  .classBuilder()
1675
1909
  .ep(commonParams)
1676
1910
  .m(function (Command, cs, config, o) {
1677
- return [
1678
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1679
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1680
- ];
1911
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1681
1912
  })
1682
1913
  .s("AWSMigrationHubStrategyRecommendation", "ListCollectors", {})
1683
1914
  .n("MigrationHubStrategyClient", "ListCollectorsCommand")
1684
- .f(void 0, void 0)
1685
- .ser(se_ListCollectorsCommand)
1686
- .de(de_ListCollectorsCommand)
1915
+ .sc(ListCollectors)
1687
1916
  .build() {
1688
1917
  }
1689
1918
 
@@ -1691,16 +1920,11 @@ class ListImportFileTaskCommand extends smithyClient.Command
1691
1920
  .classBuilder()
1692
1921
  .ep(commonParams)
1693
1922
  .m(function (Command, cs, config, o) {
1694
- return [
1695
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1696
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1697
- ];
1923
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1698
1924
  })
1699
1925
  .s("AWSMigrationHubStrategyRecommendation", "ListImportFileTask", {})
1700
1926
  .n("MigrationHubStrategyClient", "ListImportFileTaskCommand")
1701
- .f(void 0, void 0)
1702
- .ser(se_ListImportFileTaskCommand)
1703
- .de(de_ListImportFileTaskCommand)
1927
+ .sc(ListImportFileTask)
1704
1928
  .build() {
1705
1929
  }
1706
1930
 
@@ -1708,16 +1932,11 @@ class ListServersCommand extends smithyClient.Command
1708
1932
  .classBuilder()
1709
1933
  .ep(commonParams)
1710
1934
  .m(function (Command, cs, config, o) {
1711
- return [
1712
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1713
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1714
- ];
1935
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1715
1936
  })
1716
1937
  .s("AWSMigrationHubStrategyRecommendation", "ListServers", {})
1717
1938
  .n("MigrationHubStrategyClient", "ListServersCommand")
1718
- .f(void 0, void 0)
1719
- .ser(se_ListServersCommand)
1720
- .de(de_ListServersCommand)
1939
+ .sc(ListServers)
1721
1940
  .build() {
1722
1941
  }
1723
1942
 
@@ -1725,16 +1944,11 @@ class PutPortfolioPreferencesCommand extends smithyClient.Command
1725
1944
  .classBuilder()
1726
1945
  .ep(commonParams)
1727
1946
  .m(function (Command, cs, config, o) {
1728
- return [
1729
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1730
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1731
- ];
1947
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1732
1948
  })
1733
1949
  .s("AWSMigrationHubStrategyRecommendation", "PutPortfolioPreferences", {})
1734
1950
  .n("MigrationHubStrategyClient", "PutPortfolioPreferencesCommand")
1735
- .f(void 0, void 0)
1736
- .ser(se_PutPortfolioPreferencesCommand)
1737
- .de(de_PutPortfolioPreferencesCommand)
1951
+ .sc(PutPortfolioPreferences)
1738
1952
  .build() {
1739
1953
  }
1740
1954
 
@@ -1742,16 +1956,11 @@ class StartAssessmentCommand extends smithyClient.Command
1742
1956
  .classBuilder()
1743
1957
  .ep(commonParams)
1744
1958
  .m(function (Command, cs, config, o) {
1745
- return [
1746
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1747
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1748
- ];
1959
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1749
1960
  })
1750
1961
  .s("AWSMigrationHubStrategyRecommendation", "StartAssessment", {})
1751
1962
  .n("MigrationHubStrategyClient", "StartAssessmentCommand")
1752
- .f(void 0, void 0)
1753
- .ser(se_StartAssessmentCommand)
1754
- .de(de_StartAssessmentCommand)
1963
+ .sc(StartAssessment)
1755
1964
  .build() {
1756
1965
  }
1757
1966
 
@@ -1759,16 +1968,11 @@ class StartImportFileTaskCommand extends smithyClient.Command
1759
1968
  .classBuilder()
1760
1969
  .ep(commonParams)
1761
1970
  .m(function (Command, cs, config, o) {
1762
- return [
1763
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1764
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1765
- ];
1971
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1766
1972
  })
1767
1973
  .s("AWSMigrationHubStrategyRecommendation", "StartImportFileTask", {})
1768
1974
  .n("MigrationHubStrategyClient", "StartImportFileTaskCommand")
1769
- .f(void 0, void 0)
1770
- .ser(se_StartImportFileTaskCommand)
1771
- .de(de_StartImportFileTaskCommand)
1975
+ .sc(StartImportFileTask)
1772
1976
  .build() {
1773
1977
  }
1774
1978
 
@@ -1776,16 +1980,11 @@ class StartRecommendationReportGenerationCommand extends smithyClient.Command
1776
1980
  .classBuilder()
1777
1981
  .ep(commonParams)
1778
1982
  .m(function (Command, cs, config, o) {
1779
- return [
1780
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1781
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1782
- ];
1983
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1783
1984
  })
1784
1985
  .s("AWSMigrationHubStrategyRecommendation", "StartRecommendationReportGeneration", {})
1785
1986
  .n("MigrationHubStrategyClient", "StartRecommendationReportGenerationCommand")
1786
- .f(void 0, void 0)
1787
- .ser(se_StartRecommendationReportGenerationCommand)
1788
- .de(de_StartRecommendationReportGenerationCommand)
1987
+ .sc(StartRecommendationReportGeneration)
1789
1988
  .build() {
1790
1989
  }
1791
1990
 
@@ -1793,16 +1992,11 @@ class StopAssessmentCommand extends smithyClient.Command
1793
1992
  .classBuilder()
1794
1993
  .ep(commonParams)
1795
1994
  .m(function (Command, cs, config, o) {
1796
- return [
1797
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1798
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1799
- ];
1995
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1800
1996
  })
1801
1997
  .s("AWSMigrationHubStrategyRecommendation", "StopAssessment", {})
1802
1998
  .n("MigrationHubStrategyClient", "StopAssessmentCommand")
1803
- .f(void 0, void 0)
1804
- .ser(se_StopAssessmentCommand)
1805
- .de(de_StopAssessmentCommand)
1999
+ .sc(StopAssessment)
1806
2000
  .build() {
1807
2001
  }
1808
2002
 
@@ -1810,16 +2004,11 @@ class UpdateApplicationComponentConfigCommand extends smithyClient.Command
1810
2004
  .classBuilder()
1811
2005
  .ep(commonParams)
1812
2006
  .m(function (Command, cs, config, o) {
1813
- return [
1814
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1815
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1816
- ];
2007
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1817
2008
  })
1818
2009
  .s("AWSMigrationHubStrategyRecommendation", "UpdateApplicationComponentConfig", {})
1819
2010
  .n("MigrationHubStrategyClient", "UpdateApplicationComponentConfigCommand")
1820
- .f(UpdateApplicationComponentConfigRequestFilterSensitiveLog, void 0)
1821
- .ser(se_UpdateApplicationComponentConfigCommand)
1822
- .de(de_UpdateApplicationComponentConfigCommand)
2011
+ .sc(UpdateApplicationComponentConfig)
1823
2012
  .build() {
1824
2013
  }
1825
2014
 
@@ -1827,16 +2016,11 @@ class UpdateServerConfigCommand extends smithyClient.Command
1827
2016
  .classBuilder()
1828
2017
  .ep(commonParams)
1829
2018
  .m(function (Command, cs, config, o) {
1830
- return [
1831
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1832
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1833
- ];
2019
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1834
2020
  })
1835
2021
  .s("AWSMigrationHubStrategyRecommendation", "UpdateServerConfig", {})
1836
2022
  .n("MigrationHubStrategyClient", "UpdateServerConfigCommand")
1837
- .f(void 0, void 0)
1838
- .ser(se_UpdateServerConfigCommand)
1839
- .de(de_UpdateServerConfigCommand)
2023
+ .sc(UpdateServerConfig)
1840
2024
  .build() {
1841
2025
  }
1842
2026
 
@@ -1888,7 +2072,7 @@ Object.defineProperty(exports, "__Client", {
1888
2072
  enumerable: true,
1889
2073
  get: function () { return smithyClient.Client; }
1890
2074
  });
1891
- exports.AccessDeniedException = AccessDeniedException;
2075
+ exports.AccessDeniedException = AccessDeniedException$1;
1892
2076
  exports.AnalysisType = AnalysisType;
1893
2077
  exports.AntipatternReportStatus = AntipatternReportStatus;
1894
2078
  exports.AppType = AppType;
@@ -1902,10 +2086,10 @@ exports.AwsManagedTargetDestination = AwsManagedTargetDestination;
1902
2086
  exports.BinaryAnalyzerName = BinaryAnalyzerName;
1903
2087
  exports.CollectorHealth = CollectorHealth;
1904
2088
  exports.Condition = Condition;
1905
- exports.ConflictException = ConflictException;
2089
+ exports.ConflictException = ConflictException$1;
1906
2090
  exports.DataSourceType = DataSourceType;
1907
2091
  exports.DatabaseManagementPreference = DatabaseManagementPreference;
1908
- exports.DependencyException = DependencyException;
2092
+ exports.DependencyException = DependencyException$1;
1909
2093
  exports.GetApplicationComponentDetailsCommand = GetApplicationComponentDetailsCommand;
1910
2094
  exports.GetApplicationComponentStrategiesCommand = GetApplicationComponentStrategiesCommand;
1911
2095
  exports.GetAssessmentCommand = GetAssessmentCommand;
@@ -1921,7 +2105,7 @@ exports.HeterogeneousTargetDatabaseEngine = HeterogeneousTargetDatabaseEngine;
1921
2105
  exports.HomogeneousTargetDatabaseEngine = HomogeneousTargetDatabaseEngine;
1922
2106
  exports.ImportFileTaskStatus = ImportFileTaskStatus;
1923
2107
  exports.InclusionStatus = InclusionStatus;
1924
- exports.InternalServerException = InternalServerException;
2108
+ exports.InternalServerException = InternalServerException$1;
1925
2109
  exports.ListAnalyzableServersCommand = ListAnalyzableServersCommand;
1926
2110
  exports.ListApplicationComponentsCommand = ListApplicationComponentsCommand;
1927
2111
  exports.ListCollectorsCommand = ListCollectorsCommand;
@@ -1929,14 +2113,14 @@ exports.ListImportFileTaskCommand = ListImportFileTaskCommand;
1929
2113
  exports.ListServersCommand = ListServersCommand;
1930
2114
  exports.MigrationHubStrategy = MigrationHubStrategy;
1931
2115
  exports.MigrationHubStrategyClient = MigrationHubStrategyClient;
1932
- exports.MigrationHubStrategyServiceException = MigrationHubStrategyServiceException;
2116
+ exports.MigrationHubStrategyServiceException = MigrationHubStrategyServiceException$1;
1933
2117
  exports.NoPreferenceTargetDestination = NoPreferenceTargetDestination;
1934
2118
  exports.OSType = OSType;
1935
2119
  exports.OutputFormat = OutputFormat;
1936
2120
  exports.PipelineType = PipelineType;
1937
2121
  exports.PutPortfolioPreferencesCommand = PutPortfolioPreferencesCommand;
1938
2122
  exports.RecommendationReportStatus = RecommendationReportStatus;
1939
- exports.ResourceNotFoundException = ResourceNotFoundException;
2123
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1940
2124
  exports.ResourceSubType = ResourceSubType;
1941
2125
  exports.RunTimeAnalyzerName = RunTimeAnalyzerName;
1942
2126
  exports.RunTimeAssessmentStatus = RunTimeAssessmentStatus;
@@ -1945,8 +2129,8 @@ exports.SelfManageTargetDestination = SelfManageTargetDestination;
1945
2129
  exports.ServerCriteria = ServerCriteria;
1946
2130
  exports.ServerErrorCategory = ServerErrorCategory;
1947
2131
  exports.ServerOsType = ServerOsType;
1948
- exports.ServiceLinkedRoleLockClientException = ServiceLinkedRoleLockClientException;
1949
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2132
+ exports.ServiceLinkedRoleLockClientException = ServiceLinkedRoleLockClientException$1;
2133
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1950
2134
  exports.Severity = Severity;
1951
2135
  exports.SortOrder = SortOrder;
1952
2136
  exports.SourceCodeAnalyzerName = SourceCodeAnalyzerName;
@@ -1959,12 +2143,11 @@ exports.Strategy = Strategy;
1959
2143
  exports.StrategyRecommendation = StrategyRecommendation;
1960
2144
  exports.TargetDatabaseEngine = TargetDatabaseEngine;
1961
2145
  exports.TargetDestination = TargetDestination;
1962
- exports.ThrottlingException = ThrottlingException;
2146
+ exports.ThrottlingException = ThrottlingException$1;
1963
2147
  exports.TransformationToolName = TransformationToolName;
1964
2148
  exports.UpdateApplicationComponentConfigCommand = UpdateApplicationComponentConfigCommand;
1965
- exports.UpdateApplicationComponentConfigRequestFilterSensitiveLog = UpdateApplicationComponentConfigRequestFilterSensitiveLog;
1966
2149
  exports.UpdateServerConfigCommand = UpdateServerConfigCommand;
1967
- exports.ValidationException = ValidationException;
2150
+ exports.ValidationException = ValidationException$1;
1968
2151
  exports.VersionControl = VersionControl;
1969
2152
  exports.VersionControlType = VersionControlType;
1970
2153
  exports.paginateGetServerDetails = paginateGetServerDetails;