@aws-sdk/client-migrationhubstrategy 3.936.0 → 3.940.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.
@@ -1,22 +1,49 @@
1
- export declare const RuntimeAnalysisStatus: {
2
- readonly ANALYSIS_FAILED: "ANALYSIS_FAILED";
3
- readonly ANALYSIS_STARTED: "ANALYSIS_STARTED";
4
- readonly ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS";
5
- readonly ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED";
6
- };
7
- export type RuntimeAnalysisStatus =
8
- (typeof RuntimeAnalysisStatus)[keyof typeof RuntimeAnalysisStatus];
9
- export declare const SrcCodeOrDbAnalysisStatus: {
10
- readonly ANALYSIS_FAILED: "ANALYSIS_FAILED";
11
- readonly ANALYSIS_PARTIAL_SUCCESS: "ANALYSIS_PARTIAL_SUCCESS";
12
- readonly ANALYSIS_STARTED: "ANALYSIS_STARTED";
13
- readonly ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS";
14
- readonly ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED";
15
- readonly CONFIGURED: "CONFIGURED";
16
- readonly UNCONFIGURED: "UNCONFIGURED";
17
- };
18
- export type SrcCodeOrDbAnalysisStatus =
19
- (typeof SrcCodeOrDbAnalysisStatus)[keyof typeof SrcCodeOrDbAnalysisStatus];
1
+ import {
2
+ AnalysisType,
3
+ AntipatternReportStatus,
4
+ ApplicationComponentCriteria,
5
+ ApplicationMode,
6
+ AppType,
7
+ AppUnitErrorCategory,
8
+ AssessmentDataSourceType,
9
+ AssessmentStatus,
10
+ AuthType,
11
+ AwsManagedTargetDestination,
12
+ BinaryAnalyzerName,
13
+ CollectorHealth,
14
+ Condition,
15
+ DatabaseManagementPreference,
16
+ DataSourceType,
17
+ GroupName,
18
+ HeterogeneousTargetDatabaseEngine,
19
+ HomogeneousTargetDatabaseEngine,
20
+ ImportFileTaskStatus,
21
+ InclusionStatus,
22
+ NoPreferenceTargetDestination,
23
+ OSType,
24
+ OutputFormat,
25
+ PipelineType,
26
+ RecommendationReportStatus,
27
+ ResourceSubType,
28
+ RuntimeAnalysisStatus,
29
+ RunTimeAnalyzerName,
30
+ RunTimeAssessmentStatus,
31
+ SelfManageTargetDestination,
32
+ ServerCriteria,
33
+ ServerErrorCategory,
34
+ ServerOsType,
35
+ Severity,
36
+ SortOrder,
37
+ SourceCodeAnalyzerName,
38
+ SrcCodeOrDbAnalysisStatus,
39
+ Strategy,
40
+ StrategyRecommendation,
41
+ TargetDatabaseEngine,
42
+ TargetDestination,
43
+ TransformationToolName,
44
+ VersionControl,
45
+ VersionControlType,
46
+ } from "./enums";
20
47
  export type AnalysisStatusUnion =
21
48
  | AnalysisStatusUnion.RuntimeAnalysisStatusMember
22
49
  | AnalysisStatusUnion.SrcCodeOrDbAnalysisStatusMember
@@ -43,42 +70,12 @@ export declare namespace AnalysisStatusUnion {
43
70
  _: (name: string, value: any) => T;
44
71
  }
45
72
  }
46
- export declare const AnalysisType: {
47
- readonly BINARY_ANALYSIS: "BINARY_ANALYSIS";
48
- readonly DATABASE_ANALYSIS: "DATABASE_ANALYSIS";
49
- readonly RUNTIME_ANALYSIS: "RUNTIME_ANALYSIS";
50
- readonly SOURCE_CODE_ANALYSIS: "SOURCE_CODE_ANALYSIS";
51
- };
52
- export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
53
73
  export interface AnalyzableServerSummary {
54
74
  hostname?: string | undefined;
55
75
  ipAddress?: string | undefined;
56
76
  source?: string | undefined;
57
77
  vmId?: string | undefined;
58
78
  }
