cdk-docker-image-deployment 0.0.97 → 0.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +255 -137
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +353 -74
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/migrationhubstrategy-2020-02-19.min.json +177 -36
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +156 -16
- package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +317 -2
- package/node_modules/aws-sdk/clients/migrationhubstrategy.d.ts +223 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +258 -140
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -43,6 +43,14 @@ declare class MigrationHubStrategy extends Service {
|
|
|
43
43
|
* Retrieves the details about a specific import task.
|
|
44
44
|
*/
|
|
45
45
|
getImportFileTask(callback?: (err: AWSError, data: MigrationHubStrategy.Types.GetImportFileTaskResponse) => void): Request<MigrationHubStrategy.Types.GetImportFileTaskResponse, AWSError>;
|
|
46
|
+
/**
|
|
47
|
+
* Retrieve the latest ID of a specific assessment task.
|
|
48
|
+
*/
|
|
49
|
+
getLatestAssessmentId(params: MigrationHubStrategy.Types.GetLatestAssessmentIdRequest, callback?: (err: AWSError, data: MigrationHubStrategy.Types.GetLatestAssessmentIdResponse) => void): Request<MigrationHubStrategy.Types.GetLatestAssessmentIdResponse, AWSError>;
|
|
50
|
+
/**
|
|
51
|
+
* Retrieve the latest ID of a specific assessment task.
|
|
52
|
+
*/
|
|
53
|
+
getLatestAssessmentId(callback?: (err: AWSError, data: MigrationHubStrategy.Types.GetLatestAssessmentIdResponse) => void): Request<MigrationHubStrategy.Types.GetLatestAssessmentIdResponse, AWSError>;
|
|
46
54
|
/**
|
|
47
55
|
* Retrieves your migration and modernization preferences.
|
|
48
56
|
*/
|
|
@@ -184,8 +192,15 @@ declare namespace MigrationHubStrategy {
|
|
|
184
192
|
*/
|
|
185
193
|
severity?: Severity;
|
|
186
194
|
}
|
|
187
|
-
export type AppType = "DotNetFramework"|"Java"|"SQLServer"|"IIS"|"Oracle"|"Other"|string;
|
|
188
|
-
export
|
|
195
|
+
export type AppType = "DotNetFramework"|"Java"|"SQLServer"|"IIS"|"Oracle"|"Other"|"Tomcat"|"JBoss"|"Spring"|"Mongo DB"|"DB2"|"Maria DB"|"MySQL"|"Sybase"|"PostgreSQLServer"|"Cassandra"|"IBM WebSphere"|"Oracle WebLogic"|"Visual Basic"|"Unknown"|"DotnetCore"|"Dotnet"|string;
|
|
196
|
+
export interface AppUnitError {
|
|
197
|
+
/**
|
|
198
|
+
* The category of the error.
|
|
199
|
+
*/
|
|
200
|
+
appUnitErrorCategory?: AppUnitErrorCategory;
|
|
201
|
+
}
|
|
202
|
+
export type AppUnitErrorCategory = "CREDENTIAL_ERROR"|"CONNECTIVITY_ERROR"|"PERMISSION_ERROR"|"UNSUPPORTED_ERROR"|"OTHER_ERROR"|string;
|
|
203
|
+
export type ApplicationComponentCriteria = "NOT_DEFINED"|"APP_NAME"|"SERVER_ID"|"APP_TYPE"|"STRATEGY"|"DESTINATION"|"ANALYSIS_STATUS"|"ERROR_CATEGORY"|string;
|
|
189
204
|
export interface ApplicationComponentDetail {
|
|
190
205
|
/**
|
|
191
206
|
* The status of analysis, if the application component has source code or an associated database.
|
|
@@ -207,6 +222,10 @@ declare namespace MigrationHubStrategy {
|
|
|
207
222
|
* The type of application component.
|
|
208
223
|
*/
|
|
209
224
|
appType?: AppType;
|
|
225
|
+
/**
|
|
226
|
+
* The error in the analysis of the source code or database.
|
|
227
|
+
*/
|
|
228
|
+
appUnitError?: AppUnitError;
|
|
210
229
|
/**
|
|
211
230
|
* The ID of the server that the application component is running on.
|
|
212
231
|
*/
|
|
@@ -255,6 +274,14 @@ declare namespace MigrationHubStrategy {
|
|
|
255
274
|
* The application component subtype.
|
|
256
275
|
*/
|
|
257
276
|
resourceSubType?: ResourceSubType;
|
|
277
|
+
/**
|
|
278
|
+
* The status of the application unit.
|
|
279
|
+
*/
|
|
280
|
+
runtimeStatus?: RuntimeAnalysisStatus;
|
|
281
|
+
/**
|
|
282
|
+
* The status message for the application unit.
|
|
283
|
+
*/
|
|
284
|
+
runtimeStatusMessage?: StatusMessage;
|
|
258
285
|
/**
|
|
259
286
|
* Details about the source code repository associated with the application component.
|
|
260
287
|
*/
|
|
@@ -266,6 +293,16 @@ declare namespace MigrationHubStrategy {
|
|
|
266
293
|
}
|
|
267
294
|
export type ApplicationComponentDetails = ApplicationComponentDetail[];
|
|
268
295
|
export type ApplicationComponentId = string;
|
|
296
|
+
export interface ApplicationComponentStatusSummary {
|
|
297
|
+
/**
|
|
298
|
+
* The number of application components successfully analyzed, partially successful or failed analysis.
|
|
299
|
+
*/
|
|
300
|
+
count?: Integer;
|
|
301
|
+
/**
|
|
302
|
+
* The status of database analysis.
|
|
303
|
+
*/
|
|
304
|
+
srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus;
|
|
305
|
+
}
|
|
269
306
|
export type ApplicationComponentStrategies = ApplicationComponentStrategy[];
|
|
270
307
|
export interface ApplicationComponentStrategy {
|
|
271
308
|
/**
|
|
@@ -291,6 +328,7 @@ declare namespace MigrationHubStrategy {
|
|
|
291
328
|
*/
|
|
292
329
|
count?: Integer;
|
|
293
330
|
}
|
|
331
|
+
export type ApplicationMode = "ALL"|"KNOWN"|"UNKNOWN"|string;
|
|
294
332
|
export interface ApplicationPreferences {
|
|
295
333
|
/**
|
|
296
334
|
* Application preferences that you specify to prefer managed environment.
|
|
@@ -298,6 +336,7 @@ declare namespace MigrationHubStrategy {
|
|
|
298
336
|
managementPreference?: ManagementPreference;
|
|
299
337
|
}
|
|
300
338
|
export type AssessmentStatus = "IN_PROGRESS"|"COMPLETE"|"FAILED"|"STOPPED"|string;
|
|
339
|
+
export type AssessmentStatusMessage = string;
|
|
301
340
|
export interface AssessmentSummary {
|
|
302
341
|
/**
|
|
303
342
|
* The Amazon S3 object containing the anti-pattern report.
|
|
@@ -319,6 +358,10 @@ declare namespace MigrationHubStrategy {
|
|
|
319
358
|
* List of AntipatternSeveritySummary.
|
|
320
359
|
*/
|
|
321
360
|
listAntipatternSeveritySummary?: ListAntipatternSeveritySummary;
|
|
361
|
+
/**
|
|
362
|
+
* List of status summaries of the analyzed application components.
|
|
363
|
+
*/
|
|
364
|
+
listApplicationComponentStatusSummary?: ListApplicationComponentStatusSummary;
|
|
322
365
|
/**
|
|
323
366
|
* List of ApplicationComponentStrategySummary.
|
|
324
367
|
*/
|
|
@@ -327,6 +370,10 @@ declare namespace MigrationHubStrategy {
|
|
|
327
370
|
* List of ApplicationComponentSummary.
|
|
328
371
|
*/
|
|
329
372
|
listApplicationComponentSummary?: ListApplicationComponentSummary;
|
|
373
|
+
/**
|
|
374
|
+
* List of status summaries of the analyzed servers.
|
|
375
|
+
*/
|
|
376
|
+
listServerStatusSummary?: ListServerStatusSummary;
|
|
330
377
|
/**
|
|
331
378
|
* List of ServerStrategySummary.
|
|
332
379
|
*/
|
|
@@ -336,6 +383,22 @@ declare namespace MigrationHubStrategy {
|
|
|
336
383
|
*/
|
|
337
384
|
listServerSummary?: ListServerSummary;
|
|
338
385
|
}
|
|
386
|
+
export interface AssessmentTarget {
|
|
387
|
+
/**
|
|
388
|
+
* Condition of an assessment.
|
|
389
|
+
*/
|
|
390
|
+
condition: Condition;
|
|
391
|
+
/**
|
|
392
|
+
* Name of an assessment.
|
|
393
|
+
*/
|
|
394
|
+
name: String;
|
|
395
|
+
/**
|
|
396
|
+
* Values of an assessment.
|
|
397
|
+
*/
|
|
398
|
+
values: AssessmentTargetValues;
|
|
399
|
+
}
|
|
400
|
+
export type AssessmentTargetValues = String[];
|
|
401
|
+
export type AssessmentTargets = AssessmentTarget[];
|
|
339
402
|
export interface AssociatedApplication {
|
|
340
403
|
/**
|
|
341
404
|
* ID of the application as defined in Application Discovery Service.
|
|
@@ -349,6 +412,7 @@ declare namespace MigrationHubStrategy {
|
|
|
349
412
|
export type AssociatedApplications = AssociatedApplication[];
|
|
350
413
|
export type AssociatedServerIDs = String[];
|
|
351
414
|
export type AsyncTaskId = string;
|
|
415
|
+
export type AuthType = "NTLM"|"SSH"|"CERT"|string;
|
|
352
416
|
export interface AwsManagedResources {
|
|
353
417
|
/**
|
|
354
418
|
* The choice of application destination that you specify.
|
|
@@ -390,6 +454,10 @@ declare namespace MigrationHubStrategy {
|
|
|
390
454
|
* Current version of the collector that is running in the environment that you specify.
|
|
391
455
|
*/
|
|
392
456
|
collectorVersion?: String;
|
|
457
|
+
/**
|
|
458
|
+
* Summary of the collector configuration.
|
|
459
|
+
*/
|
|
460
|
+
configurationSummary?: ConfigurationSummary;
|
|
393
461
|
/**
|
|
394
462
|
* Hostname of the server that is hosting the collector.
|
|
395
463
|
*/
|
|
@@ -409,6 +477,29 @@ declare namespace MigrationHubStrategy {
|
|
|
409
477
|
}
|
|
410
478
|
export type CollectorHealth = "COLLECTOR_HEALTHY"|"COLLECTOR_UNHEALTHY"|string;
|
|
411
479
|
export type Collectors = Collector[];
|
|
480
|
+
export type Condition = "EQUALS"|"NOT_EQUALS"|"CONTAINS"|"NOT_CONTAINS"|string;
|
|
481
|
+
export interface ConfigurationSummary {
|
|
482
|
+
/**
|
|
483
|
+
* IP address based configurations.
|
|
484
|
+
*/
|
|
485
|
+
ipAddressBasedRemoteInfoList?: IPAddressBasedRemoteInfoList;
|
|
486
|
+
/**
|
|
487
|
+
* The list of pipeline info configurations.
|
|
488
|
+
*/
|
|
489
|
+
pipelineInfoList?: PipelineInfoList;
|
|
490
|
+
/**
|
|
491
|
+
* Info about the remote server source code configuration.
|
|
492
|
+
*/
|
|
493
|
+
remoteSourceCodeAnalysisServerInfo?: RemoteSourceCodeAnalysisServerInfo;
|
|
494
|
+
/**
|
|
495
|
+
* The list of vCenter configurations.
|
|
496
|
+
*/
|
|
497
|
+
vcenterBasedRemoteInfoList?: VcenterBasedRemoteInfoList;
|
|
498
|
+
/**
|
|
499
|
+
* The list of the version control configurations.
|
|
500
|
+
*/
|
|
501
|
+
versionControlInfoList?: VersionControlInfoList;
|
|
502
|
+
}
|
|
412
503
|
export interface DataCollectionDetails {
|
|
413
504
|
/**
|
|
414
505
|
* The time the assessment completes.
|
|
@@ -434,6 +525,10 @@ declare namespace MigrationHubStrategy {
|
|
|
434
525
|
* The status of the assessment.
|
|
435
526
|
*/
|
|
436
527
|
status?: AssessmentStatus;
|
|
528
|
+
/**
|
|
529
|
+
* The status message of the assessment.
|
|
530
|
+
*/
|
|
531
|
+
statusMessage?: AssessmentStatusMessage;
|
|
437
532
|
/**
|
|
438
533
|
* The number of successful servers in the assessment.
|
|
439
534
|
*/
|
|
@@ -514,6 +609,10 @@ declare namespace MigrationHubStrategy {
|
|
|
514
609
|
id: AsyncTaskId;
|
|
515
610
|
}
|
|
516
611
|
export interface GetAssessmentResponse {
|
|
612
|
+
/**
|
|
613
|
+
* List of criteria for assessment.
|
|
614
|
+
*/
|
|
615
|
+
assessmentTargets?: AssessmentTargets;
|
|
517
616
|
/**
|
|
518
617
|
* Detailed information about the assessment.
|
|
519
618
|
*/
|
|
@@ -575,9 +674,21 @@ declare namespace MigrationHubStrategy {
|
|
|
575
674
|
*/
|
|
576
675
|
statusReportS3Key?: importS3Key;
|
|
577
676
|
}
|
|
677
|
+
export interface GetLatestAssessmentIdRequest {
|
|
678
|
+
}
|
|
679
|
+
export interface GetLatestAssessmentIdResponse {
|
|
680
|
+
/**
|
|
681
|
+
* The latest ID for the specific assessment task.
|
|
682
|
+
*/
|
|
683
|
+
id?: AsyncTaskId;
|
|
684
|
+
}
|
|
578
685
|
export interface GetPortfolioPreferencesRequest {
|
|
579
686
|
}
|
|
580
687
|
export interface GetPortfolioPreferencesResponse {
|
|
688
|
+
/**
|
|
689
|
+
* The classification for application component types.
|
|
690
|
+
*/
|
|
691
|
+
applicationMode?: ApplicationMode;
|
|
581
692
|
/**
|
|
582
693
|
* The transformation preferences for non-database applications.
|
|
583
694
|
*/
|
|
@@ -684,6 +795,21 @@ declare namespace MigrationHubStrategy {
|
|
|
684
795
|
export type HomogeneousTargetDatabaseEngine = "None specified"|string;
|
|
685
796
|
export type HomogeneousTargetDatabaseEngines = HomogeneousTargetDatabaseEngine[];
|
|
686
797
|
export type IPAddress = string;
|
|
798
|
+
export interface IPAddressBasedRemoteInfo {
|
|
799
|
+
/**
|
|
800
|
+
* The type of authorization.
|
|
801
|
+
*/
|
|
802
|
+
authType?: AuthType;
|
|
803
|
+
/**
|
|
804
|
+
* The time stamp of the configuration.
|
|
805
|
+
*/
|
|
806
|
+
ipAddressConfigurationTimeStamp?: String;
|
|
807
|
+
/**
|
|
808
|
+
* The type of the operating system.
|
|
809
|
+
*/
|
|
810
|
+
osType?: OSType;
|
|
811
|
+
}
|
|
812
|
+
export type IPAddressBasedRemoteInfoList = IPAddressBasedRemoteInfo[];
|
|
687
813
|
export interface ImportFileTaskInformation {
|
|
688
814
|
/**
|
|
689
815
|
* The time that the import task completes.
|
|
@@ -735,6 +861,7 @@ declare namespace MigrationHubStrategy {
|
|
|
735
861
|
export type Integer = number;
|
|
736
862
|
export type InterfaceName = string;
|
|
737
863
|
export type ListAntipatternSeveritySummary = AntipatternSeveritySummary[];
|
|
864
|
+
export type ListApplicationComponentStatusSummary = ApplicationComponentStatusSummary[];
|
|
738
865
|
export type ListApplicationComponentSummary = ApplicationComponentSummary[];
|
|
739
866
|
export interface ListApplicationComponentsRequest {
|
|
740
867
|
/**
|
|
@@ -814,6 +941,7 @@ declare namespace MigrationHubStrategy {
|
|
|
814
941
|
*/
|
|
815
942
|
taskInfos?: ListImportFileTaskInformation;
|
|
816
943
|
}
|
|
944
|
+
export type ListServerStatusSummary = ServerStatusSummary[];
|
|
817
945
|
export type ListServerSummary = ServerSummary[];
|
|
818
946
|
export interface ListServersRequest {
|
|
819
947
|
/**
|
|
@@ -917,13 +1045,30 @@ declare namespace MigrationHubStrategy {
|
|
|
917
1045
|
export type OSType = "LINUX"|"WINDOWS"|string;
|
|
918
1046
|
export type OSVersion = string;
|
|
919
1047
|
export type OutputFormat = "Excel"|"Json"|string;
|
|
1048
|
+
export interface PipelineInfo {
|
|
1049
|
+
/**
|
|
1050
|
+
* The time when the pipeline info was configured.
|
|
1051
|
+
*/
|
|
1052
|
+
pipelineConfigurationTimeStamp?: String;
|
|
1053
|
+
/**
|
|
1054
|
+
* The type of pipeline.
|
|
1055
|
+
*/
|
|
1056
|
+
pipelineType?: PipelineType;
|
|
1057
|
+
}
|
|
1058
|
+
export type PipelineInfoList = PipelineInfo[];
|
|
1059
|
+
export type PipelineType = "AZURE_DEVOPS"|string;
|
|
920
1060
|
export interface PrioritizeBusinessGoals {
|
|
921
1061
|
/**
|
|
922
1062
|
* Rank of business goals based on priority.
|
|
923
1063
|
*/
|
|
924
1064
|
businessGoals?: BusinessGoals;
|
|
925
1065
|
}
|
|
1066
|
+
export type ProjectName = string;
|
|
926
1067
|
export interface PutPortfolioPreferencesRequest {
|
|
1068
|
+
/**
|
|
1069
|
+
* The classification for application component types.
|
|
1070
|
+
*/
|
|
1071
|
+
applicationMode?: ApplicationMode;
|
|
927
1072
|
/**
|
|
928
1073
|
* The transformation preferences for non-database applications.
|
|
929
1074
|
*/
|
|
@@ -983,10 +1128,17 @@ declare namespace MigrationHubStrategy {
|
|
|
983
1128
|
transformationTool?: TransformationTool;
|
|
984
1129
|
}
|
|
985
1130
|
export type RecommendationTaskId = string;
|
|
1131
|
+
export interface RemoteSourceCodeAnalysisServerInfo {
|
|
1132
|
+
/**
|
|
1133
|
+
* The time when the remote source code server was configured.
|
|
1134
|
+
*/
|
|
1135
|
+
remoteSourceCodeAnalysisServerConfigurationTimestamp?: String;
|
|
1136
|
+
}
|
|
986
1137
|
export type ResourceId = string;
|
|
987
1138
|
export type ResourceName = string;
|
|
988
1139
|
export type ResourceSubType = "Database"|"Process"|"DatabaseProcess"|string;
|
|
989
1140
|
export type RunTimeAssessmentStatus = "dataCollectionTaskToBeScheduled"|"dataCollectionTaskScheduled"|"dataCollectionTaskStarted"|"dataCollectionTaskStopped"|"dataCollectionTaskSuccess"|"dataCollectionTaskFailed"|"dataCollectionTaskPartialSuccess"|string;
|
|
1141
|
+
export type RuntimeAnalysisStatus = "ANALYSIS_TO_BE_SCHEDULED"|"ANALYSIS_STARTED"|"ANALYSIS_SUCCESS"|"ANALYSIS_FAILED"|string;
|
|
990
1142
|
export type S3Bucket = string;
|
|
991
1143
|
export type S3Key = string;
|
|
992
1144
|
export type S3Keys = String[];
|
|
@@ -1009,7 +1161,7 @@ declare namespace MigrationHubStrategy {
|
|
|
1009
1161
|
}
|
|
1010
1162
|
export type SelfManageTargetDestination = "None specified"|"Amazon Elastic Cloud Compute (EC2)"|"Amazon Elastic Container Service (ECS)"|"Amazon Elastic Kubernetes Service (EKS)"|string;
|
|
1011
1163
|
export type SelfManageTargetDestinations = SelfManageTargetDestination[];
|
|
1012
|
-
export type ServerCriteria = "NOT_DEFINED"|"OS_NAME"|"STRATEGY"|"DESTINATION"|"SERVER_ID"|string;
|
|
1164
|
+
export type ServerCriteria = "NOT_DEFINED"|"OS_NAME"|"STRATEGY"|"DESTINATION"|"SERVER_ID"|"ANALYSIS_STATUS"|"ERROR_CATEGORY"|string;
|
|
1013
1165
|
export interface ServerDetail {
|
|
1014
1166
|
/**
|
|
1015
1167
|
* The S3 bucket name and Amazon S3 key name for anti-pattern report.
|
|
@@ -1051,6 +1203,10 @@ declare namespace MigrationHubStrategy {
|
|
|
1051
1203
|
* A set of recommendations.
|
|
1052
1204
|
*/
|
|
1053
1205
|
recommendationSet?: RecommendationSet;
|
|
1206
|
+
/**
|
|
1207
|
+
* The error in server analysis.
|
|
1208
|
+
*/
|
|
1209
|
+
serverError?: ServerError;
|
|
1054
1210
|
/**
|
|
1055
1211
|
* The type of server.
|
|
1056
1212
|
*/
|
|
@@ -1065,8 +1221,25 @@ declare namespace MigrationHubStrategy {
|
|
|
1065
1221
|
systemInfo?: SystemInfo;
|
|
1066
1222
|
}
|
|
1067
1223
|
export type ServerDetails = ServerDetail[];
|
|
1224
|
+
export interface ServerError {
|
|
1225
|
+
/**
|
|
1226
|
+
* The error category of server analysis.
|
|
1227
|
+
*/
|
|
1228
|
+
serverErrorCategory?: ServerErrorCategory;
|
|
1229
|
+
}
|
|
1230
|
+
export type ServerErrorCategory = "CONNECTIVITY_ERROR"|"CREDENTIAL_ERROR"|"PERMISSION_ERROR"|"ARCHITECTURE_ERROR"|"OTHER_ERROR"|string;
|
|
1068
1231
|
export type ServerId = string;
|
|
1069
1232
|
export type ServerOsType = "WindowsServer"|"AmazonLinux"|"EndOfSupportWindowsServer"|"Redhat"|"Other"|string;
|
|
1233
|
+
export interface ServerStatusSummary {
|
|
1234
|
+
/**
|
|
1235
|
+
* The number of servers successfully analyzed, partially successful or failed analysis.
|
|
1236
|
+
*/
|
|
1237
|
+
count?: Integer;
|
|
1238
|
+
/**
|
|
1239
|
+
* The status of the run time.
|
|
1240
|
+
*/
|
|
1241
|
+
runTimeAssessmentStatus?: RunTimeAssessmentStatus;
|
|
1242
|
+
}
|
|
1070
1243
|
export type ServerStrategies = ServerStrategy[];
|
|
1071
1244
|
export interface ServerStrategy {
|
|
1072
1245
|
/**
|
|
@@ -1103,6 +1276,10 @@ declare namespace MigrationHubStrategy {
|
|
|
1103
1276
|
* The repository name for the source code.
|
|
1104
1277
|
*/
|
|
1105
1278
|
location?: Location;
|
|
1279
|
+
/**
|
|
1280
|
+
* The name of the project.
|
|
1281
|
+
*/
|
|
1282
|
+
projectName?: ProjectName;
|
|
1106
1283
|
/**
|
|
1107
1284
|
* The branch of the source code.
|
|
1108
1285
|
*/
|
|
@@ -1119,6 +1296,10 @@ declare namespace MigrationHubStrategy {
|
|
|
1119
1296
|
* The branch of the source code.
|
|
1120
1297
|
*/
|
|
1121
1298
|
branch?: String;
|
|
1299
|
+
/**
|
|
1300
|
+
* The name of the project.
|
|
1301
|
+
*/
|
|
1302
|
+
projectName?: String;
|
|
1122
1303
|
/**
|
|
1123
1304
|
* The repository name for the source code.
|
|
1124
1305
|
*/
|
|
@@ -1129,8 +1310,12 @@ declare namespace MigrationHubStrategy {
|
|
|
1129
1310
|
versionControlType?: String;
|
|
1130
1311
|
}
|
|
1131
1312
|
export type SourceVersion = string;
|
|
1132
|
-
export type SrcCodeOrDbAnalysisStatus = "ANALYSIS_TO_BE_SCHEDULED"|"ANALYSIS_STARTED"|"ANALYSIS_SUCCESS"|"ANALYSIS_FAILED"|string;
|
|
1313
|
+
export type SrcCodeOrDbAnalysisStatus = "ANALYSIS_TO_BE_SCHEDULED"|"ANALYSIS_STARTED"|"ANALYSIS_SUCCESS"|"ANALYSIS_FAILED"|"ANALYSIS_PARTIAL_SUCCESS"|"UNCONFIGURED"|"CONFIGURED"|string;
|
|
1133
1314
|
export interface StartAssessmentRequest {
|
|
1315
|
+
/**
|
|
1316
|
+
* List of criteria for assessment.
|
|
1317
|
+
*/
|
|
1318
|
+
assessmentTargets?: AssessmentTargets;
|
|
1134
1319
|
/**
|
|
1135
1320
|
* The S3 bucket used by the collectors to send analysis data to the service. The bucket name must begin with migrationhub-strategy-.
|
|
1136
1321
|
*/
|
|
@@ -1226,7 +1411,7 @@ declare namespace MigrationHubStrategy {
|
|
|
1226
1411
|
*/
|
|
1227
1412
|
toolName?: TransformationToolName;
|
|
1228
1413
|
}
|
|
1229
|
-
export type StrategyRecommendation = "recommended"|"viableOption"|"notRecommended"|string;
|
|
1414
|
+
export type StrategyRecommendation = "recommended"|"viableOption"|"notRecommended"|"potential"|string;
|
|
1230
1415
|
export interface StrategySummary {
|
|
1231
1416
|
/**
|
|
1232
1417
|
* The count of recommendations per strategy.
|
|
@@ -1258,7 +1443,7 @@ declare namespace MigrationHubStrategy {
|
|
|
1258
1443
|
}
|
|
1259
1444
|
export type TargetDatabaseEngine = "None specified"|"Amazon Aurora"|"AWS PostgreSQL"|"MySQL"|"Microsoft SQL Server"|"Oracle Database"|"MariaDB"|"SAP"|"Db2 LUW"|"MongoDB"|string;
|
|
1260
1445
|
export type TargetDatabaseEngines = TargetDatabaseEngine[];
|
|
1261
|
-
export type TargetDestination = "None specified"|"AWS Elastic BeanStalk"|"AWS Fargate"|"Amazon Elastic Cloud Compute (EC2)"|"Amazon Elastic Container Service (ECS)"|"Amazon Elastic Kubernetes Service (EKS)"|"Aurora MySQL"|"Aurora PostgreSQL"|"Amazon Relational Database Service on MySQL"|"Amazon Relational Database Service on PostgreSQL"|"Amazon DocumentDB"|"Amazon DynamoDB"|"Amazon Relational Database Service"|string;
|
|
1446
|
+
export type TargetDestination = "None specified"|"AWS Elastic BeanStalk"|"AWS Fargate"|"Amazon Elastic Cloud Compute (EC2)"|"Amazon Elastic Container Service (ECS)"|"Amazon Elastic Kubernetes Service (EKS)"|"Aurora MySQL"|"Aurora PostgreSQL"|"Amazon Relational Database Service on MySQL"|"Amazon Relational Database Service on PostgreSQL"|"Amazon DocumentDB"|"Amazon DynamoDB"|"Amazon Relational Database Service"|"Babelfish for Aurora PostgreSQL"|string;
|
|
1262
1447
|
export type TimeStamp = Date;
|
|
1263
1448
|
export type TranformationToolDescription = string;
|
|
1264
1449
|
export type TranformationToolInstallationLink = string;
|
|
@@ -1278,10 +1463,18 @@ declare namespace MigrationHubStrategy {
|
|
|
1278
1463
|
}
|
|
1279
1464
|
export type TransformationToolName = "App2Container"|"Porting Assistant For .NET"|"End of Support Migration"|"Windows Web Application Migration Assistant"|"Application Migration Service"|"Strategy Recommendation Support"|"In Place Operating System Upgrade"|"Schema Conversion Tool"|"Database Migration Service"|"Native SQL Server Backup/Restore"|string;
|
|
1280
1465
|
export interface UpdateApplicationComponentConfigRequest {
|
|
1466
|
+
/**
|
|
1467
|
+
* The type of known component.
|
|
1468
|
+
*/
|
|
1469
|
+
appType?: AppType;
|
|
1281
1470
|
/**
|
|
1282
1471
|
* The ID of the application component. The ID is unique within an AWS account.
|
|
1283
1472
|
*/
|
|
1284
1473
|
applicationComponentId: ApplicationComponentId;
|
|
1474
|
+
/**
|
|
1475
|
+
* Update the configuration request of an application component. If it is set to true, the source code and/or database credentials are updated. If it is set to false, the source code and/or database credentials are updated and an analysis is initiated.
|
|
1476
|
+
*/
|
|
1477
|
+
configureOnly?: Boolean;
|
|
1285
1478
|
/**
|
|
1286
1479
|
* Indicates whether the application component has been included for server recommendation or not.
|
|
1287
1480
|
*/
|
|
@@ -1313,7 +1506,30 @@ declare namespace MigrationHubStrategy {
|
|
|
1313
1506
|
}
|
|
1314
1507
|
export interface UpdateServerConfigResponse {
|
|
1315
1508
|
}
|
|
1316
|
-
export
|
|
1509
|
+
export interface VcenterBasedRemoteInfo {
|
|
1510
|
+
/**
|
|
1511
|
+
* The type of the operating system.
|
|
1512
|
+
*/
|
|
1513
|
+
osType?: OSType;
|
|
1514
|
+
/**
|
|
1515
|
+
* The time when the remote server based on vCenter was last configured.
|
|
1516
|
+
*/
|
|
1517
|
+
vcenterConfigurationTimeStamp?: String;
|
|
1518
|
+
}
|
|
1519
|
+
export type VcenterBasedRemoteInfoList = VcenterBasedRemoteInfo[];
|
|
1520
|
+
export type VersionControl = "GITHUB"|"GITHUB_ENTERPRISE"|"AZURE_DEVOPS_GIT"|string;
|
|
1521
|
+
export interface VersionControlInfo {
|
|
1522
|
+
/**
|
|
1523
|
+
* The time when the version control system was last configured.
|
|
1524
|
+
*/
|
|
1525
|
+
versionControlConfigurationTimeStamp?: String;
|
|
1526
|
+
/**
|
|
1527
|
+
* The type of version control.
|
|
1528
|
+
*/
|
|
1529
|
+
versionControlType?: VersionControlType;
|
|
1530
|
+
}
|
|
1531
|
+
export type VersionControlInfoList = VersionControlInfo[];
|
|
1532
|
+
export type VersionControlType = "GITHUB"|"GITHUB_ENTERPRISE"|"AZURE_DEVOPS_GIT"|string;
|
|
1317
1533
|
export type importS3Bucket = string;
|
|
1318
1534
|
export type importS3Key = string;
|
|
1319
1535
|
/**
|