@aws-sdk/client-migrationhubstrategy 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +254 -254
- package/dist-types/ts3.4/models/models_0.d.ts +258 -254
- package/package.json +7 -7
|
@@ -109,22 +109,22 @@ export interface AnalyzableServerSummary {
|
|
|
109
109
|
* The host name of the analyzable server.
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
hostname?: string;
|
|
112
|
+
hostname?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* The ip address of the analyzable server.
|
|
115
115
|
* @public
|
|
116
116
|
*/
|
|
117
|
-
ipAddress?: string;
|
|
117
|
+
ipAddress?: string | undefined;
|
|
118
118
|
/**
|
|
119
119
|
* The data source of the analyzable server.
|
|
120
120
|
* @public
|
|
121
121
|
*/
|
|
122
|
-
source?: string;
|
|
122
|
+
source?: string | undefined;
|
|
123
123
|
/**
|
|
124
124
|
* The virtual machine id of the analyzable server.
|
|
125
125
|
* @public
|
|
126
126
|
*/
|
|
127
|
-
vmId?: string;
|
|
127
|
+
vmId?: string | undefined;
|
|
128
128
|
}
|
|
129
129
|
/**
|
|
130
130
|
* @public
|
|
@@ -232,12 +232,12 @@ export interface S3Object {
|
|
|
232
232
|
* <p> The S3 bucket name. </p>
|
|
233
233
|
* @public
|
|
234
234
|
*/
|
|
235
|
-
s3Bucket?: string;
|
|
235
|
+
s3Bucket?: string | undefined;
|
|
236
236
|
/**
|
|
237
237
|
* <p> The Amazon S3 key name. </p>
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
s3key?: string;
|
|
240
|
+
s3key?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* @public
|
|
@@ -261,22 +261,22 @@ export interface AntipatternReportResult {
|
|
|
261
261
|
* <p>The analyzer name.</p>
|
|
262
262
|
* @public
|
|
263
263
|
*/
|
|
264
|
-
analyzerName?: AnalyzerNameUnion;
|
|
264
|
+
analyzerName?: AnalyzerNameUnion | undefined;
|
|
265
265
|
/**
|
|
266
266
|
* <p> Contains the S3 bucket name and the Amazon S3 key name. </p>
|
|
267
267
|
* @public
|
|
268
268
|
*/
|
|
269
|
-
antiPatternReportS3Object?: S3Object;
|
|
269
|
+
antiPatternReportS3Object?: S3Object | undefined;
|
|
270
270
|
/**
|
|
271
271
|
* <p>The status of the anti-pattern report generation.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
antipatternReportStatus?: AntipatternReportStatus;
|
|
274
|
+
antipatternReportStatus?: AntipatternReportStatus | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>The status message for the anti-pattern.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
antipatternReportStatusMessage?: string;
|
|
279
|
+
antipatternReportStatusMessage?: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
/**
|
|
282
282
|
* @public
|
|
@@ -300,12 +300,12 @@ export interface AntipatternSeveritySummary {
|
|
|
300
300
|
* <p> Contains the severity of anti-patterns. </p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
severity?: Severity;
|
|
303
|
+
severity?: Severity | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p> Contains the count of anti-patterns. </p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
count?: number;
|
|
308
|
+
count?: number | undefined;
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* @public
|
|
@@ -381,7 +381,7 @@ export interface AppUnitError {
|
|
|
381
381
|
* <p>The category of the error.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
appUnitErrorCategory?: AppUnitErrorCategory;
|
|
384
|
+
appUnitErrorCategory?: AppUnitErrorCategory | undefined;
|
|
385
385
|
}
|
|
386
386
|
/**
|
|
387
387
|
* <p> Configuration information used for assessing databases. </p>
|
|
@@ -393,7 +393,7 @@ export interface DatabaseConfigDetail {
|
|
|
393
393
|
* </p>
|
|
394
394
|
* @public
|
|
395
395
|
*/
|
|
396
|
-
secretName?: string;
|
|
396
|
+
secretName?: string | undefined;
|
|
397
397
|
}
|
|
398
398
|
/**
|
|
399
399
|
* @public
|
|
@@ -478,17 +478,17 @@ export interface TransformationTool {
|
|
|
478
478
|
* <p> Name of the tool. </p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
name?: TransformationToolName;
|
|
481
|
+
name?: TransformationToolName | undefined;
|
|
482
482
|
/**
|
|
483
483
|
* <p> Description of the tool. </p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
description?: string;
|
|
486
|
+
description?: string | undefined;
|
|
487
487
|
/**
|
|
488
488
|
* <p> URL for installing the tool. </p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
tranformationToolInstallationLink?: string;
|
|
491
|
+
tranformationToolInstallationLink?: string | undefined;
|
|
492
492
|
}
|
|
493
493
|
/**
|
|
494
494
|
* <p> Contains a recommendation set. </p>
|
|
@@ -499,17 +499,17 @@ export interface RecommendationSet {
|
|
|
499
499
|
* <p> The target destination for the recommendation set. </p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
transformationTool?: TransformationTool;
|
|
502
|
+
transformationTool?: TransformationTool | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p> The recommended target destination. </p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
targetDestination?: TargetDestination;
|
|
507
|
+
targetDestination?: TargetDestination | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p> The recommended strategy. </p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
strategy?: Strategy;
|
|
512
|
+
strategy?: Strategy | undefined;
|
|
513
513
|
}
|
|
514
514
|
/**
|
|
515
515
|
* @public
|
|
@@ -533,22 +533,22 @@ export interface Result {
|
|
|
533
533
|
* <p>The error in server analysis.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
analysisType?: AnalysisType;
|
|
536
|
+
analysisType?: AnalysisType | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* <p>The error in server analysis.</p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
analysisStatus?: AnalysisStatusUnion;
|
|
541
|
+
analysisStatus?: AnalysisStatusUnion | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* <p>The error in server analysis.</p>
|
|
544
544
|
* @public
|
|
545
545
|
*/
|
|
546
|
-
statusMessage?: string;
|
|
546
|
+
statusMessage?: string | undefined;
|
|
547
547
|
/**
|
|
548
548
|
* <p>The error in server analysis.</p>
|
|
549
549
|
* @public
|
|
550
550
|
*/
|
|
551
|
-
antipatternReportResultList?: AntipatternReportResult[];
|
|
551
|
+
antipatternReportResultList?: AntipatternReportResult[] | undefined;
|
|
552
552
|
}
|
|
553
553
|
/**
|
|
554
554
|
* <p> Object containing source code information that is linked to an application component.
|
|
@@ -560,22 +560,22 @@ export interface SourceCodeRepository {
|
|
|
560
560
|
* <p> The repository name for the source code. </p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
repository?: string;
|
|
563
|
+
repository?: string | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* <p> The branch of the source code. </p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
branch?: string;
|
|
568
|
+
branch?: string | undefined;
|
|
569
569
|
/**
|
|
570
570
|
* <p> The type of repository to use for the source code. </p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
versionControlType?: string;
|
|
573
|
+
versionControlType?: string | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p>The name of the project.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
projectName?: string;
|
|
578
|
+
projectName?: string | undefined;
|
|
579
579
|
}
|
|
580
580
|
/**
|
|
581
581
|
* <p> Contains detailed information about an application component. </p>
|
|
@@ -586,120 +586,120 @@ export interface ApplicationComponentDetail {
|
|
|
586
586
|
* <p> The ID of the application component. </p>
|
|
587
587
|
* @public
|
|
588
588
|
*/
|
|
589
|
-
id?: string;
|
|
589
|
+
id?: string | undefined;
|
|
590
590
|
/**
|
|
591
591
|
* <p> The name of application component. </p>
|
|
592
592
|
* @public
|
|
593
593
|
*/
|
|
594
|
-
name?: string;
|
|
594
|
+
name?: string | undefined;
|
|
595
595
|
/**
|
|
596
596
|
* <p> The top recommendation set for the application component. </p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
recommendationSet?: RecommendationSet;
|
|
599
|
+
recommendationSet?: RecommendationSet | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* <p> The status of analysis, if the application component has source code or an associated
|
|
602
602
|
* database. </p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
analysisStatus?: SrcCodeOrDbAnalysisStatus;
|
|
605
|
+
analysisStatus?: SrcCodeOrDbAnalysisStatus | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p> A detailed description of the analysis status and any failure message. </p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
statusMessage?: string;
|
|
610
|
+
statusMessage?: string | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p> A list of anti-pattern severity summaries. </p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
listAntipatternSeveritySummary?: AntipatternSeveritySummary[];
|
|
615
|
+
listAntipatternSeveritySummary?: AntipatternSeveritySummary[] | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* <p> Configuration details for the database associated with the application component. </p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
databaseConfigDetail?: DatabaseConfigDetail;
|
|
620
|
+
databaseConfigDetail?: DatabaseConfigDetail | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p> Details about the source code repository associated with the application component.
|
|
623
623
|
* </p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
sourceCodeRepositories?: SourceCodeRepository[];
|
|
626
|
+
sourceCodeRepositories?: SourceCodeRepository[] | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p> The type of application component. </p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
appType?: AppType;
|
|
631
|
+
appType?: AppType | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* <p> The application component subtype.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
resourceSubType?: ResourceSubType;
|
|
636
|
+
resourceSubType?: ResourceSubType | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p> Indicates whether the application component has been included for server recommendation
|
|
639
639
|
* or not. </p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
inclusionStatus?: InclusionStatus;
|
|
642
|
+
inclusionStatus?: InclusionStatus | undefined;
|
|
643
643
|
/**
|
|
644
644
|
* <p> The S3 bucket name and the Amazon S3 key name for the anti-pattern report. </p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
antipatternReportS3Object?: S3Object;
|
|
647
|
+
antipatternReportS3Object?: S3Object | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* <p> The status of the anti-pattern report generation.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
antipatternReportStatus?: AntipatternReportStatus;
|
|
652
|
+
antipatternReportStatus?: AntipatternReportStatus | undefined;
|
|
653
653
|
/**
|
|
654
654
|
* <p> The status message for the anti-pattern. </p>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
antipatternReportStatusMessage?: string;
|
|
657
|
+
antipatternReportStatusMessage?: string | undefined;
|
|
658
658
|
/**
|
|
659
659
|
* <p> OS version. </p>
|
|
660
660
|
* @public
|
|
661
661
|
*/
|
|
662
|
-
osVersion?: string;
|
|
662
|
+
osVersion?: string | undefined;
|
|
663
663
|
/**
|
|
664
664
|
* <p> OS driver. </p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
osDriver?: string;
|
|
667
|
+
osDriver?: string | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p> The timestamp of when the application component was assessed. </p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
lastAnalyzedTimestamp?: Date;
|
|
672
|
+
lastAnalyzedTimestamp?: Date | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p> The ID of the server that the application component is running on. </p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
associatedServerId?: string;
|
|
677
|
+
associatedServerId?: string | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p> Set to true if the application component is running on multiple servers.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
moreServerAssociationExists?: boolean;
|
|
682
|
+
moreServerAssociationExists?: boolean | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>The status of the application unit.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
runtimeStatus?: RuntimeAnalysisStatus;
|
|
687
|
+
runtimeStatus?: RuntimeAnalysisStatus | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>The status message for the application unit.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
runtimeStatusMessage?: string;
|
|
692
|
+
runtimeStatusMessage?: string | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The error in the analysis of the source code or database.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
appUnitError?: AppUnitError;
|
|
697
|
+
appUnitError?: AppUnitError | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>A list of the analysis results.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
resultList?: Result[];
|
|
702
|
+
resultList?: Result[] | undefined;
|
|
703
703
|
}
|
|
704
704
|
/**
|
|
705
705
|
* <p>Summary of the analysis status of the application component.</p>
|
|
@@ -710,13 +710,13 @@ export interface ApplicationComponentStatusSummary {
|
|
|
710
710
|
* <p>The status of database analysis.</p>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus;
|
|
713
|
+
srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus | undefined;
|
|
714
714
|
/**
|
|
715
715
|
* <p>The number of application components successfully analyzed, partially successful or failed
|
|
716
716
|
* analysis.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
count?: number;
|
|
719
|
+
count?: number | undefined;
|
|
720
720
|
}
|
|
721
721
|
/**
|
|
722
722
|
* @public
|
|
@@ -742,17 +742,17 @@ export interface ApplicationComponentStrategy {
|
|
|
742
742
|
* <p> Strategy recommendation for the application component. </p>
|
|
743
743
|
* @public
|
|
744
744
|
*/
|
|
745
|
-
recommendation?: RecommendationSet;
|
|
745
|
+
recommendation?: RecommendationSet | undefined;
|
|
746
746
|
/**
|
|
747
747
|
* <p> The recommendation status of a strategy for an application component. </p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
status?: StrategyRecommendation;
|
|
750
|
+
status?: StrategyRecommendation | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* <p> Set to true if the recommendation is set as preferred. </p>
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
|
-
isPreferred?: boolean;
|
|
755
|
+
isPreferred?: boolean | undefined;
|
|
756
756
|
}
|
|
757
757
|
/**
|
|
758
758
|
* <p> Contains the summary of application components. </p>
|
|
@@ -763,12 +763,12 @@ export interface ApplicationComponentSummary {
|
|
|
763
763
|
* <p> Contains the name of application types. </p>
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
appType?: AppType;
|
|
766
|
+
appType?: AppType | undefined;
|
|
767
767
|
/**
|
|
768
768
|
* <p> Contains the count of application type. </p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
count?: number;
|
|
771
|
+
count?: number | undefined;
|
|
772
772
|
}
|
|
773
773
|
/**
|
|
774
774
|
* @public
|
|
@@ -924,7 +924,7 @@ export interface ApplicationPreferences {
|
|
|
924
924
|
* <p> Application preferences that you specify to prefer managed environment. </p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
managementPreference?: ManagementPreference;
|
|
927
|
+
managementPreference?: ManagementPreference | undefined;
|
|
928
928
|
}
|
|
929
929
|
/**
|
|
930
930
|
* @public
|
|
@@ -962,12 +962,12 @@ export interface StrategySummary {
|
|
|
962
962
|
* <p> The name of recommended strategy. </p>
|
|
963
963
|
* @public
|
|
964
964
|
*/
|
|
965
|
-
strategy?: Strategy;
|
|
965
|
+
strategy?: Strategy | undefined;
|
|
966
966
|
/**
|
|
967
967
|
* <p> The count of recommendations per strategy. </p>
|
|
968
968
|
* @public
|
|
969
969
|
*/
|
|
970
|
-
count?: number;
|
|
970
|
+
count?: number | undefined;
|
|
971
971
|
}
|
|
972
972
|
/**
|
|
973
973
|
* @public
|
|
@@ -995,13 +995,13 @@ export interface ServerStatusSummary {
|
|
|
995
995
|
* <p>The status of the run time.</p>
|
|
996
996
|
* @public
|
|
997
997
|
*/
|
|
998
|
-
runTimeAssessmentStatus?: RunTimeAssessmentStatus;
|
|
998
|
+
runTimeAssessmentStatus?: RunTimeAssessmentStatus | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* <p>The number of servers successfully analyzed, partially successful or failed
|
|
1001
1001
|
* analysis.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
count?: number;
|
|
1004
|
+
count?: number | undefined;
|
|
1005
1005
|
}
|
|
1006
1006
|
/**
|
|
1007
1007
|
* @public
|
|
@@ -1027,12 +1027,12 @@ export interface ServerSummary {
|
|
|
1027
1027
|
* <p> Type of operating system for the servers. </p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
ServerOsType?: ServerOsType;
|
|
1030
|
+
ServerOsType?: ServerOsType | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p> Number of servers. </p>
|
|
1033
1033
|
* @public
|
|
1034
1034
|
*/
|
|
1035
|
-
count?: number;
|
|
1035
|
+
count?: number | undefined;
|
|
1036
1036
|
}
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p> Contains the summary of the assessment results. </p>
|
|
@@ -1043,57 +1043,57 @@ export interface AssessmentSummary {
|
|
|
1043
1043
|
* <p> List of ServerStrategySummary. </p>
|
|
1044
1044
|
* @public
|
|
1045
1045
|
*/
|
|
1046
|
-
listServerStrategySummary?: StrategySummary[];
|
|
1046
|
+
listServerStrategySummary?: StrategySummary[] | undefined;
|
|
1047
1047
|
/**
|
|
1048
1048
|
* <p> List of ApplicationComponentStrategySummary. </p>
|
|
1049
1049
|
* @public
|
|
1050
1050
|
*/
|
|
1051
|
-
listApplicationComponentStrategySummary?: StrategySummary[];
|
|
1051
|
+
listApplicationComponentStrategySummary?: StrategySummary[] | undefined;
|
|
1052
1052
|
/**
|
|
1053
1053
|
* <p> List of AntipatternSeveritySummary. </p>
|
|
1054
1054
|
* @public
|
|
1055
1055
|
*/
|
|
1056
|
-
listAntipatternSeveritySummary?: AntipatternSeveritySummary[];
|
|
1056
|
+
listAntipatternSeveritySummary?: AntipatternSeveritySummary[] | undefined;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* <p> List of ApplicationComponentSummary. </p>
|
|
1059
1059
|
* @public
|
|
1060
1060
|
*/
|
|
1061
|
-
listApplicationComponentSummary?: ApplicationComponentSummary[];
|
|
1061
|
+
listApplicationComponentSummary?: ApplicationComponentSummary[] | undefined;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* <p> List of ServerSummary. </p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
listServerSummary?: ServerSummary[];
|
|
1066
|
+
listServerSummary?: ServerSummary[] | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p> The Amazon S3 object containing the anti-pattern report. </p>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
antipatternReportS3Object?: S3Object;
|
|
1071
|
+
antipatternReportS3Object?: S3Object | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p> The status of the anti-pattern report. </p>
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
antipatternReportStatus?: AntipatternReportStatus;
|
|
1076
|
+
antipatternReportStatus?: AntipatternReportStatus | undefined;
|
|
1077
1077
|
/**
|
|
1078
1078
|
* <p> The status message of the anti-pattern report. </p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
antipatternReportStatusMessage?: string;
|
|
1081
|
+
antipatternReportStatusMessage?: string | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p> The time the assessment was performed. </p>
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
lastAnalyzedTimestamp?: Date;
|
|
1086
|
+
lastAnalyzedTimestamp?: Date | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* <p>List of status summaries of the analyzed application components.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
listApplicationComponentStatusSummary?: ApplicationComponentStatusSummary[];
|
|
1091
|
+
listApplicationComponentStatusSummary?: ApplicationComponentStatusSummary[] | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* <p>List of status summaries of the analyzed servers.</p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
listServerStatusSummary?: ServerStatusSummary[];
|
|
1096
|
+
listServerStatusSummary?: ServerStatusSummary[] | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
/**
|
|
1099
1099
|
* @public
|
|
@@ -1139,12 +1139,12 @@ export interface AssociatedApplication {
|
|
|
1139
1139
|
* <p> Name of the application as defined in Application Discovery Service. </p>
|
|
1140
1140
|
* @public
|
|
1141
1141
|
*/
|
|
1142
|
-
name?: string;
|
|
1142
|
+
name?: string | undefined;
|
|
1143
1143
|
/**
|
|
1144
1144
|
* <p> ID of the application as defined in Application Discovery Service. </p>
|
|
1145
1145
|
* @public
|
|
1146
1146
|
*/
|
|
1147
|
-
id?: string;
|
|
1147
|
+
id?: string | undefined;
|
|
1148
1148
|
}
|
|
1149
1149
|
/**
|
|
1150
1150
|
* @public
|
|
@@ -1177,23 +1177,23 @@ export interface GetApplicationComponentDetailsResponse {
|
|
|
1177
1177
|
* <p> Detailed information about an application component. </p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
applicationComponentDetail?: ApplicationComponentDetail;
|
|
1180
|
+
applicationComponentDetail?: ApplicationComponentDetail | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p> The associated application group as defined in AWS Application Discovery Service. </p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
associatedApplications?: AssociatedApplication[];
|
|
1185
|
+
associatedApplications?: AssociatedApplication[] | undefined;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* <p> Set to true if the application component belongs to more than one application group.
|
|
1188
1188
|
* </p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
moreApplicationResource?: boolean;
|
|
1191
|
+
moreApplicationResource?: boolean | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p> A list of the IDs of the servers on which the application component is running. </p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
associatedServerIds?: string[];
|
|
1196
|
+
associatedServerIds?: string[] | undefined;
|
|
1197
1197
|
}
|
|
1198
1198
|
/**
|
|
1199
1199
|
* <p> The server experienced an internal error. Try again. </p>
|
|
@@ -1249,7 +1249,7 @@ export interface GetApplicationComponentStrategiesResponse {
|
|
|
1249
1249
|
* <p> A list of application component strategy recommendations. </p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
applicationComponentStrategies?: ApplicationComponentStrategy[];
|
|
1252
|
+
applicationComponentStrategies?: ApplicationComponentStrategy[] | undefined;
|
|
1253
1253
|
}
|
|
1254
1254
|
/**
|
|
1255
1255
|
* @public
|
|
@@ -1270,42 +1270,42 @@ export interface DataCollectionDetails {
|
|
|
1270
1270
|
* <p> The status of the assessment. </p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
status?: AssessmentStatus;
|
|
1273
|
+
status?: AssessmentStatus | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p> The total number of servers in the assessment. </p>
|
|
1276
1276
|
* @public
|
|
1277
1277
|
*/
|
|
1278
|
-
servers?: number;
|
|
1278
|
+
servers?: number | undefined;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* <p> The number of failed servers in the assessment. </p>
|
|
1281
1281
|
* @public
|
|
1282
1282
|
*/
|
|
1283
|
-
failed?: number;
|
|
1283
|
+
failed?: number | undefined;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* <p> The number of successful servers in the assessment. </p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
success?: number;
|
|
1288
|
+
success?: number | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p> The number of servers with the assessment status <code>IN_PROGESS</code>. </p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
inProgress?: number;
|
|
1293
|
+
inProgress?: number | undefined;
|
|
1294
1294
|
/**
|
|
1295
1295
|
* <p> The start time of assessment. </p>
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
startTime?: Date;
|
|
1298
|
+
startTime?: Date | undefined;
|
|
1299
1299
|
/**
|
|
1300
1300
|
* <p> The time the assessment completes. </p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
completionTime?: Date;
|
|
1303
|
+
completionTime?: Date | undefined;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* <p>The status message of the assessment.</p>
|
|
1306
1306
|
* @public
|
|
1307
1307
|
*/
|
|
1308
|
-
statusMessage?: string;
|
|
1308
|
+
statusMessage?: string | undefined;
|
|
1309
1309
|
}
|
|
1310
1310
|
/**
|
|
1311
1311
|
* @public
|
|
@@ -1315,17 +1315,17 @@ export interface GetAssessmentResponse {
|
|
|
1315
1315
|
* <p> The ID for the specific assessment task. </p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
id?: string;
|
|
1318
|
+
id?: string | undefined;
|
|
1319
1319
|
/**
|
|
1320
1320
|
* <p> Detailed information about the assessment. </p>
|
|
1321
1321
|
* @public
|
|
1322
1322
|
*/
|
|
1323
|
-
dataCollectionDetails?: DataCollectionDetails;
|
|
1323
|
+
dataCollectionDetails?: DataCollectionDetails | undefined;
|
|
1324
1324
|
/**
|
|
1325
1325
|
* <p>List of criteria for assessment.</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
assessmentTargets?: AssessmentTarget[];
|
|
1328
|
+
assessmentTargets?: AssessmentTarget[] | undefined;
|
|
1329
1329
|
}
|
|
1330
1330
|
/**
|
|
1331
1331
|
* @public
|
|
@@ -1363,58 +1363,58 @@ export interface GetImportFileTaskResponse {
|
|
|
1363
1363
|
* <p> The import file task <code>id</code> returned in the response of <a>StartImportFileTask</a>. </p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
id?: string;
|
|
1366
|
+
id?: string | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p> Status of import file task. </p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
status?: ImportFileTaskStatus;
|
|
1371
|
+
status?: ImportFileTaskStatus | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p> Start time of the import task. </p>
|
|
1374
1374
|
* @public
|
|
1375
1375
|
*/
|
|
1376
|
-
startTime?: Date;
|
|
1376
|
+
startTime?: Date | undefined;
|
|
1377
1377
|
/**
|
|
1378
1378
|
* <p> The S3 bucket where import file is located. </p>
|
|
1379
1379
|
* @public
|
|
1380
1380
|
*/
|
|
1381
|
-
inputS3Bucket?: string;
|
|
1381
|
+
inputS3Bucket?: string | undefined;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* <p> The Amazon S3 key name of the import file. </p>
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
inputS3Key?: string;
|
|
1386
|
+
inputS3Key?: string | undefined;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* <p> The S3 bucket name for status report of import task. </p>
|
|
1389
1389
|
* @public
|
|
1390
1390
|
*/
|
|
1391
|
-
statusReportS3Bucket?: string;
|
|
1391
|
+
statusReportS3Bucket?: string | undefined;
|
|
1392
1392
|
/**
|
|
1393
1393
|
* <p> The Amazon S3 key name for status report of import task. The report contains details about
|
|
1394
1394
|
* whether each record imported successfully or why it did not.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
statusReportS3Key?: string;
|
|
1397
|
+
statusReportS3Key?: string | undefined;
|
|
1398
1398
|
/**
|
|
1399
1399
|
* <p> The time that the import task completed. </p>
|
|
1400
1400
|
* @public
|
|
1401
1401
|
*/
|
|
1402
|
-
completionTime?: Date;
|
|
1402
|
+
completionTime?: Date | undefined;
|
|
1403
1403
|
/**
|
|
1404
1404
|
* <p> The number of records successfully imported. </p>
|
|
1405
1405
|
* @public
|
|
1406
1406
|
*/
|
|
1407
|
-
numberOfRecordsSuccess?: number;
|
|
1407
|
+
numberOfRecordsSuccess?: number | undefined;
|
|
1408
1408
|
/**
|
|
1409
1409
|
* <p> The number of records that failed to be imported. </p>
|
|
1410
1410
|
* @public
|
|
1411
1411
|
*/
|
|
1412
|
-
numberOfRecordsFailed?: number;
|
|
1412
|
+
numberOfRecordsFailed?: number | undefined;
|
|
1413
1413
|
/**
|
|
1414
1414
|
* <p> The name of the import task given in <a>StartImportFileTask</a>. </p>
|
|
1415
1415
|
* @public
|
|
1416
1416
|
*/
|
|
1417
|
-
importName?: string;
|
|
1417
|
+
importName?: string | undefined;
|
|
1418
1418
|
}
|
|
1419
1419
|
/**
|
|
1420
1420
|
* <p> The request body isn't valid. </p>
|
|
@@ -1453,7 +1453,7 @@ export interface GetLatestAssessmentIdResponse {
|
|
|
1453
1453
|
* <p>The latest ID for the specific assessment task.</p>
|
|
1454
1454
|
* @public
|
|
1455
1455
|
*/
|
|
1456
|
-
id?: string;
|
|
1456
|
+
id?: string | undefined;
|
|
1457
1457
|
}
|
|
1458
1458
|
/**
|
|
1459
1459
|
* @public
|
|
@@ -1524,7 +1524,7 @@ export interface Homogeneous {
|
|
|
1524
1524
|
* <p> The target database engine for homogeneous database migration preferences. </p>
|
|
1525
1525
|
* @public
|
|
1526
1526
|
*/
|
|
1527
|
-
targetDatabaseEngine?: HomogeneousTargetDatabaseEngine[];
|
|
1527
|
+
targetDatabaseEngine?: HomogeneousTargetDatabaseEngine[] | undefined;
|
|
1528
1528
|
}
|
|
1529
1529
|
/**
|
|
1530
1530
|
* @public
|
|
@@ -1626,12 +1626,12 @@ export interface DatabasePreferences {
|
|
|
1626
1626
|
* AWS. </p>
|
|
1627
1627
|
* @public
|
|
1628
1628
|
*/
|
|
1629
|
-
databaseManagementPreference?: DatabaseManagementPreference;
|
|
1629
|
+
databaseManagementPreference?: DatabaseManagementPreference | undefined;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* <p> Specifies your preferred migration path. </p>
|
|
1632
1632
|
* @public
|
|
1633
1633
|
*/
|
|
1634
|
-
databaseMigrationPreference?: DatabaseMigrationPreference;
|
|
1634
|
+
databaseMigrationPreference?: DatabaseMigrationPreference | undefined;
|
|
1635
1635
|
}
|
|
1636
1636
|
/**
|
|
1637
1637
|
* <p> Business goals that you specify. </p>
|
|
@@ -1642,23 +1642,23 @@ export interface BusinessGoals {
|
|
|
1642
1642
|
* <p> Business goal to achieve migration at a fast pace. </p>
|
|
1643
1643
|
* @public
|
|
1644
1644
|
*/
|
|
1645
|
-
speedOfMigration?: number;
|
|
1645
|
+
speedOfMigration?: number | undefined;
|
|
1646
1646
|
/**
|
|
1647
1647
|
* <p> Business goal to reduce the operational overhead on the team by moving into managed
|
|
1648
1648
|
* services. </p>
|
|
1649
1649
|
* @public
|
|
1650
1650
|
*/
|
|
1651
|
-
reduceOperationalOverheadWithManagedServices?: number;
|
|
1651
|
+
reduceOperationalOverheadWithManagedServices?: number | undefined;
|
|
1652
1652
|
/**
|
|
1653
1653
|
* <p> Business goal to modernize infrastructure by moving to cloud native technologies. </p>
|
|
1654
1654
|
* @public
|
|
1655
1655
|
*/
|
|
1656
|
-
modernizeInfrastructureWithCloudNativeTechnologies?: number;
|
|
1656
|
+
modernizeInfrastructureWithCloudNativeTechnologies?: number | undefined;
|
|
1657
1657
|
/**
|
|
1658
1658
|
* <p> Business goal to reduce license costs. </p>
|
|
1659
1659
|
* @public
|
|
1660
1660
|
*/
|
|
1661
|
-
licenseCostReduction?: number;
|
|
1661
|
+
licenseCostReduction?: number | undefined;
|
|
1662
1662
|
}
|
|
1663
1663
|
/**
|
|
1664
1664
|
* <p> Rank of business goals based on priority. </p>
|
|
@@ -1669,7 +1669,7 @@ export interface PrioritizeBusinessGoals {
|
|
|
1669
1669
|
* <p> Rank of business goals based on priority. </p>
|
|
1670
1670
|
* @public
|
|
1671
1671
|
*/
|
|
1672
|
-
businessGoals?: BusinessGoals;
|
|
1672
|
+
businessGoals?: BusinessGoals | undefined;
|
|
1673
1673
|
}
|
|
1674
1674
|
/**
|
|
1675
1675
|
* @public
|
|
@@ -1679,22 +1679,22 @@ export interface GetPortfolioPreferencesResponse {
|
|
|
1679
1679
|
* <p> The rank of business goals based on priority. </p>
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
prioritizeBusinessGoals?: PrioritizeBusinessGoals;
|
|
1682
|
+
prioritizeBusinessGoals?: PrioritizeBusinessGoals | undefined;
|
|
1683
1683
|
/**
|
|
1684
1684
|
* <p> The transformation preferences for non-database applications. </p>
|
|
1685
1685
|
* @public
|
|
1686
1686
|
*/
|
|
1687
|
-
applicationPreferences?: ApplicationPreferences;
|
|
1687
|
+
applicationPreferences?: ApplicationPreferences | undefined;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* <p> The transformation preferences for database applications. </p>
|
|
1690
1690
|
* @public
|
|
1691
1691
|
*/
|
|
1692
|
-
databasePreferences?: DatabasePreferences;
|
|
1692
|
+
databasePreferences?: DatabasePreferences | undefined;
|
|
1693
1693
|
/**
|
|
1694
1694
|
* <p>The classification for application component types.</p>
|
|
1695
1695
|
* @public
|
|
1696
1696
|
*/
|
|
1697
|
-
applicationMode?: ApplicationMode;
|
|
1697
|
+
applicationMode?: ApplicationMode | undefined;
|
|
1698
1698
|
}
|
|
1699
1699
|
/**
|
|
1700
1700
|
* @public
|
|
@@ -1710,7 +1710,7 @@ export interface GetPortfolioSummaryResponse {
|
|
|
1710
1710
|
* overall number of anti-patterns. </p>
|
|
1711
1711
|
* @public
|
|
1712
1712
|
*/
|
|
1713
|
-
assessmentSummary?: AssessmentSummary;
|
|
1713
|
+
assessmentSummary?: AssessmentSummary | undefined;
|
|
1714
1714
|
}
|
|
1715
1715
|
/**
|
|
1716
1716
|
* @public
|
|
@@ -1744,32 +1744,32 @@ export interface RecommendationReportDetails {
|
|
|
1744
1744
|
* <p> The status of the recommendation report generation task. </p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
status?: RecommendationReportStatus;
|
|
1747
|
+
status?: RecommendationReportStatus | undefined;
|
|
1748
1748
|
/**
|
|
1749
1749
|
* <p> The status message for recommendation report generation. </p>
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
statusMessage?: string;
|
|
1752
|
+
statusMessage?: string | undefined;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* <p> The time that the recommendation report generation task starts. </p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
startTime?: Date;
|
|
1757
|
+
startTime?: Date | undefined;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* <p> The time that the recommendation report generation task completes. </p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
completionTime?: Date;
|
|
1762
|
+
completionTime?: Date | undefined;
|
|
1763
1763
|
/**
|
|
1764
1764
|
* <p> The S3 bucket where the report file is located. </p>
|
|
1765
1765
|
* @public
|
|
1766
1766
|
*/
|
|
1767
|
-
s3Bucket?: string;
|
|
1767
|
+
s3Bucket?: string | undefined;
|
|
1768
1768
|
/**
|
|
1769
1769
|
* <p> The Amazon S3 key name of the report file. </p>
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
s3Keys?: string[];
|
|
1772
|
+
s3Keys?: string[] | undefined;
|
|
1773
1773
|
}
|
|
1774
1774
|
/**
|
|
1775
1775
|
* @public
|
|
@@ -1779,12 +1779,12 @@ export interface GetRecommendationReportDetailsResponse {
|
|
|
1779
1779
|
* <p> The ID of the recommendation report generation task. See the response of <a>StartRecommendationReportGeneration</a>. </p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
id?: string;
|
|
1782
|
+
id?: string | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p> Detailed information about the recommendation report. </p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
recommendationReportDetails?: RecommendationReportDetails;
|
|
1787
|
+
recommendationReportDetails?: RecommendationReportDetails | undefined;
|
|
1788
1788
|
}
|
|
1789
1789
|
/**
|
|
1790
1790
|
* @public
|
|
@@ -1801,12 +1801,12 @@ export interface GetServerDetailsRequest {
|
|
|
1801
1801
|
* with a token. You then use the returned token to retrieve the next set of 10. </p>
|
|
1802
1802
|
* @public
|
|
1803
1803
|
*/
|
|
1804
|
-
nextToken?: string;
|
|
1804
|
+
nextToken?: string | undefined;
|
|
1805
1805
|
/**
|
|
1806
1806
|
* <p> The maximum number of items to include in the response. The maximum value is 100. </p>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
maxResults?: number;
|
|
1809
|
+
maxResults?: number | undefined;
|
|
1810
1810
|
}
|
|
1811
1811
|
/**
|
|
1812
1812
|
* @public
|
|
@@ -1832,7 +1832,7 @@ export interface ServerError {
|
|
|
1832
1832
|
* <p>The error category of server analysis.</p>
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
serverErrorCategory?: ServerErrorCategory;
|
|
1835
|
+
serverErrorCategory?: ServerErrorCategory | undefined;
|
|
1836
1836
|
}
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p> Information about the server's network for which the assessment was run. </p>
|
|
@@ -1882,12 +1882,12 @@ export interface OSInfo {
|
|
|
1882
1882
|
* <p> Information about the type of operating system. </p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
type?: OSType;
|
|
1885
|
+
type?: OSType | undefined;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* <p> Information about the version of operating system. </p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
version?: string;
|
|
1890
|
+
version?: string | undefined;
|
|
1891
1891
|
}
|
|
1892
1892
|
/**
|
|
1893
1893
|
* <p> Information about the server that hosts application components. </p>
|
|
@@ -1898,22 +1898,22 @@ export interface SystemInfo {
|
|
|
1898
1898
|
* <p> Operating system corresponding to a server. </p>
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
osInfo?: OSInfo;
|
|
1901
|
+
osInfo?: OSInfo | undefined;
|
|
1902
1902
|
/**
|
|
1903
1903
|
* <p> File system type for the server. </p>
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
fileSystemType?: string;
|
|
1906
|
+
fileSystemType?: string | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p> Networking information related to a server. </p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
networkInfoList?: NetworkInfo[];
|
|
1911
|
+
networkInfoList?: NetworkInfo[] | undefined;
|
|
1912
1912
|
/**
|
|
1913
1913
|
* <p> CPU architecture type for the server. </p>
|
|
1914
1914
|
* @public
|
|
1915
1915
|
*/
|
|
1916
|
-
cpuArchitecture?: string;
|
|
1916
|
+
cpuArchitecture?: string | undefined;
|
|
1917
1917
|
}
|
|
1918
1918
|
/**
|
|
1919
1919
|
* <p> Detailed information about a server. </p>
|
|
@@ -1924,73 +1924,73 @@ export interface ServerDetail {
|
|
|
1924
1924
|
* <p> The server ID. </p>
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
id?: string;
|
|
1927
|
+
id?: string | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* <p> The name of the server. </p>
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
name?: string;
|
|
1932
|
+
name?: string | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* <p> A set of recommendations. </p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
recommendationSet?: RecommendationSet;
|
|
1937
|
+
recommendationSet?: RecommendationSet | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* <p> The status of assessment for the server. </p>
|
|
1940
1940
|
* @public
|
|
1941
1941
|
*/
|
|
1942
|
-
dataCollectionStatus?: RunTimeAssessmentStatus;
|
|
1942
|
+
dataCollectionStatus?: RunTimeAssessmentStatus | undefined;
|
|
1943
1943
|
/**
|
|
1944
1944
|
* <p> A message about the status of data collection, which contains detailed descriptions of
|
|
1945
1945
|
* any error messages. </p>
|
|
1946
1946
|
* @public
|
|
1947
1947
|
*/
|
|
1948
|
-
statusMessage?: string;
|
|
1948
|
+
statusMessage?: string | undefined;
|
|
1949
1949
|
/**
|
|
1950
1950
|
* <p> A list of anti-pattern severity summaries. </p>
|
|
1951
1951
|
* @public
|
|
1952
1952
|
*/
|
|
1953
|
-
listAntipatternSeveritySummary?: AntipatternSeveritySummary[];
|
|
1953
|
+
listAntipatternSeveritySummary?: AntipatternSeveritySummary[] | undefined;
|
|
1954
1954
|
/**
|
|
1955
1955
|
* <p> System information about the server. </p>
|
|
1956
1956
|
* @public
|
|
1957
1957
|
*/
|
|
1958
|
-
systemInfo?: SystemInfo;
|
|
1958
|
+
systemInfo?: SystemInfo | undefined;
|
|
1959
1959
|
/**
|
|
1960
1960
|
* <p> A list of strategy summaries. </p>
|
|
1961
1961
|
* @public
|
|
1962
1962
|
*/
|
|
1963
|
-
applicationComponentStrategySummary?: StrategySummary[];
|
|
1963
|
+
applicationComponentStrategySummary?: StrategySummary[] | undefined;
|
|
1964
1964
|
/**
|
|
1965
1965
|
* <p> The S3 bucket name and Amazon S3 key name for anti-pattern report. </p>
|
|
1966
1966
|
* @public
|
|
1967
1967
|
*/
|
|
1968
|
-
antipatternReportS3Object?: S3Object;
|
|
1968
|
+
antipatternReportS3Object?: S3Object | undefined;
|
|
1969
1969
|
/**
|
|
1970
1970
|
* <p> The status of the anti-pattern report generation. </p>
|
|
1971
1971
|
* @public
|
|
1972
1972
|
*/
|
|
1973
|
-
antipatternReportStatus?: AntipatternReportStatus;
|
|
1973
|
+
antipatternReportStatus?: AntipatternReportStatus | undefined;
|
|
1974
1974
|
/**
|
|
1975
1975
|
* <p> A message about the status of the anti-pattern report generation. </p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
antipatternReportStatusMessage?: string;
|
|
1978
|
+
antipatternReportStatusMessage?: string | undefined;
|
|
1979
1979
|
/**
|
|
1980
1980
|
* <p> The type of server. </p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
serverType?: string;
|
|
1983
|
+
serverType?: string | undefined;
|
|
1984
1984
|
/**
|
|
1985
1985
|
* <p> The timestamp of when the server was assessed. </p>
|
|
1986
1986
|
* @public
|
|
1987
1987
|
*/
|
|
1988
|
-
lastAnalyzedTimestamp?: Date;
|
|
1988
|
+
lastAnalyzedTimestamp?: Date | undefined;
|
|
1989
1989
|
/**
|
|
1990
1990
|
* <p>The error in server analysis.</p>
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
serverError?: ServerError;
|
|
1993
|
+
serverError?: ServerError | undefined;
|
|
1994
1994
|
}
|
|
1995
1995
|
/**
|
|
1996
1996
|
* @public
|
|
@@ -2000,18 +2000,18 @@ export interface GetServerDetailsResponse {
|
|
|
2000
2000
|
* <p> The token you use to retrieve the next set of results, or null if there are no more results. </p>
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
nextToken?: string;
|
|
2003
|
+
nextToken?: string | undefined;
|
|
2004
2004
|
/**
|
|
2005
2005
|
* <p> Detailed information about the server. </p>
|
|
2006
2006
|
* @public
|
|
2007
2007
|
*/
|
|
2008
|
-
serverDetail?: ServerDetail;
|
|
2008
|
+
serverDetail?: ServerDetail | undefined;
|
|
2009
2009
|
/**
|
|
2010
2010
|
* <p> The associated application group the server belongs to, as defined in AWS Application Discovery Service.
|
|
2011
2011
|
* </p>
|
|
2012
2012
|
* @public
|
|
2013
2013
|
*/
|
|
2014
|
-
associatedApplications?: AssociatedApplication[];
|
|
2014
|
+
associatedApplications?: AssociatedApplication[] | undefined;
|
|
2015
2015
|
}
|
|
2016
2016
|
/**
|
|
2017
2017
|
* @public
|
|
@@ -2032,23 +2032,23 @@ export interface ServerStrategy {
|
|
|
2032
2032
|
* <p> Strategy recommendation for the server. </p>
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
recommendation?: RecommendationSet;
|
|
2035
|
+
recommendation?: RecommendationSet | undefined;
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p> The recommendation status of the strategy for the server. </p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
status?: StrategyRecommendation;
|
|
2040
|
+
status?: StrategyRecommendation | undefined;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* <p> The number of application components with this strategy recommendation running on the
|
|
2043
2043
|
* server. </p>
|
|
2044
2044
|
* @public
|
|
2045
2045
|
*/
|
|
2046
|
-
numberOfApplicationComponents?: number;
|
|
2046
|
+
numberOfApplicationComponents?: number | undefined;
|
|
2047
2047
|
/**
|
|
2048
2048
|
* <p> Set to true if the recommendation is set as preferred. </p>
|
|
2049
2049
|
* @public
|
|
2050
2050
|
*/
|
|
2051
|
-
isPreferred?: boolean;
|
|
2051
|
+
isPreferred?: boolean | undefined;
|
|
2052
2052
|
}
|
|
2053
2053
|
/**
|
|
2054
2054
|
* @public
|
|
@@ -2058,7 +2058,7 @@ export interface GetServerStrategiesResponse {
|
|
|
2058
2058
|
* <p> A list of strategy recommendations for the server. </p>
|
|
2059
2059
|
* @public
|
|
2060
2060
|
*/
|
|
2061
|
-
serverStrategies?: ServerStrategy[];
|
|
2061
|
+
serverStrategies?: ServerStrategy[] | undefined;
|
|
2062
2062
|
}
|
|
2063
2063
|
/**
|
|
2064
2064
|
* @public
|
|
@@ -2081,17 +2081,17 @@ export interface ListAnalyzableServersRequest {
|
|
|
2081
2081
|
* Specifies whether to sort by ascending (ASC) or descending (DESC) order.
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
sort?: SortOrder;
|
|
2084
|
+
sort?: SortOrder | undefined;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
nextToken?: string;
|
|
2089
|
+
nextToken?: string | undefined;
|
|
2090
2090
|
/**
|
|
2091
2091
|
* The maximum number of items to include in the response. The maximum value is 100.
|
|
2092
2092
|
* @public
|
|
2093
2093
|
*/
|
|
2094
|
-
maxResults?: number;
|
|
2094
|
+
maxResults?: number | undefined;
|
|
2095
2095
|
}
|
|
2096
2096
|
/**
|
|
2097
2097
|
* Represents output for ListAnalyzableServers operation.
|
|
@@ -2102,12 +2102,12 @@ export interface ListAnalyzableServersResponse {
|
|
|
2102
2102
|
* The list of analyzable servers with summary information about each server.
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
analyzableServers?: AnalyzableServerSummary[];
|
|
2105
|
+
analyzableServers?: AnalyzableServerSummary[] | undefined;
|
|
2106
2106
|
/**
|
|
2107
2107
|
* The token you use to retrieve the next set of results, or null if there are no more results.
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
nextToken?: string;
|
|
2110
|
+
nextToken?: string | undefined;
|
|
2111
2111
|
}
|
|
2112
2112
|
/**
|
|
2113
2113
|
* @public
|
|
@@ -2130,12 +2130,12 @@ export interface Group {
|
|
|
2130
2130
|
* <p> The key of the specific import group. </p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
name?: GroupName;
|
|
2133
|
+
name?: GroupName | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p> The value of the specific import group. </p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
value?: string;
|
|
2138
|
+
value?: string | undefined;
|
|
2139
2139
|
}
|
|
2140
2140
|
/**
|
|
2141
2141
|
* @public
|
|
@@ -2145,7 +2145,7 @@ export interface ListApplicationComponentsRequest {
|
|
|
2145
2145
|
* <p> Criteria for filtering the list of application components. </p>
|
|
2146
2146
|
* @public
|
|
2147
2147
|
*/
|
|
2148
|
-
applicationComponentCriteria?: ApplicationComponentCriteria;
|
|
2148
|
+
applicationComponentCriteria?: ApplicationComponentCriteria | undefined;
|
|
2149
2149
|
/**
|
|
2150
2150
|
* <p> Specify the value based on the application component criteria type. For example, if
|
|
2151
2151
|
* <code>applicationComponentCriteria</code> is set to <code>SERVER_ID</code> and
|
|
@@ -2153,30 +2153,30 @@ export interface ListApplicationComponentsRequest {
|
|
|
2153
2153
|
* server1. </p>
|
|
2154
2154
|
* @public
|
|
2155
2155
|
*/
|
|
2156
|
-
filterValue?: string;
|
|
2156
|
+
filterValue?: string | undefined;
|
|
2157
2157
|
/**
|
|
2158
2158
|
* <p> Specifies whether to sort by ascending (<code>ASC</code>) or descending
|
|
2159
2159
|
* (<code>DESC</code>) order. </p>
|
|
2160
2160
|
* @public
|
|
2161
2161
|
*/
|
|
2162
|
-
sort?: SortOrder;
|
|
2162
|
+
sort?: SortOrder | undefined;
|
|
2163
2163
|
/**
|
|
2164
2164
|
* <p> The group ID specified in to filter on. </p>
|
|
2165
2165
|
* @public
|
|
2166
2166
|
*/
|
|
2167
|
-
groupIdFilter?: Group[];
|
|
2167
|
+
groupIdFilter?: Group[] | undefined;
|
|
2168
2168
|
/**
|
|
2169
2169
|
* <p> The token from a previous call that you use to retrieve the next set of results. For example,
|
|
2170
2170
|
* if a previous call to this action returned 100 items, but you set <code>maxResults</code> to 10. You'll receive a set of 10 results along
|
|
2171
2171
|
* with a token. You then use the returned token to retrieve the next set of 10. </p>
|
|
2172
2172
|
* @public
|
|
2173
2173
|
*/
|
|
2174
|
-
nextToken?: string;
|
|
2174
|
+
nextToken?: string | undefined;
|
|
2175
2175
|
/**
|
|
2176
2176
|
* <p> The maximum number of items to include in the response. The maximum value is 100. </p>
|
|
2177
2177
|
* @public
|
|
2178
2178
|
*/
|
|
2179
|
-
maxResults?: number;
|
|
2179
|
+
maxResults?: number | undefined;
|
|
2180
2180
|
}
|
|
2181
2181
|
/**
|
|
2182
2182
|
* @public
|
|
@@ -2187,12 +2187,12 @@ export interface ListApplicationComponentsResponse {
|
|
|
2187
2187
|
* </p>
|
|
2188
2188
|
* @public
|
|
2189
2189
|
*/
|
|
2190
|
-
applicationComponentInfos?: ApplicationComponentDetail[];
|
|
2190
|
+
applicationComponentInfos?: ApplicationComponentDetail[] | undefined;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* <p> The token you use to retrieve the next set of results, or null if there are no more results. </p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
nextToken?: string;
|
|
2195
|
+
nextToken?: string | undefined;
|
|
2196
2196
|
}
|
|
2197
2197
|
/**
|
|
2198
2198
|
* <p> Exception to indicate that the service-linked role (SLR) is locked. </p>
|
|
@@ -2216,12 +2216,12 @@ export interface ListCollectorsRequest {
|
|
|
2216
2216
|
* with a token. You then use the returned token to retrieve the next set of 10. </p>
|
|
2217
2217
|
* @public
|
|
2218
2218
|
*/
|
|
2219
|
-
nextToken?: string;
|
|
2219
|
+
nextToken?: string | undefined;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* <p> The maximum number of items to include in the response. The maximum value is 100. </p>
|
|
2222
2222
|
* @public
|
|
2223
2223
|
*/
|
|
2224
|
-
maxResults?: number;
|
|
2224
|
+
maxResults?: number | undefined;
|
|
2225
2225
|
}
|
|
2226
2226
|
/**
|
|
2227
2227
|
* @public
|
|
@@ -2244,17 +2244,17 @@ export interface IPAddressBasedRemoteInfo {
|
|
|
2244
2244
|
* <p>The time stamp of the configuration.</p>
|
|
2245
2245
|
* @public
|
|
2246
2246
|
*/
|
|
2247
|
-
ipAddressConfigurationTimeStamp?: string;
|
|
2247
|
+
ipAddressConfigurationTimeStamp?: string | undefined;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* <p>The type of authorization.</p>
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
authType?: AuthType;
|
|
2252
|
+
authType?: AuthType | undefined;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* <p>The type of the operating system.</p>
|
|
2255
2255
|
* @public
|
|
2256
2256
|
*/
|
|
2257
|
-
osType?: OSType;
|
|
2257
|
+
osType?: OSType | undefined;
|
|
2258
2258
|
}
|
|
2259
2259
|
/**
|
|
2260
2260
|
* @public
|
|
@@ -2276,12 +2276,12 @@ export interface PipelineInfo {
|
|
|
2276
2276
|
* <p>The type of pipeline.</p>
|
|
2277
2277
|
* @public
|
|
2278
2278
|
*/
|
|
2279
|
-
pipelineType?: PipelineType;
|
|
2279
|
+
pipelineType?: PipelineType | undefined;
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>The time when the pipeline info was configured.</p>
|
|
2282
2282
|
* @public
|
|
2283
2283
|
*/
|
|
2284
|
-
pipelineConfigurationTimeStamp?: string;
|
|
2284
|
+
pipelineConfigurationTimeStamp?: string | undefined;
|
|
2285
2285
|
}
|
|
2286
2286
|
/**
|
|
2287
2287
|
* <p>Information about the server configured for source code analysis.</p>
|
|
@@ -2292,7 +2292,7 @@ export interface RemoteSourceCodeAnalysisServerInfo {
|
|
|
2292
2292
|
* <p>The time when the remote source code server was configured.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
remoteSourceCodeAnalysisServerConfigurationTimestamp?: string;
|
|
2295
|
+
remoteSourceCodeAnalysisServerConfigurationTimestamp?: string | undefined;
|
|
2296
2296
|
}
|
|
2297
2297
|
/**
|
|
2298
2298
|
* <p>Details about the server in vCenter.</p>
|
|
@@ -2303,12 +2303,12 @@ export interface VcenterBasedRemoteInfo {
|
|
|
2303
2303
|
* <p>The time when the remote server based on vCenter was last configured.</p>
|
|
2304
2304
|
* @public
|
|
2305
2305
|
*/
|
|
2306
|
-
vcenterConfigurationTimeStamp?: string;
|
|
2306
|
+
vcenterConfigurationTimeStamp?: string | undefined;
|
|
2307
2307
|
/**
|
|
2308
2308
|
* <p>The type of the operating system.</p>
|
|
2309
2309
|
* @public
|
|
2310
2310
|
*/
|
|
2311
|
-
osType?: OSType;
|
|
2311
|
+
osType?: OSType | undefined;
|
|
2312
2312
|
}
|
|
2313
2313
|
/**
|
|
2314
2314
|
* @public
|
|
@@ -2332,12 +2332,12 @@ export interface VersionControlInfo {
|
|
|
2332
2332
|
* <p>The type of version control.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
|
-
versionControlType?: VersionControlType;
|
|
2335
|
+
versionControlType?: VersionControlType | undefined;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* <p>The time when the version control system was last configured.</p>
|
|
2338
2338
|
* @public
|
|
2339
2339
|
*/
|
|
2340
|
-
versionControlConfigurationTimeStamp?: string;
|
|
2340
|
+
versionControlConfigurationTimeStamp?: string | undefined;
|
|
2341
2341
|
}
|
|
2342
2342
|
/**
|
|
2343
2343
|
* <p>Summary of the collector configuration.</p>
|
|
@@ -2348,27 +2348,27 @@ export interface ConfigurationSummary {
|
|
|
2348
2348
|
* <p>The list of vCenter configurations.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
vcenterBasedRemoteInfoList?: VcenterBasedRemoteInfo[];
|
|
2351
|
+
vcenterBasedRemoteInfoList?: VcenterBasedRemoteInfo[] | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>IP address based configurations.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
ipAddressBasedRemoteInfoList?: IPAddressBasedRemoteInfo[];
|
|
2356
|
+
ipAddressBasedRemoteInfoList?: IPAddressBasedRemoteInfo[] | undefined;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p>The list of the version control configurations.</p>
|
|
2359
2359
|
* @public
|
|
2360
2360
|
*/
|
|
2361
|
-
versionControlInfoList?: VersionControlInfo[];
|
|
2361
|
+
versionControlInfoList?: VersionControlInfo[] | undefined;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* <p>The list of pipeline info configurations.</p>
|
|
2364
2364
|
* @public
|
|
2365
2365
|
*/
|
|
2366
|
-
pipelineInfoList?: PipelineInfo[];
|
|
2366
|
+
pipelineInfoList?: PipelineInfo[] | undefined;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* <p>Info about the remote server source code configuration.</p>
|
|
2369
2369
|
* @public
|
|
2370
2370
|
*/
|
|
2371
|
-
remoteSourceCodeAnalysisServerInfo?: RemoteSourceCodeAnalysisServerInfo;
|
|
2371
|
+
remoteSourceCodeAnalysisServerInfo?: RemoteSourceCodeAnalysisServerInfo | undefined;
|
|
2372
2372
|
}
|
|
2373
2373
|
/**
|
|
2374
2374
|
* <p> Process data collector that runs in the environment that you specify. </p>
|
|
@@ -2379,43 +2379,43 @@ export interface Collector {
|
|
|
2379
2379
|
* <p> The ID of the collector. </p>
|
|
2380
2380
|
* @public
|
|
2381
2381
|
*/
|
|
2382
|
-
collectorId?: string;
|
|
2382
|
+
collectorId?: string | undefined;
|
|
2383
2383
|
/**
|
|
2384
2384
|
* <p> IP address of the server that is hosting the collector. </p>
|
|
2385
2385
|
* @public
|
|
2386
2386
|
*/
|
|
2387
|
-
ipAddress?: string;
|
|
2387
|
+
ipAddress?: string | undefined;
|
|
2388
2388
|
/**
|
|
2389
2389
|
* <p> Hostname of the server that is hosting the collector. </p>
|
|
2390
2390
|
* @public
|
|
2391
2391
|
*/
|
|
2392
|
-
hostName?: string;
|
|
2392
|
+
hostName?: string | undefined;
|
|
2393
2393
|
/**
|
|
2394
2394
|
* <p> Indicates the health of a collector. </p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
collectorHealth?: CollectorHealth;
|
|
2397
|
+
collectorHealth?: CollectorHealth | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p> Current version of the collector that is running in the environment that you specify.
|
|
2400
2400
|
* </p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
collectorVersion?: string;
|
|
2403
|
+
collectorVersion?: string | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p> Time when the collector registered with the service. </p>
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
registeredTimeStamp?: string;
|
|
2408
|
+
registeredTimeStamp?: string | undefined;
|
|
2409
2409
|
/**
|
|
2410
2410
|
* <p> Time when the collector last pinged the service. </p>
|
|
2411
2411
|
* @public
|
|
2412
2412
|
*/
|
|
2413
|
-
lastActivityTimeStamp?: string;
|
|
2413
|
+
lastActivityTimeStamp?: string | undefined;
|
|
2414
2414
|
/**
|
|
2415
2415
|
* <p>Summary of the collector configuration.</p>
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
configurationSummary?: ConfigurationSummary;
|
|
2418
|
+
configurationSummary?: ConfigurationSummary | undefined;
|
|
2419
2419
|
}
|
|
2420
2420
|
/**
|
|
2421
2421
|
* @public
|
|
@@ -2425,12 +2425,12 @@ export interface ListCollectorsResponse {
|
|
|
2425
2425
|
* <p> The list of all the installed collectors. </p>
|
|
2426
2426
|
* @public
|
|
2427
2427
|
*/
|
|
2428
|
-
Collectors?: Collector[];
|
|
2428
|
+
Collectors?: Collector[] | undefined;
|
|
2429
2429
|
/**
|
|
2430
2430
|
* <p> The token you use to retrieve the next set of results, or null if there are no more results. </p>
|
|
2431
2431
|
* @public
|
|
2432
2432
|
*/
|
|
2433
|
-
nextToken?: string;
|
|
2433
|
+
nextToken?: string | undefined;
|
|
2434
2434
|
}
|
|
2435
2435
|
/**
|
|
2436
2436
|
* @public
|
|
@@ -2442,12 +2442,12 @@ export interface ListImportFileTaskRequest {
|
|
|
2442
2442
|
* with a token. You then use the returned token to retrieve the next set of 10. </p>
|
|
2443
2443
|
* @public
|
|
2444
2444
|
*/
|
|
2445
|
-
nextToken?: string;
|
|
2445
|
+
nextToken?: string | undefined;
|
|
2446
2446
|
/**
|
|
2447
2447
|
* <p> The total number of items to return. The maximum value is 100. </p>
|
|
2448
2448
|
* @public
|
|
2449
2449
|
*/
|
|
2450
|
-
maxResults?: number;
|
|
2450
|
+
maxResults?: number | undefined;
|
|
2451
2451
|
}
|
|
2452
2452
|
/**
|
|
2453
2453
|
* <p> Information about the import file tasks you request. </p>
|
|
@@ -2458,58 +2458,58 @@ export interface ImportFileTaskInformation {
|
|
|
2458
2458
|
* <p> The ID of the import file task. </p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
id?: string;
|
|
2461
|
+
id?: string | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p> Status of import file task. </p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
status?: ImportFileTaskStatus;
|
|
2466
|
+
status?: ImportFileTaskStatus | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p> Start time of the import task. </p>
|
|
2469
2469
|
* @public
|
|
2470
2470
|
*/
|
|
2471
|
-
startTime?: Date;
|
|
2471
|
+
startTime?: Date | undefined;
|
|
2472
2472
|
/**
|
|
2473
2473
|
* <p> The S3 bucket where the import file is located. </p>
|
|
2474
2474
|
* @public
|
|
2475
2475
|
*/
|
|
2476
|
-
inputS3Bucket?: string;
|
|
2476
|
+
inputS3Bucket?: string | undefined;
|
|
2477
2477
|
/**
|
|
2478
2478
|
* <p> The Amazon S3 key name of the import file. </p>
|
|
2479
2479
|
* @public
|
|
2480
2480
|
*/
|
|
2481
|
-
inputS3Key?: string;
|
|
2481
|
+
inputS3Key?: string | undefined;
|
|
2482
2482
|
/**
|
|
2483
2483
|
* <p> The S3 bucket name for status report of import task. </p>
|
|
2484
2484
|
* @public
|
|
2485
2485
|
*/
|
|
2486
|
-
statusReportS3Bucket?: string;
|
|
2486
|
+
statusReportS3Bucket?: string | undefined;
|
|
2487
2487
|
/**
|
|
2488
2488
|
* <p> The Amazon S3 key name for status report of import task. The report contains details about
|
|
2489
2489
|
* whether each record imported successfully or why it did not. </p>
|
|
2490
2490
|
* @public
|
|
2491
2491
|
*/
|
|
2492
|
-
statusReportS3Key?: string;
|
|
2492
|
+
statusReportS3Key?: string | undefined;
|
|
2493
2493
|
/**
|
|
2494
2494
|
* <p> The time that the import task completes. </p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
completionTime?: Date;
|
|
2497
|
+
completionTime?: Date | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p> The number of records successfully imported. </p>
|
|
2500
2500
|
* @public
|
|
2501
2501
|
*/
|
|
2502
|
-
numberOfRecordsSuccess?: number;
|
|
2502
|
+
numberOfRecordsSuccess?: number | undefined;
|
|
2503
2503
|
/**
|
|
2504
2504
|
* <p> The number of records that failed to be imported. </p>
|
|
2505
2505
|
* @public
|
|
2506
2506
|
*/
|
|
2507
|
-
numberOfRecordsFailed?: number;
|
|
2507
|
+
numberOfRecordsFailed?: number | undefined;
|
|
2508
2508
|
/**
|
|
2509
2509
|
* <p> The name of the import task given in <code>StartImportFileTask</code>. </p>
|
|
2510
2510
|
* @public
|
|
2511
2511
|
*/
|
|
2512
|
-
importName?: string;
|
|
2512
|
+
importName?: string | undefined;
|
|
2513
2513
|
}
|
|
2514
2514
|
/**
|
|
2515
2515
|
* @public
|
|
@@ -2519,12 +2519,12 @@ export interface ListImportFileTaskResponse {
|
|
|
2519
2519
|
* <p> Lists information about the files you import.</p>
|
|
2520
2520
|
* @public
|
|
2521
2521
|
*/
|
|
2522
|
-
taskInfos?: ImportFileTaskInformation[];
|
|
2522
|
+
taskInfos?: ImportFileTaskInformation[] | undefined;
|
|
2523
2523
|
/**
|
|
2524
2524
|
* <p> The token you use to retrieve the next set of results, or null if there are no more results. </p>
|
|
2525
2525
|
* @public
|
|
2526
2526
|
*/
|
|
2527
|
-
nextToken?: string;
|
|
2527
|
+
nextToken?: string | undefined;
|
|
2528
2528
|
}
|
|
2529
2529
|
/**
|
|
2530
2530
|
* @public
|
|
@@ -2551,7 +2551,7 @@ export interface ListServersRequest {
|
|
|
2551
2551
|
* <p> Criteria for filtering servers. </p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
serverCriteria?: ServerCriteria;
|
|
2554
|
+
serverCriteria?: ServerCriteria | undefined;
|
|
2555
2555
|
/**
|
|
2556
2556
|
* <p> Specifies the filter value, which is based on the type of server criteria. For example,
|
|
2557
2557
|
* if <code>serverCriteria</code> is <code>OS_NAME</code>, and the <code>filterValue</code> is
|
|
@@ -2559,30 +2559,30 @@ export interface ListServersRequest {
|
|
|
2559
2559
|
* matching the OS name <code>WindowsServer</code>. </p>
|
|
2560
2560
|
* @public
|
|
2561
2561
|
*/
|
|
2562
|
-
filterValue?: string;
|
|
2562
|
+
filterValue?: string | undefined;
|
|
2563
2563
|
/**
|
|
2564
2564
|
* <p> Specifies whether to sort by ascending (<code>ASC</code>) or descending
|
|
2565
2565
|
* (<code>DESC</code>) order. </p>
|
|
2566
2566
|
* @public
|
|
2567
2567
|
*/
|
|
2568
|
-
sort?: SortOrder;
|
|
2568
|
+
sort?: SortOrder | undefined;
|
|
2569
2569
|
/**
|
|
2570
2570
|
* <p> Specifies the group ID to filter on. </p>
|
|
2571
2571
|
* @public
|
|
2572
2572
|
*/
|
|
2573
|
-
groupIdFilter?: Group[];
|
|
2573
|
+
groupIdFilter?: Group[] | undefined;
|
|
2574
2574
|
/**
|
|
2575
2575
|
* <p> The token from a previous call that you use to retrieve the next set of results. For example,
|
|
2576
2576
|
* if a previous call to this action returned 100 items, but you set <code>maxResults</code> to 10. You'll receive a set of 10 results along
|
|
2577
2577
|
* with a token. You then use the returned token to retrieve the next set of 10. </p>
|
|
2578
2578
|
* @public
|
|
2579
2579
|
*/
|
|
2580
|
-
nextToken?: string;
|
|
2580
|
+
nextToken?: string | undefined;
|
|
2581
2581
|
/**
|
|
2582
2582
|
* <p> The maximum number of items to include in the response. The maximum value is 100. </p>
|
|
2583
2583
|
* @public
|
|
2584
2584
|
*/
|
|
2585
|
-
maxResults?: number;
|
|
2585
|
+
maxResults?: number | undefined;
|
|
2586
2586
|
}
|
|
2587
2587
|
/**
|
|
2588
2588
|
* @public
|
|
@@ -2592,12 +2592,12 @@ export interface ListServersResponse {
|
|
|
2592
2592
|
* <p> The list of servers with detailed information about each server. </p>
|
|
2593
2593
|
* @public
|
|
2594
2594
|
*/
|
|
2595
|
-
serverInfos?: ServerDetail[];
|
|
2595
|
+
serverInfos?: ServerDetail[] | undefined;
|
|
2596
2596
|
/**
|
|
2597
2597
|
* <p> The token you use to retrieve the next set of results, or null if there are no more results. </p>
|
|
2598
2598
|
* @public
|
|
2599
2599
|
*/
|
|
2600
|
-
nextToken?: string;
|
|
2600
|
+
nextToken?: string | undefined;
|
|
2601
2601
|
}
|
|
2602
2602
|
/**
|
|
2603
2603
|
* <p> Exception to indicate that there is an ongoing task when a new task is created. Return
|
|
@@ -2620,22 +2620,22 @@ export interface PutPortfolioPreferencesRequest {
|
|
|
2620
2620
|
* <p> The rank of the business goals based on priority. </p>
|
|
2621
2621
|
* @public
|
|
2622
2622
|
*/
|
|
2623
|
-
prioritizeBusinessGoals?: PrioritizeBusinessGoals;
|
|
2623
|
+
prioritizeBusinessGoals?: PrioritizeBusinessGoals | undefined;
|
|
2624
2624
|
/**
|
|
2625
2625
|
* <p> The transformation preferences for non-database applications. </p>
|
|
2626
2626
|
* @public
|
|
2627
2627
|
*/
|
|
2628
|
-
applicationPreferences?: ApplicationPreferences;
|
|
2628
|
+
applicationPreferences?: ApplicationPreferences | undefined;
|
|
2629
2629
|
/**
|
|
2630
2630
|
* <p> The transformation preferences for database applications. </p>
|
|
2631
2631
|
* @public
|
|
2632
2632
|
*/
|
|
2633
|
-
databasePreferences?: DatabasePreferences;
|
|
2633
|
+
databasePreferences?: DatabasePreferences | undefined;
|
|
2634
2634
|
/**
|
|
2635
2635
|
* <p>The classification for application component types.</p>
|
|
2636
2636
|
* @public
|
|
2637
2637
|
*/
|
|
2638
|
-
applicationMode?: ApplicationMode;
|
|
2638
|
+
applicationMode?: ApplicationMode | undefined;
|
|
2639
2639
|
}
|
|
2640
2640
|
/**
|
|
2641
2641
|
* @public
|
|
@@ -2664,23 +2664,23 @@ export interface StartAssessmentRequest {
|
|
|
2664
2664
|
* name must begin with <code>migrationhub-strategy-</code>. </p>
|
|
2665
2665
|
* @public
|
|
2666
2666
|
*/
|
|
2667
|
-
s3bucketForAnalysisData?: string;
|
|
2667
|
+
s3bucketForAnalysisData?: string | undefined;
|
|
2668
2668
|
/**
|
|
2669
2669
|
* <p> The S3 bucket where all the reports generated by the service are stored. The bucket name
|
|
2670
2670
|
* must begin with <code>migrationhub-strategy-</code>. </p>
|
|
2671
2671
|
* @public
|
|
2672
2672
|
*/
|
|
2673
|
-
s3bucketForReportData?: string;
|
|
2673
|
+
s3bucketForReportData?: string | undefined;
|
|
2674
2674
|
/**
|
|
2675
2675
|
* <p>List of criteria for assessment.</p>
|
|
2676
2676
|
* @public
|
|
2677
2677
|
*/
|
|
2678
|
-
assessmentTargets?: AssessmentTarget[];
|
|
2678
|
+
assessmentTargets?: AssessmentTarget[] | undefined;
|
|
2679
2679
|
/**
|
|
2680
2680
|
* The data source type of an assessment to be started.
|
|
2681
2681
|
* @public
|
|
2682
2682
|
*/
|
|
2683
|
-
assessmentDataSourceType?: AssessmentDataSourceType;
|
|
2683
|
+
assessmentDataSourceType?: AssessmentDataSourceType | undefined;
|
|
2684
2684
|
}
|
|
2685
2685
|
/**
|
|
2686
2686
|
* @public
|
|
@@ -2690,7 +2690,7 @@ export interface StartAssessmentResponse {
|
|
|
2690
2690
|
* <p> The ID of the assessment. </p>
|
|
2691
2691
|
* @public
|
|
2692
2692
|
*/
|
|
2693
|
-
assessmentId?: string;
|
|
2693
|
+
assessmentId?: string | undefined;
|
|
2694
2694
|
}
|
|
2695
2695
|
/**
|
|
2696
2696
|
* @public
|
|
@@ -2731,19 +2731,19 @@ export interface StartImportFileTaskRequest {
|
|
|
2731
2731
|
* the servers specified in the import file are available in AWS Application Discovery Service. </p>
|
|
2732
2732
|
* @public
|
|
2733
2733
|
*/
|
|
2734
|
-
dataSourceType?: DataSourceType;
|
|
2734
|
+
dataSourceType?: DataSourceType | undefined;
|
|
2735
2735
|
/**
|
|
2736
2736
|
* <p>Groups the resources in the import file together with a unique name. This ID can be as
|
|
2737
2737
|
* filter in <code>ListApplicationComponents</code> and <code>ListServers</code>. </p>
|
|
2738
2738
|
* @public
|
|
2739
2739
|
*/
|
|
2740
|
-
groupId?: Group[];
|
|
2740
|
+
groupId?: Group[] | undefined;
|
|
2741
2741
|
/**
|
|
2742
2742
|
* <p> The S3 bucket where Strategy Recommendations uploads import results. The bucket name is required to
|
|
2743
2743
|
* begin with migrationhub-strategy-. </p>
|
|
2744
2744
|
* @public
|
|
2745
2745
|
*/
|
|
2746
|
-
s3bucketForReportData?: string;
|
|
2746
|
+
s3bucketForReportData?: string | undefined;
|
|
2747
2747
|
}
|
|
2748
2748
|
/**
|
|
2749
2749
|
* @public
|
|
@@ -2753,7 +2753,7 @@ export interface StartImportFileTaskResponse {
|
|
|
2753
2753
|
* <p> The ID for a specific import task. The ID is unique within an AWS account. </p>
|
|
2754
2754
|
* @public
|
|
2755
2755
|
*/
|
|
2756
|
-
id?: string;
|
|
2756
|
+
id?: string | undefined;
|
|
2757
2757
|
}
|
|
2758
2758
|
/**
|
|
2759
2759
|
* @public
|
|
@@ -2776,12 +2776,12 @@ export interface StartRecommendationReportGenerationRequest {
|
|
|
2776
2776
|
* Excel. </p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
outputFormat?: OutputFormat;
|
|
2779
|
+
outputFormat?: OutputFormat | undefined;
|
|
2780
2780
|
/**
|
|
2781
2781
|
* <p> Groups the resources in the recommendation report with a unique name. </p>
|
|
2782
2782
|
* @public
|
|
2783
2783
|
*/
|
|
2784
|
-
groupIdFilter?: Group[];
|
|
2784
|
+
groupIdFilter?: Group[] | undefined;
|
|
2785
2785
|
}
|
|
2786
2786
|
/**
|
|
2787
2787
|
* @public
|
|
@@ -2791,7 +2791,7 @@ export interface StartRecommendationReportGenerationResponse {
|
|
|
2791
2791
|
* <p> The ID of the recommendation report generation task. </p>
|
|
2792
2792
|
* @public
|
|
2793
2793
|
*/
|
|
2794
|
-
id?: string;
|
|
2794
|
+
id?: string | undefined;
|
|
2795
2795
|
}
|
|
2796
2796
|
/**
|
|
2797
2797
|
* @public
|
|
@@ -2831,22 +2831,22 @@ export interface SourceCode {
|
|
|
2831
2831
|
* <p> The type of repository to use for the source code. </p>
|
|
2832
2832
|
* @public
|
|
2833
2833
|
*/
|
|
2834
|
-
versionControl?: VersionControl;
|
|
2834
|
+
versionControl?: VersionControl | undefined;
|
|
2835
2835
|
/**
|
|
2836
2836
|
* <p> The branch of the source code. </p>
|
|
2837
2837
|
* @public
|
|
2838
2838
|
*/
|
|
2839
|
-
sourceVersion?: string;
|
|
2839
|
+
sourceVersion?: string | undefined;
|
|
2840
2840
|
/**
|
|
2841
2841
|
* <p> The repository name for the source code. </p>
|
|
2842
2842
|
* @public
|
|
2843
2843
|
*/
|
|
2844
|
-
location?: string;
|
|
2844
|
+
location?: string | undefined;
|
|
2845
2845
|
/**
|
|
2846
2846
|
* <p>The name of the project.</p>
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
projectName?: string;
|
|
2849
|
+
projectName?: string | undefined;
|
|
2850
2850
|
}
|
|
2851
2851
|
/**
|
|
2852
2852
|
* <p> Information about all the available strategy options for migrating and modernizing an
|
|
@@ -2858,24 +2858,24 @@ export interface StrategyOption {
|
|
|
2858
2858
|
* <p> Type of transformation. For example, Rehost, Replatform, and so on. </p>
|
|
2859
2859
|
* @public
|
|
2860
2860
|
*/
|
|
2861
|
-
strategy?: Strategy;
|
|
2861
|
+
strategy?: Strategy | undefined;
|
|
2862
2862
|
/**
|
|
2863
2863
|
* <p> The name of the tool that can be used to transform an application component using this
|
|
2864
2864
|
* strategy. </p>
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
toolName?: TransformationToolName;
|
|
2867
|
+
toolName?: TransformationToolName | undefined;
|
|
2868
2868
|
/**
|
|
2869
2869
|
* <p> Destination information about where the application component can migrate to. For
|
|
2870
2870
|
* example, <code>EC2</code>, <code>ECS</code>, and so on. </p>
|
|
2871
2871
|
* @public
|
|
2872
2872
|
*/
|
|
2873
|
-
targetDestination?: TargetDestination;
|
|
2873
|
+
targetDestination?: TargetDestination | undefined;
|
|
2874
2874
|
/**
|
|
2875
2875
|
* <p> Indicates if a specific strategy is preferred for the application component. </p>
|
|
2876
2876
|
* @public
|
|
2877
2877
|
*/
|
|
2878
|
-
isPreferred?: boolean;
|
|
2878
|
+
isPreferred?: boolean | undefined;
|
|
2879
2879
|
}
|
|
2880
2880
|
/**
|
|
2881
2881
|
* @public
|
|
@@ -2891,34 +2891,34 @@ export interface UpdateApplicationComponentConfigRequest {
|
|
|
2891
2891
|
* or not. </p>
|
|
2892
2892
|
* @public
|
|
2893
2893
|
*/
|
|
2894
|
-
inclusionStatus?: InclusionStatus;
|
|
2894
|
+
inclusionStatus?: InclusionStatus | undefined;
|
|
2895
2895
|
/**
|
|
2896
2896
|
* <p> The preferred strategy options for the application component. Use values from the <a>GetApplicationComponentStrategies</a> response. </p>
|
|
2897
2897
|
* @public
|
|
2898
2898
|
*/
|
|
2899
|
-
strategyOption?: StrategyOption;
|
|
2899
|
+
strategyOption?: StrategyOption | undefined;
|
|
2900
2900
|
/**
|
|
2901
2901
|
* <p> The list of source code configurations to update for the application component. </p>
|
|
2902
2902
|
* @public
|
|
2903
2903
|
*/
|
|
2904
|
-
sourceCodeList?: SourceCode[];
|
|
2904
|
+
sourceCodeList?: SourceCode[] | undefined;
|
|
2905
2905
|
/**
|
|
2906
2906
|
* <p> Database credentials. </p>
|
|
2907
2907
|
* @public
|
|
2908
2908
|
*/
|
|
2909
|
-
secretsManagerKey?: string;
|
|
2909
|
+
secretsManagerKey?: string | undefined;
|
|
2910
2910
|
/**
|
|
2911
2911
|
* <p>Update the configuration request of an application component. If it is set to true, the
|
|
2912
2912
|
* source code and/or database credentials are updated. If it is set to false, the source code
|
|
2913
2913
|
* and/or database credentials are updated and an analysis is initiated.</p>
|
|
2914
2914
|
* @public
|
|
2915
2915
|
*/
|
|
2916
|
-
configureOnly?: boolean;
|
|
2916
|
+
configureOnly?: boolean | undefined;
|
|
2917
2917
|
/**
|
|
2918
2918
|
* <p>The type of known component.</p>
|
|
2919
2919
|
* @public
|
|
2920
2920
|
*/
|
|
2921
|
-
appType?: AppType;
|
|
2921
|
+
appType?: AppType | undefined;
|
|
2922
2922
|
}
|
|
2923
2923
|
/**
|
|
2924
2924
|
* @public
|
|
@@ -2938,7 +2938,7 @@ export interface UpdateServerConfigRequest {
|
|
|
2938
2938
|
* <p> The preferred strategy options for the application component. See the response from <a>GetServerStrategies</a>.</p>
|
|
2939
2939
|
* @public
|
|
2940
2940
|
*/
|
|
2941
|
-
strategyOption?: StrategyOption;
|
|
2941
|
+
strategyOption?: StrategyOption | undefined;
|
|
2942
2942
|
}
|
|
2943
2943
|
/**
|
|
2944
2944
|
* @public
|