59
- export declare const BinaryAnalyzerName: {
60
- readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
61
- readonly DLL_ANALYZER: "DLL_ANALYZER";
62
- };
63
- export type BinaryAnalyzerName =
64
- (typeof BinaryAnalyzerName)[keyof typeof BinaryAnalyzerName];
65
- export declare const RunTimeAnalyzerName: {
66
- readonly A2C_ANALYZER: "A2C_ANALYZER";
67
- readonly DATABASE_ANALYZER: "DATABASE_ANALYZER";
68
- readonly EMP_PA_ANALYZER: "EMP_PA_ANALYZER";
69
- readonly REHOST_ANALYZER: "REHOST_ANALYZER";
70
- readonly SCT_ANALYZER: "SCT_ANALYZER";
71
- };
72
- export type RunTimeAnalyzerName =
73
- (typeof RunTimeAnalyzerName)[keyof typeof RunTimeAnalyzerName];
74
- export declare const SourceCodeAnalyzerName: {
75
- readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
76
- readonly CSHARP_ANALYZER: "CSHARP_ANALYZER";
77
- readonly JAVA_ANALYZER: "JAVA_ANALYZER";
78
- readonly PORTING_ASSISTANT: "PORTING_ASSISTANT";
79
- };
80
- export type SourceCodeAnalyzerName =
81
- (typeof SourceCodeAnalyzerName)[keyof typeof SourceCodeAnalyzerName];
82
79
  export type AnalyzerNameUnion =
83
80
  | AnalyzerNameUnion.BinaryAnalyzerNameMember
84
81
  | AnalyzerNameUnion.RunTimeAnalyzerNameMember
@@ -120,129 +117,22 @@ export interface S3Object {
120
117
  s3Bucket?: string | undefined;
121
118
  s3key?: string | undefined;
122
119
  }
123
- export declare const AntipatternReportStatus: {
124
- readonly FAILED: "FAILED";
125
- readonly IN_PROGRESS: "IN_PROGRESS";
126
- readonly SUCCESS: "SUCCESS";
127
- };
128
- export type AntipatternReportStatus =
129
- (typeof AntipatternReportStatus)[keyof typeof AntipatternReportStatus];
130
120
  export interface AntipatternReportResult {
131
121
  analyzerName?: AnalyzerNameUnion | undefined;
132
122
  antiPatternReportS3Object?: S3Object | undefined;
133
123
  antipatternReportStatus?: AntipatternReportStatus | undefined;
134
124
  antipatternReportStatusMessage?: string | undefined;
135
125
  }
136
- export declare const Severity: {
137
- readonly HIGH: "HIGH";
138
- readonly LOW: "LOW";
139
- readonly MEDIUM: "MEDIUM";
140
- };
141
- export type Severity = (typeof Severity)[keyof typeof Severity];
142
126
  export interface AntipatternSeveritySummary {
143
127
  severity?: Severity | undefined;
144
128
  count?: number | undefined;
145
129
  }
