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