146
- export declare const ApplicationComponentCriteria: {
147
- readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
148
- readonly APP_NAME: "APP_NAME";
149
- readonly APP_TYPE: "APP_TYPE";
150
- readonly DESTINATION: "DESTINATION";
151
- readonly ERROR_CATEGORY: "ERROR_CATEGORY";
152
- readonly NOT_DEFINED: "NOT_DEFINED";
153
- readonly SERVER_ID: "SERVER_ID";
154
- readonly STRATEGY: "STRATEGY";
155
- };
156
- export type ApplicationComponentCriteria =
157
- (typeof ApplicationComponentCriteria)[keyof typeof ApplicationComponentCriteria];
158
- export declare const AppType: {
159
- readonly IIS: "IIS";
160
- readonly cassandra: "Cassandra";
161
- readonly db2: "DB2";
162
- readonly dotNetFramework: "DotNetFramework";
163
- readonly dotnet: "Dotnet";
164
- readonly dotnetcore: "DotnetCore";
165
- readonly java: "Java";
166
- readonly jboss: "JBoss";
167
- readonly mariadb: "Maria DB";
168
- readonly mongodb: "Mongo DB";
169
- readonly mysql: "MySQL";
170
- readonly oracle: "Oracle";
171
- readonly other: "Other";
172
- readonly postgresqlserver: "PostgreSQLServer";
173
- readonly spring: "Spring";
174
- readonly sqlServer: "SQLServer";
175
- readonly sybase: "Sybase";
176
- readonly tomcat: "Tomcat";
177
- readonly unknown: "Unknown";
178
- readonly visualbasic: "Visual Basic";
179
- readonly weblogic: "Oracle WebLogic";
180
- readonly websphere: "IBM WebSphere";
181
- };
182
- export type AppType = (typeof AppType)[keyof typeof AppType];
183
- export declare const AppUnitErrorCategory: {
184
- readonly CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR";
185
- readonly CREDENTIAL_ERROR: "CREDENTIAL_ERROR";
186
- readonly OTHER_ERROR: "OTHER_ERROR";
187
- readonly PERMISSION_ERROR: "PERMISSION_ERROR";
188
- readonly UNSUPPORTED_ERROR: "UNSUPPORTED_ERROR";
189
- };
190
- export type AppUnitErrorCategory =
191
- (typeof AppUnitErrorCategory)[keyof typeof AppUnitErrorCategory];
192
130
  export interface AppUnitError {
193
131
  appUnitErrorCategory?: AppUnitErrorCategory | undefined;
194
132
  }
195
133
  export interface DatabaseConfigDetail {
196
134
  secretName?: string | undefined;
197
135
  }
198
- export declare const InclusionStatus: {
199
- readonly EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment";
200
- readonly INCLUDE_IN_RECOMMENDATION: "includeInAssessment";
201
- };
202
- export type InclusionStatus =
203
- (typeof InclusionStatus)[keyof typeof InclusionStatus];
204
- export declare const Strategy: {
205
- readonly REFACTOR: "Refactor";
206
- readonly REHOST: "Rehost";
207
- readonly RELOCATE: "Relocate";
208
- readonly REPLATFORM: "Replatform";
209
- readonly REPURCHASE: "Repurchase";
210
- readonly RETAIN: "Retain";
211
- readonly RETIREMENT: "Retirement";
212
- };
213
- export type Strategy = (typeof Strategy)[keyof typeof Strategy];
214
- export declare const TargetDestination: {
215
- readonly AMAZON_DOCUMENTDB: "Amazon DocumentDB";
216
- readonly AMAZON_DYNAMODB: "Amazon DynamoDB";
217
- readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
218
- readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
219
- readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
220
- readonly AMAZON_RDS: "Amazon Relational Database Service";
221
- readonly AMAZON_RDS_MYSQL: "Amazon Relational Database Service on MySQL";
222
- readonly AMAZON_RDS_POSTGRESQL: "Amazon Relational Database Service on PostgreSQL";
223
- readonly AURORA_MYSQL: "Aurora MySQL";
224
- readonly AURORA_POSTGRESQL: "Aurora PostgreSQL";
225
- readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
226
- readonly AWS_FARGATE: "AWS Fargate";
227
- readonly BABELFISH_AURORA_POSTGRESQL: "Babelfish for Aurora PostgreSQL";
228
- readonly NONE_SPECIFIED: "None specified";
229
- };
230
- export type TargetDestination =
231
- (typeof TargetDestination)[keyof typeof TargetDestination];
232
- export declare const TransformationToolName: {
233
- readonly APP2CONTAINER: "App2Container";
234
- readonly DMS: "Database Migration Service";
235
- readonly EMP: "End of Support Migration";
236
- readonly IN_PLACE_OS_UPGRADE: "In Place Operating System Upgrade";
237
- readonly MGN: "Application Migration Service";
238
- readonly NATIVE_SQL: "Native SQL Server Backup/Restore";
239
- readonly PORTING_ASSISTANT: "Porting Assistant For .NET";
240
- readonly SCT: "Schema Conversion Tool";
241
- readonly STRATEGY_RECOMMENDATION_SUPPORT: "Strategy Recommendation Support";
242
- readonly WWAMA: "Windows Web Application Migration Assistant";
243
- };
244
- export type TransformationToolName =
245
- (typeof TransformationToolName)[keyof typeof TransformationToolName];
246
136
  export interface TransformationTool {
247
137
  name?: TransformationToolName | undefined;
248
138
  description?: string | undefined;
@@ -253,13 +143,6 @@ export interface RecommendationSet {
253
143
  targetDestination?: TargetDestination | undefined;
254
144
  strategy?: Strategy | undefined;
255
145
  }
256
- export declare const ResourceSubType: {
257
- readonly DATABASE: "Database";
258
- readonly DATABASE_PROCESS: "DatabaseProcess";
259
- readonly PROCESS: "Process";
260
- };
261
- export type ResourceSubType =
262
- (typeof ResourceSubType)[keyof typeof ResourceSubType];
263
146
  export interface Result {
264
147
  analysisType?: AnalysisType | undefined;
265
148
  analysisStatus?: AnalysisStatusUnion | undefined;
@@ -301,14 +184,6 @@ export interface ApplicationComponentStatusSummary {
301
184
  srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus | undefined;
302
185
  count?: number | undefined;
303
186
  }
304
- export declare const StrategyRecommendation: {
305
- readonly NOT_RECOMMENDED: "notRecommended";
306
- readonly POTENTIAL: "potential";
307
- readonly RECOMMENDED: "recommended";
308
- readonly VIABLE_OPTION: "viableOption";
309
- };
310
- export type StrategyRecommendation =
311
- (typeof StrategyRecommendation)[keyof typeof StrategyRecommendation];
312
187
  export interface ApplicationComponentStrategy {
313
188
  recommendation?: RecommendationSet | undefined;
314
189
  status?: StrategyRecommendation | undefined;
@@ -318,44 +193,12 @@ export interface ApplicationComponentSummary {
318
193
  appType?: AppType | undefined;
319
194
  count?: number | undefined;
320
195
  }
321
- export declare const ApplicationMode: {
322
- readonly ALL: "ALL";
323
- readonly KNOWN: "KNOWN";
324
- readonly UNKNOWN: "UNKNOWN";
325
- };
326
- export type ApplicationMode =
327
- (typeof ApplicationMode)[keyof typeof ApplicationMode];
328
- export declare const AwsManagedTargetDestination: {
329
- readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
330
- readonly AWS_FARGATE: "AWS Fargate";
331
- readonly NONE_SPECIFIED: "None specified";
332
- };
333
- export type AwsManagedTargetDestination =
334
- (typeof AwsManagedTargetDestination)[keyof typeof AwsManagedTargetDestination];
335
196
  export interface AwsManagedResources {
336
197
  targetDestination: AwsManagedTargetDestination[] | undefined;
337
198
  }
338
- export declare const NoPreferenceTargetDestination: {
339
- readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
340
- readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
341
- readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
342
- readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
343
- readonly AWS_FARGATE: "AWS Fargate";
344
- readonly NONE_SPECIFIED: "None specified";
345
- };
346
- export type NoPreferenceTargetDestination =
347
- (typeof NoPreferenceTargetDestination)[keyof typeof NoPreferenceTargetDestination];
348
199
  export interface NoManagementPreference {
349
200
  targetDestination: NoPreferenceTargetDestination[] | undefined;
350
201
  }
351
- export declare const SelfManageTargetDestination: {
352
- readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
353
- readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
354
- readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
355
- readonly NONE_SPECIFIED: "None specified";
356
- };
357
- export type SelfManageTargetDestination =
358
- (typeof SelfManageTargetDestination)[keyof typeof SelfManageTargetDestination];
359
202
  export interface SelfManageResources {
360
203
  targetDestination: SelfManageTargetDestination[] | undefined;
361
204
  }
@@ -399,48 +242,14 @@ export declare namespace ManagementPreference {
399
242
  export interface ApplicationPreferences {
400
243
  managementPreference?: ManagementPreference | undefined;
401
244
  }
402
- export declare const AssessmentDataSourceType: {
403
- readonly ADS: "ApplicationDiscoveryService";
404
- readonly MANUAL_IMPORT: "ManualImport";
405
- readonly SR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector";
406
- };
407
- export type AssessmentDataSourceType =
408
- (typeof AssessmentDataSourceType)[keyof typeof AssessmentDataSourceType];
409
- export declare const AssessmentStatus: {
410
- readonly COMPLETE: "COMPLETE";
411
- readonly FAILED: "FAILED";
412
- readonly IN_PROGRESS: "IN_PROGRESS";
413
- readonly STOPPED: "STOPPED";
414
- };
415
- export type AssessmentStatus =
416
- (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
417
245
  export interface StrategySummary {
418
246
  strategy?: Strategy | undefined;
419
247
  count?: number | undefined;
420
248
  }
421
- export declare const RunTimeAssessmentStatus: {
422
- readonly DC_FAILED: "dataCollectionTaskFailed";
423
- readonly DC_PARTIAL_SUCCESS: "dataCollectionTaskPartialSuccess";
424
- readonly DC_REQ_SENT: "dataCollectionTaskScheduled";
425
- readonly DC_STARTED: "dataCollectionTaskStarted";
426
- readonly DC_STOPPED: "dataCollectionTaskStopped";
427
- readonly DC_SUCCESS: "dataCollectionTaskSuccess";
428
- readonly DC_TO_BE_SCHEDULED: "dataCollectionTaskToBeScheduled";
429
- };
430
- export type RunTimeAssessmentStatus =
431
- (typeof RunTimeAssessmentStatus)[keyof typeof RunTimeAssessmentStatus];
432
249
  export interface ServerStatusSummary {
433
250
  runTimeAssessmentStatus?: RunTimeAssessmentStatus | undefined;
434
251
  count?: number | undefined;
435
252
  }
436
- export declare const ServerOsType: {
437
- readonly amazonLinux: "AmazonLinux";
438
- readonly endOfSupportWindowsServer: "EndOfSupportWindowsServer";
439
- readonly other: "Other";
440
- readonly redhat: "Redhat";
441
- readonly windowsServer: "WindowsServer";
442
- };
443
- export type ServerOsType = (typeof ServerOsType)[keyof typeof ServerOsType];
444
253
  export interface ServerSummary {
445
254
  ServerOsType?: ServerOsType | undefined;
446
255
  count?: number | undefined;
@@ -460,13 +269,6 @@ export interface AssessmentSummary {
460
269
  | undefined;
461
270
  listServerStatusSummary?: ServerStatusSummary[] | undefined;
462
271
  }
463
- export declare const Condition: {
464
- readonly CONTAINS: "CONTAINS";
465
- readonly EQUALS: "EQUALS";
466
- readonly NOT_CONTAINS: "NOT_CONTAINS";
467
- readonly NOT_EQUALS: "NOT_EQUALS";
468
- };
469
- export type Condition = (typeof Condition)[keyof typeof Condition];
470
272
  export interface AssessmentTarget {
471
273
  condition: Condition | undefined;
472
274
  name: string | undefined;
@@ -476,12 +278,6 @@ export interface AssociatedApplication {
476
278
  name?: string | undefined;
477
279
  id?: string | undefined;
478
280
  }
479
- export declare const AuthType: {
480
- readonly CERT: "CERT";
481
- readonly NTLM: "NTLM";
482
- readonly SSH: "SSH";
483
- };
484
- export type AuthType = (typeof AuthType)[keyof typeof AuthType];
485
281
  export interface GetApplicationComponentDetailsRequest {
486
282
  applicationComponentId: string | undefined;
487
283
  }
@@ -518,18 +314,6 @@ export interface GetAssessmentResponse {
518
314
  export interface GetImportFileTaskRequest {
519
315
  id: string | undefined;
520
316
  }
521
- export declare const ImportFileTaskStatus: {
522
- readonly DELETE_FAILED: "DeleteFailed";
523
- readonly DELETE_IN_PROGRESS: "DeleteInProgress";
524
- readonly DELETE_PARTIAL_SUCCESS: "DeletePartialSuccess";
525
- readonly DELETE_SUCCESS: "DeleteSuccess";
526
- readonly IMPORT_FAILED: "ImportFailed";
527
- readonly IMPORT_IN_PROGRESS: "ImportInProgress";
528
- readonly IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess";
529
- readonly IMPORT_SUCCESS: "ImportSuccess";
530
- };
531
- export type ImportFileTaskStatus =
532
- (typeof ImportFileTaskStatus)[keyof typeof ImportFileTaskStatus];
533
317
  export interface GetImportFileTaskResponse {
534
318
  id?: string | undefined;
535
319
  status?: ImportFileTaskStatus | undefined;
@@ -548,52 +332,12 @@ export interface GetLatestAssessmentIdResponse {
548
332
  id?: string | undefined;
549
333
  }
550
334
  export interface GetPortfolioPreferencesRequest {}
551
- export declare const DatabaseManagementPreference: {
552
- readonly AWS_MANAGED: "AWS-managed";
553
- readonly NO_PREFERENCE: "No preference";
554
- readonly SELF_MANAGE: "Self-manage";
555
- };
556
- export type DatabaseManagementPreference =
557
- (typeof DatabaseManagementPreference)[keyof typeof DatabaseManagementPreference];
558
- export declare const HeterogeneousTargetDatabaseEngine: {
559
- readonly AMAZON_AURORA: "Amazon Aurora";
560
- readonly AWS_POSTGRESQL: "AWS PostgreSQL";
561
- readonly DB2_LUW: "Db2 LUW";
562
- readonly MARIA_DB: "MariaDB";
563
- readonly MICROSOFT_SQL_SERVER: "Microsoft SQL Server";
564
- readonly MONGO_DB: "MongoDB";
565
- readonly MYSQL: "MySQL";
566
- readonly NONE_SPECIFIED: "None specified";
567
- readonly ORACLE_DATABASE: "Oracle Database";
568
- readonly SAP: "SAP";
569
- };
570
- export type HeterogeneousTargetDatabaseEngine =
571
- (typeof HeterogeneousTargetDatabaseEngine)[keyof typeof HeterogeneousTargetDatabaseEngine];
572
335
  export interface Heterogeneous {
573
336
  targetDatabaseEngine: HeterogeneousTargetDatabaseEngine[] | undefined;
574
337
  }
575
- export declare const HomogeneousTargetDatabaseEngine: {
576
- readonly NONE_SPECIFIED: "None specified";
577
- };
578
- export type HomogeneousTargetDatabaseEngine =
579
- (typeof HomogeneousTargetDatabaseEngine)[keyof typeof HomogeneousTargetDatabaseEngine];
580
338
  export interface Homogeneous {
581
339
  targetDatabaseEngine?: HomogeneousTargetDatabaseEngine[] | undefined;
582
340
  }
583
- export declare const TargetDatabaseEngine: {
584
- readonly AMAZON_AURORA: "Amazon Aurora";
585
- readonly AWS_POSTGRESQL: "AWS PostgreSQL";
586
- readonly DB2_LUW: "Db2 LUW";
587
- readonly MARIA_DB: "MariaDB";
588
- readonly MICROSOFT_SQL_SERVER: "Microsoft SQL Server";
589
- readonly MONGO_DB: "MongoDB";
590
- readonly MYSQL: "MySQL";
591
- readonly NONE_SPECIFIED: "None specified";
592
- readonly ORACLE_DATABASE: "Oracle Database";
593
- readonly SAP: "SAP";
594
- };
595
- export type TargetDatabaseEngine =
596
- (typeof TargetDatabaseEngine)[keyof typeof TargetDatabaseEngine];
597
341
  export interface NoDatabaseMigrationPreference {
598
342
  targetDatabaseEngine: TargetDatabaseEngine[] | undefined;
599
343
  }
@@ -660,13 +404,6 @@ export interface GetPortfolioSummaryResponse {
660
404
  export interface GetRecommendationReportDetailsRequest {
661
405
  id: string | undefined;
662
406
  }
663
- export declare const RecommendationReportStatus: {
664
- readonly FAILED: "FAILED";
665
- readonly IN_PROGRESS: "IN_PROGRESS";
666
- readonly SUCCESS: "SUCCESS";
667
- };
668
- export type RecommendationReportStatus =
669
- (typeof RecommendationReportStatus)[keyof typeof RecommendationReportStatus];
670
407
  export interface RecommendationReportDetails {
671
408
  status?: RecommendationReportStatus | undefined;
672
409
  statusMessage?: string | undefined;
@@ -684,15 +421,6 @@ export interface GetServerDetailsRequest {
684
421
  nextToken?: string | undefined;
685
422
  maxResults?: number | undefined;
686
423
  }
687
- export declare const ServerErrorCategory: {
688
- readonly ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR";
689
- readonly CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR";
690
- readonly CREDENTIAL_ERROR: "CREDENTIAL_ERROR";
691
- readonly OTHER_ERROR: "OTHER_ERROR";
692
- readonly PERMISSION_ERROR: "PERMISSION_ERROR";
693
- };
694
- export type ServerErrorCategory =
695
- (typeof ServerErrorCategory)[keyof typeof ServerErrorCategory];
696
424
  export interface ServerError {
697
425
  serverErrorCategory?: ServerErrorCategory | undefined;
698
426
  }
@@ -702,11 +430,6 @@ export interface NetworkInfo {
702
430
  macAddress: string | undefined;
703
431
  netMask: string | undefined;
704
432
  }
705
- export declare const OSType: {
706
- readonly LINUX: "LINUX";
707
- readonly WINDOWS: "WINDOWS";
708
- };
709
- export type OSType = (typeof OSType)[keyof typeof OSType];
710
433
  export interface OSInfo {
711
434
  type?: OSType | undefined;
712
435
  version?: string | undefined;
@@ -750,11 +473,6 @@ export interface ServerStrategy {
750
473
  export interface GetServerStrategiesResponse {
751
474
  serverStrategies?: ServerStrategy[] | undefined;
752
475
  }
753
- export declare const SortOrder: {
754
- readonly ASC: "ASC";
755
- readonly DESC: "DESC";
756
- };
757
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
758
476
  export interface ListAnalyzableServersRequest {
759
477
  sort?: SortOrder | undefined;
760
478
  nextToken?: string | undefined;
@@ -764,11 +482,6 @@ export interface ListAnalyzableServersResponse {
764
482
  analyzableServers?: AnalyzableServerSummary[] | undefined;
765
483
  nextToken?: string | undefined;
766
484
  }
767
- export declare const GroupName: {
768
- readonly EXTERNAL_ID: "ExternalId";
769
- readonly EXTERNAL_SOURCE_TYPE: "ExternalSourceType";
770
- };
771
- export type GroupName = (typeof GroupName)[keyof typeof GroupName];
772
485
  export interface Group {
773
486
  name?: GroupName | undefined;
774
487
  value?: string | undefined;
@@ -789,21 +502,11 @@ export interface ListCollectorsRequest {
789
502
  nextToken?: string | undefined;
790
503
  maxResults?: number | undefined;
791
504
  }
792
- export declare const CollectorHealth: {
793
- readonly COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY";
794
- readonly COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY";
795
- };
796
- export type CollectorHealth =
797
- (typeof CollectorHealth)[keyof typeof CollectorHealth];
798
505
  export interface IPAddressBasedRemoteInfo {
799
506
  ipAddressConfigurationTimeStamp?: string | undefined;
800
507
  authType?: AuthType | undefined;
801
508
  osType?: OSType | undefined;
802
509
  }
803
- export declare const PipelineType: {
804
- readonly AZURE_DEVOPS: "AZURE_DEVOPS";
805
- };
806
- export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
807
510
  export interface PipelineInfo {
808
511
  pipelineType?: PipelineType | undefined;
809
512
  pipelineConfigurationTimeStamp?: string | undefined;
@@ -815,13 +518,6 @@ export interface VcenterBasedRemoteInfo {
815
518
  vcenterConfigurationTimeStamp?: string | undefined;
816
519
  osType?: OSType | undefined;
817
520
  }
818
- export declare const VersionControlType: {
819
- readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
820
- readonly GITHUB: "GITHUB";
821
- readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
822
- };
823
- export type VersionControlType =
824
- (typeof VersionControlType)[keyof typeof VersionControlType];
825
521
  export interface VersionControlInfo {
826
522
  versionControlType?: VersionControlType | undefined;
827
523
  versionControlConfigurationTimeStamp?: string | undefined;
@@ -870,17 +566,6 @@ export interface ListImportFileTaskResponse {
870
566
  taskInfos?: ImportFileTaskInformation[] | undefined;
871
567
  nextToken?: string | undefined;
872
568
  }
873
- export declare const ServerCriteria: {
874
- readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
875
- readonly DESTINATION: "DESTINATION";
876
- readonly ERROR_CATEGORY: "ERROR_CATEGORY";
877
- readonly NOT_DEFINED: "NOT_DEFINED";
878
- readonly OS_NAME: "OS_NAME";
879
- readonly SERVER_ID: "SERVER_ID";
880
- readonly STRATEGY: "STRATEGY";
881
- };
882
- export type ServerCriteria =
883
- (typeof ServerCriteria)[keyof typeof ServerCriteria];
884
569
  export interface ListServersRequest {
885
570
  serverCriteria?: ServerCriteria | undefined;
886
571
  filterValue?: string | undefined;
@@ -909,14 +594,6 @@ export interface StartAssessmentRequest {
909
594
  export interface StartAssessmentResponse {
910
595
  assessmentId?: string | undefined;
911
596
  }
912
- export declare const DataSourceType: {
913
- readonly ADS: "ApplicationDiscoveryService";
914
- readonly IMPORT: "Import";
915
- readonly MHSR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector";
916
- readonly MPA: "MPA";
917
- };
918
- export type DataSourceType =
919
- (typeof DataSourceType)[keyof typeof DataSourceType];
920
597
  export interface StartImportFileTaskRequest {
921
598
  name: string | undefined;
922
599
  S3Bucket: string | undefined;
@@ -928,11 +605,6 @@ export interface StartImportFileTaskRequest {
928
605
  export interface StartImportFileTaskResponse {
929
606
  id?: string | undefined;
930
607
  }
931
- export declare const OutputFormat: {
932
- readonly Excel: "Excel";
933
- readonly Json: "Json";
934
- };
935
- export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
936
608
  export interface StartRecommendationReportGenerationRequest {
937
609
  outputFormat?: OutputFormat | undefined;
938
610
  groupIdFilter?: Group[] | undefined;
@@ -944,13 +616,6 @@ export interface StopAssessmentRequest {
944
616
  assessmentId: string | undefined;
945
617
  }
946
618
  export interface StopAssessmentResponse {}
947
- export declare const VersionControl: {
948
- readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
949
- readonly GITHUB: "GITHUB";
950
- readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
951
- };
952
- export type VersionControl =
953
- (typeof VersionControl)[keyof typeof VersionControl];
954
619
  export interface SourceCode {
955
620
  versionControl?: VersionControl | undefined;
956
621
  sourceVersion?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-migrationhubstrategy",
3
3
  "description": "AWS SDK for JavaScript Migrationhubstrategy Client for Node.js, Browser and React Native",
4
- "version": "3.936.0",
4
+ "version": "3.940.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-migrationhubstrategy",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
23
+ "@aws-sdk/core": "3.940.0",
24
+ "@aws-sdk/credential-provider-node": "3.940.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.940.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.940.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",