@aws-sdk/client-migrationhubstrategy 3.687.0 → 3.692.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.
@@ -61,10 +61,10 @@ export declare const AnalysisType: {
61
61
  };
62
62
  export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
63
63
  export interface AnalyzableServerSummary {
64
- hostname?: string;
65
- ipAddress?: string;
66
- source?: string;
67
- vmId?: string;
64
+ hostname?: string | undefined;
65
+ ipAddress?: string | undefined;
66
+ source?: string | undefined;
67
+ vmId?: string | undefined;
68
68
  }
69
69
  export declare const BinaryAnalyzerName: {
70
70
  readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
@@ -128,8 +128,8 @@ export declare namespace AnalyzerNameUnion {
128
128
  const visit: <T>(value: AnalyzerNameUnion, visitor: Visitor<T>) => T;
129
129
  }
130
130
  export interface S3Object {
131
- s3Bucket?: string;
132
- s3key?: string;
131
+ s3Bucket?: string | undefined;
132
+ s3key?: string | undefined;
133
133
  }
134
134
  export declare const AntipatternReportStatus: {
135
135
  readonly FAILED: "FAILED";
@@ -139,10 +139,10 @@ export declare const AntipatternReportStatus: {
139
139
  export type AntipatternReportStatus =
140
140
  (typeof AntipatternReportStatus)[keyof typeof AntipatternReportStatus];
141
141
  export interface AntipatternReportResult {
142
- analyzerName?: AnalyzerNameUnion;
143
- antiPatternReportS3Object?: S3Object;
144
- antipatternReportStatus?: AntipatternReportStatus;
145
- antipatternReportStatusMessage?: string;
142
+ analyzerName?: AnalyzerNameUnion | undefined;
143
+ antiPatternReportS3Object?: S3Object | undefined;
144
+ antipatternReportStatus?: AntipatternReportStatus | undefined;
145
+ antipatternReportStatusMessage?: string | undefined;
146
146
  }
147
147
  export declare const Severity: {
148
148
  readonly HIGH: "HIGH";
@@ -151,8 +151,8 @@ export declare const Severity: {
151
151
  };
152
152
  export type Severity = (typeof Severity)[keyof typeof Severity];
153
153
  export interface AntipatternSeveritySummary {
154
- severity?: Severity;
155
- count?: number;
154
+ severity?: Severity | undefined;
155
+ count?: number | undefined;
156
156
  }
157
157
  export declare const ApplicationComponentCriteria: {
158
158
  readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
@@ -201,10 +201,10 @@ export declare const AppUnitErrorCategory: {
201
201
  export type AppUnitErrorCategory =
202
202
  (typeof AppUnitErrorCategory)[keyof typeof AppUnitErrorCategory];
203
203
  export interface AppUnitError {
204
- appUnitErrorCategory?: AppUnitErrorCategory;
204
+ appUnitErrorCategory?: AppUnitErrorCategory | undefined;
205
205
  }
206
206
  export interface DatabaseConfigDetail {
207
- secretName?: string;
207
+ secretName?: string | undefined;
208
208
  }
209
209
  export declare const InclusionStatus: {
210
210
  readonly EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment";
@@ -255,14 +255,14 @@ export declare const TransformationToolName: {
255
255
  export type TransformationToolName =
256
256
  (typeof TransformationToolName)[keyof typeof TransformationToolName];
257
257
  export interface TransformationTool {
258
- name?: TransformationToolName;
259
- description?: string;
260
- tranformationToolInstallationLink?: string;
258
+ name?: TransformationToolName | undefined;
259
+ description?: string | undefined;
260
+ tranformationToolInstallationLink?: string | undefined;
261
261
  }
262
262
  export interface RecommendationSet {
263
- transformationTool?: TransformationTool;
264
- targetDestination?: TargetDestination;
265
- strategy?: Strategy;
263
+ transformationTool?: TransformationTool | undefined;
264
+ targetDestination?: TargetDestination | undefined;
265
+ strategy?: Strategy | undefined;
266
266
  }
267
267
  export declare const ResourceSubType: {
268
268
  readonly DATABASE: "Database";
@@ -272,45 +272,45 @@ export declare const ResourceSubType: {
272
272
  export type ResourceSubType =
273
273
  (typeof ResourceSubType)[keyof typeof ResourceSubType];
274
274
  export interface Result {
275
- analysisType?: AnalysisType;
276
- analysisStatus?: AnalysisStatusUnion;
277
- statusMessage?: string;
278
- antipatternReportResultList?: AntipatternReportResult[];
275
+ analysisType?: AnalysisType | undefined;
276
+ analysisStatus?: AnalysisStatusUnion | undefined;
277
+ statusMessage?: string | undefined;
278
+ antipatternReportResultList?: AntipatternReportResult[] | undefined;
279
279
  }
280
280
  export interface SourceCodeRepository {
281
- repository?: string;
282
- branch?: string;
283
- versionControlType?: string;
284
- projectName?: string;
281
+ repository?: string | undefined;
282
+ branch?: string | undefined;
283
+ versionControlType?: string | undefined;
284
+ projectName?: string | undefined;
285
285
  }
286
286
  export interface ApplicationComponentDetail {
287
- id?: string;
288
- name?: string;
289
- recommendationSet?: RecommendationSet;
290
- analysisStatus?: SrcCodeOrDbAnalysisStatus;
291
- statusMessage?: string;
292
- listAntipatternSeveritySummary?: AntipatternSeveritySummary[];
293
- databaseConfigDetail?: DatabaseConfigDetail;
294
- sourceCodeRepositories?: SourceCodeRepository[];
295
- appType?: AppType;
296
- resourceSubType?: ResourceSubType;
297
- inclusionStatus?: InclusionStatus;
298
- antipatternReportS3Object?: S3Object;
299
- antipatternReportStatus?: AntipatternReportStatus;
300
- antipatternReportStatusMessage?: string;
301
- osVersion?: string;
302
- osDriver?: string;
303
- lastAnalyzedTimestamp?: Date;
304
- associatedServerId?: string;
305
- moreServerAssociationExists?: boolean;
306
- runtimeStatus?: RuntimeAnalysisStatus;
307
- runtimeStatusMessage?: string;
308
- appUnitError?: AppUnitError;
309
- resultList?: Result[];
287
+ id?: string | undefined;
288
+ name?: string | undefined;
289
+ recommendationSet?: RecommendationSet | undefined;
290
+ analysisStatus?: SrcCodeOrDbAnalysisStatus | undefined;
291
+ statusMessage?: string | undefined;
292
+ listAntipatternSeveritySummary?: AntipatternSeveritySummary[] | undefined;
293
+ databaseConfigDetail?: DatabaseConfigDetail | undefined;
294
+ sourceCodeRepositories?: SourceCodeRepository[] | undefined;
295
+ appType?: AppType | undefined;
296
+ resourceSubType?: ResourceSubType | undefined;
297
+ inclusionStatus?: InclusionStatus | undefined;
298
+ antipatternReportS3Object?: S3Object | undefined;
299
+ antipatternReportStatus?: AntipatternReportStatus | undefined;
300
+ antipatternReportStatusMessage?: string | undefined;
301
+ osVersion?: string | undefined;
302
+ osDriver?: string | undefined;
303
+ lastAnalyzedTimestamp?: Date | undefined;
304
+ associatedServerId?: string | undefined;
305
+ moreServerAssociationExists?: boolean | undefined;
306
+ runtimeStatus?: RuntimeAnalysisStatus | undefined;
307
+ runtimeStatusMessage?: string | undefined;
308
+ appUnitError?: AppUnitError | undefined;
309
+ resultList?: Result[] | undefined;
310
310
  }
311
311
  export interface ApplicationComponentStatusSummary {
312
- srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus;
313
- count?: number;
312
+ srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus | undefined;
313
+ count?: number | undefined;
314
314
  }
315
315
  export declare const StrategyRecommendation: {
316
316
  readonly NOT_RECOMMENDED: "notRecommended";
@@ -321,13 +321,13 @@ export declare const StrategyRecommendation: {
321
321
  export type StrategyRecommendation =
322
322
  (typeof StrategyRecommendation)[keyof typeof StrategyRecommendation];
323
323
  export interface ApplicationComponentStrategy {
324
- recommendation?: RecommendationSet;
325
- status?: StrategyRecommendation;
326
- isPreferred?: boolean;
324
+ recommendation?: RecommendationSet | undefined;
325
+ status?: StrategyRecommendation | undefined;
326
+ isPreferred?: boolean | undefined;
327
327
  }
328
328
  export interface ApplicationComponentSummary {
329
- appType?: AppType;
330
- count?: number;
329
+ appType?: AppType | undefined;
330
+ count?: number | undefined;
331
331
  }
332
332
  export declare const ApplicationMode: {
333
333
  readonly ALL: "ALL";
@@ -409,7 +409,7 @@ export declare namespace ManagementPreference {
409
409
  const visit: <T>(value: ManagementPreference, visitor: Visitor<T>) => T;
410
410
  }
411
411
  export interface ApplicationPreferences {
412
- managementPreference?: ManagementPreference;
412
+ managementPreference?: ManagementPreference | undefined;
413
413
  }
414
414
  export declare const AssessmentDataSourceType: {
415
415
  readonly ADS: "ApplicationDiscoveryService";
@@ -427,8 +427,8 @@ export declare const AssessmentStatus: {
427
427
  export type AssessmentStatus =
428
428
  (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
429
429
  export interface StrategySummary {
430
- strategy?: Strategy;
431
- count?: number;
430
+ strategy?: Strategy | undefined;
431
+ count?: number | undefined;
432
432
  }
433
433
  export declare const RunTimeAssessmentStatus: {
434
434
  readonly DC_FAILED: "dataCollectionTaskFailed";
@@ -442,8 +442,8 @@ export declare const RunTimeAssessmentStatus: {
442
442
  export type RunTimeAssessmentStatus =
443
443
  (typeof RunTimeAssessmentStatus)[keyof typeof RunTimeAssessmentStatus];
444
444
  export interface ServerStatusSummary {
445
- runTimeAssessmentStatus?: RunTimeAssessmentStatus;
446
- count?: number;
445
+ runTimeAssessmentStatus?: RunTimeAssessmentStatus | undefined;
446
+ count?: number | undefined;
447
447
  }
448
448
  export declare const ServerOsType: {
449
449
  readonly amazonLinux: "AmazonLinux";
@@ -454,21 +454,23 @@ export declare const ServerOsType: {
454
454
  };
455
455
  export type ServerOsType = (typeof ServerOsType)[keyof typeof ServerOsType];
456
456
  export interface ServerSummary {
457
- ServerOsType?: ServerOsType;
458
- count?: number;
457
+ ServerOsType?: ServerOsType | undefined;
458
+ count?: number | undefined;
459
459
  }
460
460
  export interface AssessmentSummary {
461
- listServerStrategySummary?: StrategySummary[];
462
- listApplicationComponentStrategySummary?: StrategySummary[];
463
- listAntipatternSeveritySummary?: AntipatternSeveritySummary[];
464
- listApplicationComponentSummary?: ApplicationComponentSummary[];
465
- listServerSummary?: ServerSummary[];
466
- antipatternReportS3Object?: S3Object;
467
- antipatternReportStatus?: AntipatternReportStatus;
468
- antipatternReportStatusMessage?: string;
469
- lastAnalyzedTimestamp?: Date;
470
- listApplicationComponentStatusSummary?: ApplicationComponentStatusSummary[];
471
- listServerStatusSummary?: ServerStatusSummary[];
461
+ listServerStrategySummary?: StrategySummary[] | undefined;
462
+ listApplicationComponentStrategySummary?: StrategySummary[] | undefined;
463
+ listAntipatternSeveritySummary?: AntipatternSeveritySummary[] | undefined;
464
+ listApplicationComponentSummary?: ApplicationComponentSummary[] | undefined;
465
+ listServerSummary?: ServerSummary[] | undefined;
466
+ antipatternReportS3Object?: S3Object | undefined;
467
+ antipatternReportStatus?: AntipatternReportStatus | undefined;
468
+ antipatternReportStatusMessage?: string | undefined;
469
+ lastAnalyzedTimestamp?: Date | undefined;
470
+ listApplicationComponentStatusSummary?:
471
+ | ApplicationComponentStatusSummary[]
472
+ | undefined;
473
+ listServerStatusSummary?: ServerStatusSummary[] | undefined;
472
474
  }
473
475
  export declare const Condition: {
474
476
  readonly CONTAINS: "CONTAINS";
@@ -483,8 +485,8 @@ export interface AssessmentTarget {
483
485
  values: string[] | undefined;
484
486
  }
485
487
  export interface AssociatedApplication {
486
- name?: string;
487
- id?: string;
488
+ name?: string | undefined;
489
+ id?: string | undefined;
488
490
  }
489
491
  export declare const AuthType: {
490
492
  readonly CERT: "CERT";
@@ -496,10 +498,10 @@ export interface GetApplicationComponentDetailsRequest {
496
498
  applicationComponentId: string | undefined;
497
499
  }
498
500
  export interface GetApplicationComponentDetailsResponse {
499
- applicationComponentDetail?: ApplicationComponentDetail;
500
- associatedApplications?: AssociatedApplication[];
501
- moreApplicationResource?: boolean;
502
- associatedServerIds?: string[];
501
+ applicationComponentDetail?: ApplicationComponentDetail | undefined;
502
+ associatedApplications?: AssociatedApplication[] | undefined;
503
+ moreApplicationResource?: boolean | undefined;
504
+ associatedServerIds?: string[] | undefined;
503
505
  }
504
506
  export declare class InternalServerException extends __BaseException {
505
507
  readonly name: "InternalServerException";
@@ -526,25 +528,25 @@ export interface GetApplicationComponentStrategiesRequest {
526
528
  applicationComponentId: string | undefined;
527
529
  }
528
530
  export interface GetApplicationComponentStrategiesResponse {
529
- applicationComponentStrategies?: ApplicationComponentStrategy[];
531
+ applicationComponentStrategies?: ApplicationComponentStrategy[] | undefined;
530
532
  }
531
533
  export interface GetAssessmentRequest {
532
534
  id: string | undefined;
533
535
  }
534
536
  export interface DataCollectionDetails {
535
- status?: AssessmentStatus;
536
- servers?: number;
537
- failed?: number;
538
- success?: number;
539
- inProgress?: number;
540
- startTime?: Date;
541
- completionTime?: Date;
542
- statusMessage?: string;
537
+ status?: AssessmentStatus | undefined;
538
+ servers?: number | undefined;
539
+ failed?: number | undefined;
540
+ success?: number | undefined;
541
+ inProgress?: number | undefined;
542
+ startTime?: Date | undefined;
543
+ completionTime?: Date | undefined;
544
+ statusMessage?: string | undefined;
543
545
  }
544
546
  export interface GetAssessmentResponse {
545
- id?: string;
546
- dataCollectionDetails?: DataCollectionDetails;
547
- assessmentTargets?: AssessmentTarget[];
547
+ id?: string | undefined;
548
+ dataCollectionDetails?: DataCollectionDetails | undefined;
549
+ assessmentTargets?: AssessmentTarget[] | undefined;
548
550
  }
549
551
  export interface GetImportFileTaskRequest {
550
552
  id: string | undefined;
@@ -562,17 +564,17 @@ export declare const ImportFileTaskStatus: {
562
564
  export type ImportFileTaskStatus =
563
565
  (typeof ImportFileTaskStatus)[keyof typeof ImportFileTaskStatus];
564
566
  export interface GetImportFileTaskResponse {
565
- id?: string;
566
- status?: ImportFileTaskStatus;
567
- startTime?: Date;
568
- inputS3Bucket?: string;
569
- inputS3Key?: string;
570
- statusReportS3Bucket?: string;
571
- statusReportS3Key?: string;
572
- completionTime?: Date;
573
- numberOfRecordsSuccess?: number;
574
- numberOfRecordsFailed?: number;
575
- importName?: string;
567
+ id?: string | undefined;
568
+ status?: ImportFileTaskStatus | undefined;
569
+ startTime?: Date | undefined;
570
+ inputS3Bucket?: string | undefined;
571
+ inputS3Key?: string | undefined;
572
+ statusReportS3Bucket?: string | undefined;
573
+ statusReportS3Key?: string | undefined;
574
+ completionTime?: Date | undefined;
575
+ numberOfRecordsSuccess?: number | undefined;
576
+ numberOfRecordsFailed?: number | undefined;
577
+ importName?: string | undefined;
576
578
  }
577
579
  export declare class ValidationException extends __BaseException {
578
580
  readonly name: "ValidationException";
@@ -590,7 +592,7 @@ export declare class DependencyException extends __BaseException {
590
592
  }
591
593
  export interface GetLatestAssessmentIdRequest {}
592
594
  export interface GetLatestAssessmentIdResponse {
593
- id?: string;
595
+ id?: string | undefined;
594
596
  }
595
597
  export interface GetPortfolioPreferencesRequest {}
596
598
  export declare const DatabaseManagementPreference: {
@@ -623,7 +625,7 @@ export declare const HomogeneousTargetDatabaseEngine: {
623
625
  export type HomogeneousTargetDatabaseEngine =
624
626
  (typeof HomogeneousTargetDatabaseEngine)[keyof typeof HomogeneousTargetDatabaseEngine];
625
627
  export interface Homogeneous {
626
- targetDatabaseEngine?: HomogeneousTargetDatabaseEngine[];
628
+ targetDatabaseEngine?: HomogeneousTargetDatabaseEngine[] | undefined;
627
629
  }
628
630
  export declare const TargetDatabaseEngine: {
629
631
  readonly AMAZON_AURORA: "Amazon Aurora";
@@ -684,27 +686,27 @@ export declare namespace DatabaseMigrationPreference {
684
686
  ) => T;
685
687
  }
686
688
  export interface DatabasePreferences {
687
- databaseManagementPreference?: DatabaseManagementPreference;
688
- databaseMigrationPreference?: DatabaseMigrationPreference;
689
+ databaseManagementPreference?: DatabaseManagementPreference | undefined;
690
+ databaseMigrationPreference?: DatabaseMigrationPreference | undefined;
689
691
  }
690
692
  export interface BusinessGoals {
691
- speedOfMigration?: number;
692
- reduceOperationalOverheadWithManagedServices?: number;
693
- modernizeInfrastructureWithCloudNativeTechnologies?: number;
694
- licenseCostReduction?: number;
693
+ speedOfMigration?: number | undefined;
694
+ reduceOperationalOverheadWithManagedServices?: number | undefined;
695
+ modernizeInfrastructureWithCloudNativeTechnologies?: number | undefined;
696
+ licenseCostReduction?: number | undefined;
695
697
  }
696
698
  export interface PrioritizeBusinessGoals {
697
- businessGoals?: BusinessGoals;
699
+ businessGoals?: BusinessGoals | undefined;
698
700
  }
699
701
  export interface GetPortfolioPreferencesResponse {
700
- prioritizeBusinessGoals?: PrioritizeBusinessGoals;
701
- applicationPreferences?: ApplicationPreferences;
702
- databasePreferences?: DatabasePreferences;
703
- applicationMode?: ApplicationMode;
702
+ prioritizeBusinessGoals?: PrioritizeBusinessGoals | undefined;
703
+ applicationPreferences?: ApplicationPreferences | undefined;
704
+ databasePreferences?: DatabasePreferences | undefined;
705
+ applicationMode?: ApplicationMode | undefined;
704
706
  }
705
707
  export interface GetPortfolioSummaryRequest {}
706
708
  export interface GetPortfolioSummaryResponse {
707
- assessmentSummary?: AssessmentSummary;
709
+ assessmentSummary?: AssessmentSummary | undefined;
708
710
  }
709
711
  export interface GetRecommendationReportDetailsRequest {
710
712
  id: string | undefined;
@@ -717,21 +719,21 @@ export declare const RecommendationReportStatus: {
717
719
  export type RecommendationReportStatus =
718
720
  (typeof RecommendationReportStatus)[keyof typeof RecommendationReportStatus];
719
721
  export interface RecommendationReportDetails {
720
- status?: RecommendationReportStatus;
721
- statusMessage?: string;
722
- startTime?: Date;
723
- completionTime?: Date;
724
- s3Bucket?: string;
725
- s3Keys?: string[];
722
+ status?: RecommendationReportStatus | undefined;
723
+ statusMessage?: string | undefined;
724
+ startTime?: Date | undefined;
725
+ completionTime?: Date | undefined;
726
+ s3Bucket?: string | undefined;
727
+ s3Keys?: string[] | undefined;
726
728
  }
727
729
  export interface GetRecommendationReportDetailsResponse {
728
- id?: string;
729
- recommendationReportDetails?: RecommendationReportDetails;
730
+ id?: string | undefined;
731
+ recommendationReportDetails?: RecommendationReportDetails | undefined;
730
732
  }
731
733
  export interface GetServerDetailsRequest {
732
734
  serverId: string | undefined;
733
- nextToken?: string;
734
- maxResults?: number;
735
+ nextToken?: string | undefined;
736
+ maxResults?: number | undefined;
735
737
  }
736
738
  export declare const ServerErrorCategory: {
737
739
  readonly ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR";
@@ -743,7 +745,7 @@ export declare const ServerErrorCategory: {
743
745
  export type ServerErrorCategory =
744
746
  (typeof ServerErrorCategory)[keyof typeof ServerErrorCategory];
745
747
  export interface ServerError {
746
- serverErrorCategory?: ServerErrorCategory;
748
+ serverErrorCategory?: ServerErrorCategory | undefined;
747
749
  }
748
750
  export interface NetworkInfo {
749
751
  interfaceName: string | undefined;
@@ -757,47 +759,47 @@ export declare const OSType: {
757
759
  };
758
760
  export type OSType = (typeof OSType)[keyof typeof OSType];
759
761
  export interface OSInfo {
760
- type?: OSType;
761
- version?: string;
762
+ type?: OSType | undefined;
763
+ version?: string | undefined;
762
764
  }
763
765
  export interface SystemInfo {
764
- osInfo?: OSInfo;
765
- fileSystemType?: string;
766
- networkInfoList?: NetworkInfo[];
767
- cpuArchitecture?: string;
766
+ osInfo?: OSInfo | undefined;
767
+ fileSystemType?: string | undefined;
768
+ networkInfoList?: NetworkInfo[] | undefined;
769
+ cpuArchitecture?: string | undefined;
768
770
  }
769
771
  export interface ServerDetail {
770
- id?: string;
771
- name?: string;
772
- recommendationSet?: RecommendationSet;
773
- dataCollectionStatus?: RunTimeAssessmentStatus;
774
- statusMessage?: string;
775
- listAntipatternSeveritySummary?: AntipatternSeveritySummary[];
776
- systemInfo?: SystemInfo;
777
- applicationComponentStrategySummary?: StrategySummary[];
778
- antipatternReportS3Object?: S3Object;
779
- antipatternReportStatus?: AntipatternReportStatus;
780
- antipatternReportStatusMessage?: string;
781
- serverType?: string;
782
- lastAnalyzedTimestamp?: Date;
783
- serverError?: ServerError;
772
+ id?: string | undefined;
773
+ name?: string | undefined;
774
+ recommendationSet?: RecommendationSet | undefined;
775
+ dataCollectionStatus?: RunTimeAssessmentStatus | undefined;
776
+ statusMessage?: string | undefined;
777
+ listAntipatternSeveritySummary?: AntipatternSeveritySummary[] | undefined;
778
+ systemInfo?: SystemInfo | undefined;
779
+ applicationComponentStrategySummary?: StrategySummary[] | undefined;
780
+ antipatternReportS3Object?: S3Object | undefined;
781
+ antipatternReportStatus?: AntipatternReportStatus | undefined;
782
+ antipatternReportStatusMessage?: string | undefined;
783
+ serverType?: string | undefined;
784
+ lastAnalyzedTimestamp?: Date | undefined;
785
+ serverError?: ServerError | undefined;
784
786
  }
785
787
  export interface GetServerDetailsResponse {
786
- nextToken?: string;
787
- serverDetail?: ServerDetail;
788
- associatedApplications?: AssociatedApplication[];
788
+ nextToken?: string | undefined;
789
+ serverDetail?: ServerDetail | undefined;
790
+ associatedApplications?: AssociatedApplication[] | undefined;
789
791
  }
790
792
  export interface GetServerStrategiesRequest {
791
793
  serverId: string | undefined;
792
794
  }
793
795
  export interface ServerStrategy {
794
- recommendation?: RecommendationSet;
795
- status?: StrategyRecommendation;
796
- numberOfApplicationComponents?: number;
797
- isPreferred?: boolean;
796
+ recommendation?: RecommendationSet | undefined;
797
+ status?: StrategyRecommendation | undefined;
798
+ numberOfApplicationComponents?: number | undefined;
799
+ isPreferred?: boolean | undefined;
798
800
  }
799
801
  export interface GetServerStrategiesResponse {
800
- serverStrategies?: ServerStrategy[];
802
+ serverStrategies?: ServerStrategy[] | undefined;
801
803
  }
802
804
  export declare const SortOrder: {
803
805
  readonly ASC: "ASC";
@@ -805,13 +807,13 @@ export declare const SortOrder: {
805
807
  };
806
808
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
807
809
  export interface ListAnalyzableServersRequest {
808
- sort?: SortOrder;
809
- nextToken?: string;
810
- maxResults?: number;
810
+ sort?: SortOrder | undefined;
811
+ nextToken?: string | undefined;
812
+ maxResults?: number | undefined;
811
813
  }
812
814
  export interface ListAnalyzableServersResponse {
813
- analyzableServers?: AnalyzableServerSummary[];
814
- nextToken?: string;
815
+ analyzableServers?: AnalyzableServerSummary[] | undefined;
816
+ nextToken?: string | undefined;
815
817
  }
816
818
  export declare const GroupName: {
817
819
  readonly EXTERNAL_ID: "ExternalId";
@@ -819,20 +821,20 @@ export declare const GroupName: {
819
821
  };
820
822
  export type GroupName = (typeof GroupName)[keyof typeof GroupName];
821
823
  export interface Group {
822
- name?: GroupName;
823
- value?: string;
824
+ name?: GroupName | undefined;
825
+ value?: string | undefined;
824
826
  }
825
827
  export interface ListApplicationComponentsRequest {
826
- applicationComponentCriteria?: ApplicationComponentCriteria;
827
- filterValue?: string;
828
- sort?: SortOrder;
829
- groupIdFilter?: Group[];
830
- nextToken?: string;
831
- maxResults?: number;
828
+ applicationComponentCriteria?: ApplicationComponentCriteria | undefined;
829
+ filterValue?: string | undefined;
830
+ sort?: SortOrder | undefined;
831
+ groupIdFilter?: Group[] | undefined;
832
+ nextToken?: string | undefined;
833
+ maxResults?: number | undefined;
832
834
  }
833
835
  export interface ListApplicationComponentsResponse {
834
- applicationComponentInfos?: ApplicationComponentDetail[];
835
- nextToken?: string;
836
+ applicationComponentInfos?: ApplicationComponentDetail[] | undefined;
837
+ nextToken?: string | undefined;
836
838
  }
837
839
  export declare class ServiceLinkedRoleLockClientException extends __BaseException {
838
840
  readonly name: "ServiceLinkedRoleLockClientException";
@@ -845,8 +847,8 @@ export declare class ServiceLinkedRoleLockClientException extends __BaseExceptio
845
847
  );
846
848
  }
847
849
  export interface ListCollectorsRequest {
848
- nextToken?: string;
849
- maxResults?: number;
850
+ nextToken?: string | undefined;
851
+ maxResults?: number | undefined;
850
852
  }
851
853
  export declare const CollectorHealth: {
852
854
  readonly COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY";
@@ -855,24 +857,24 @@ export declare const CollectorHealth: {
855
857
  export type CollectorHealth =
856
858
  (typeof CollectorHealth)[keyof typeof CollectorHealth];
857
859
  export interface IPAddressBasedRemoteInfo {
858
- ipAddressConfigurationTimeStamp?: string;
859
- authType?: AuthType;
860
- osType?: OSType;
860
+ ipAddressConfigurationTimeStamp?: string | undefined;
861
+ authType?: AuthType | undefined;
862
+ osType?: OSType | undefined;
861
863
  }
862
864
  export declare const PipelineType: {
863
865
  readonly AZURE_DEVOPS: "AZURE_DEVOPS";
864
866
  };
865
867
  export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
866
868
  export interface PipelineInfo {
867
- pipelineType?: PipelineType;
868
- pipelineConfigurationTimeStamp?: string;
869
+ pipelineType?: PipelineType | undefined;
870
+ pipelineConfigurationTimeStamp?: string | undefined;
869
871
  }
870
872
  export interface RemoteSourceCodeAnalysisServerInfo {
871
- remoteSourceCodeAnalysisServerConfigurationTimestamp?: string;
873
+ remoteSourceCodeAnalysisServerConfigurationTimestamp?: string | undefined;
872
874
  }
873
875
  export interface VcenterBasedRemoteInfo {
874
- vcenterConfigurationTimeStamp?: string;
875
- osType?: OSType;
876
+ vcenterConfigurationTimeStamp?: string | undefined;
877
+ osType?: OSType | undefined;
876
878
  }
877
879
  export declare const VersionControlType: {
878
880
  readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
@@ -882,50 +884,52 @@ export declare const VersionControlType: {
882
884
  export type VersionControlType =
883
885
  (typeof VersionControlType)[keyof typeof VersionControlType];
884
886
  export interface VersionControlInfo {
885
- versionControlType?: VersionControlType;
886
- versionControlConfigurationTimeStamp?: string;
887
+ versionControlType?: VersionControlType | undefined;
888
+ versionControlConfigurationTimeStamp?: string | undefined;
887
889
  }
888
890
  export interface ConfigurationSummary {
889
- vcenterBasedRemoteInfoList?: VcenterBasedRemoteInfo[];
890
- ipAddressBasedRemoteInfoList?: IPAddressBasedRemoteInfo[];
891
- versionControlInfoList?: VersionControlInfo[];
892
- pipelineInfoList?: PipelineInfo[];
893
- remoteSourceCodeAnalysisServerInfo?: RemoteSourceCodeAnalysisServerInfo;
891
+ vcenterBasedRemoteInfoList?: VcenterBasedRemoteInfo[] | undefined;
892
+ ipAddressBasedRemoteInfoList?: IPAddressBasedRemoteInfo[] | undefined;
893
+ versionControlInfoList?: VersionControlInfo[] | undefined;
894
+ pipelineInfoList?: PipelineInfo[] | undefined;
895
+ remoteSourceCodeAnalysisServerInfo?:
896
+ | RemoteSourceCodeAnalysisServerInfo
897
+ | undefined;
894
898
  }
895
899
  export interface Collector {
896
- collectorId?: string;
897
- ipAddress?: string;
898
- hostName?: string;
899
- collectorHealth?: CollectorHealth;
900
- collectorVersion?: string;
901
- registeredTimeStamp?: string;
902
- lastActivityTimeStamp?: string;
903
- configurationSummary?: ConfigurationSummary;
900
+ collectorId?: string | undefined;
901
+ ipAddress?: string | undefined;
902
+ hostName?: string | undefined;
903
+ collectorHealth?: CollectorHealth | undefined;
904
+ collectorVersion?: string | undefined;
905
+ registeredTimeStamp?: string | undefined;
906
+ lastActivityTimeStamp?: string | undefined;
907
+ configurationSummary?: ConfigurationSummary | undefined;
904
908
  }
905
909
  export interface ListCollectorsResponse {
906
- Collectors?: Collector[];
907
- nextToken?: string;
910
+ Collectors?: Collector[] | undefined;
911
+ nextToken?: string | undefined;
908
912
  }
909
913
  export interface ListImportFileTaskRequest {
910
- nextToken?: string;
911
- maxResults?: number;
914
+ nextToken?: string | undefined;
915
+ maxResults?: number | undefined;
912
916
  }
913
917
  export interface ImportFileTaskInformation {
914
- id?: string;
915
- status?: ImportFileTaskStatus;
916
- startTime?: Date;
917
- inputS3Bucket?: string;
918
- inputS3Key?: string;
919
- statusReportS3Bucket?: string;
920
- statusReportS3Key?: string;
921
- completionTime?: Date;
922
- numberOfRecordsSuccess?: number;
923
- numberOfRecordsFailed?: number;
924
- importName?: string;
918
+ id?: string | undefined;
919
+ status?: ImportFileTaskStatus | undefined;
920
+ startTime?: Date | undefined;
921
+ inputS3Bucket?: string | undefined;
922
+ inputS3Key?: string | undefined;
923
+ statusReportS3Bucket?: string | undefined;
924
+ statusReportS3Key?: string | undefined;
925
+ completionTime?: Date | undefined;
926
+ numberOfRecordsSuccess?: number | undefined;
927
+ numberOfRecordsFailed?: number | undefined;
928
+ importName?: string | undefined;
925
929
  }
926
930
  export interface ListImportFileTaskResponse {
927
- taskInfos?: ImportFileTaskInformation[];
928
- nextToken?: string;
931
+ taskInfos?: ImportFileTaskInformation[] | undefined;
932
+ nextToken?: string | undefined;
929
933
  }
930
934
  export declare const ServerCriteria: {
931
935
  readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
@@ -939,16 +943,16 @@ export declare const ServerCriteria: {
939
943
  export type ServerCriteria =
940
944
  (typeof ServerCriteria)[keyof typeof ServerCriteria];
941
945
  export interface ListServersRequest {
942
- serverCriteria?: ServerCriteria;
943
- filterValue?: string;
944
- sort?: SortOrder;
945
- groupIdFilter?: Group[];
946
- nextToken?: string;
947
- maxResults?: number;
946
+ serverCriteria?: ServerCriteria | undefined;
947
+ filterValue?: string | undefined;
948
+ sort?: SortOrder | undefined;
949
+ groupIdFilter?: Group[] | undefined;
950
+ nextToken?: string | undefined;
951
+ maxResults?: number | undefined;
948
952
  }
949
953
  export interface ListServersResponse {
950
- serverInfos?: ServerDetail[];
951
- nextToken?: string;
954
+ serverInfos?: ServerDetail[] | undefined;
955
+ nextToken?: string | undefined;
952
956
  }
953
957
  export declare class ConflictException extends __BaseException {
954
958
  readonly name: "ConflictException";
@@ -956,10 +960,10 @@ export declare class ConflictException extends __BaseException {
956
960
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
957
961
  }
958
962
  export interface PutPortfolioPreferencesRequest {
959
- prioritizeBusinessGoals?: PrioritizeBusinessGoals;
960
- applicationPreferences?: ApplicationPreferences;
961
- databasePreferences?: DatabasePreferences;
962
- applicationMode?: ApplicationMode;
963
+ prioritizeBusinessGoals?: PrioritizeBusinessGoals | undefined;
964
+ applicationPreferences?: ApplicationPreferences | undefined;
965
+ databasePreferences?: DatabasePreferences | undefined;
966
+ applicationMode?: ApplicationMode | undefined;
963
967
  }
964
968
  export interface PutPortfolioPreferencesResponse {}
965
969
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -970,13 +974,13 @@ export declare class ServiceQuotaExceededException extends __BaseException {
970
974
  );
971
975
  }
972
976
  export interface StartAssessmentRequest {
973
- s3bucketForAnalysisData?: string;
974
- s3bucketForReportData?: string;
975
- assessmentTargets?: AssessmentTarget[];
976
- assessmentDataSourceType?: AssessmentDataSourceType;
977
+ s3bucketForAnalysisData?: string | undefined;
978
+ s3bucketForReportData?: string | undefined;
979
+ assessmentTargets?: AssessmentTarget[] | undefined;
980
+ assessmentDataSourceType?: AssessmentDataSourceType | undefined;
977
981
  }
978
982
  export interface StartAssessmentResponse {
979
- assessmentId?: string;
983
+ assessmentId?: string | undefined;
980
984
  }
981
985
  export declare const DataSourceType: {
982
986
  readonly ADS: "ApplicationDiscoveryService";
@@ -990,12 +994,12 @@ export interface StartImportFileTaskRequest {
990
994
  name: string | undefined;
991
995
  S3Bucket: string | undefined;
992
996
  s3key: string | undefined;
993
- dataSourceType?: DataSourceType;
994
- groupId?: Group[];
995
- s3bucketForReportData?: string;
997
+ dataSourceType?: DataSourceType | undefined;
998
+ groupId?: Group[] | undefined;
999
+ s3bucketForReportData?: string | undefined;
996
1000
  }
997
1001
  export interface StartImportFileTaskResponse {
998
- id?: string;
1002
+ id?: string | undefined;
999
1003
  }
1000
1004
  export declare const OutputFormat: {
1001
1005
  readonly Excel: "Excel";
@@ -1003,11 +1007,11 @@ export declare const OutputFormat: {
1003
1007
  };
1004
1008
  export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
1005
1009
  export interface StartRecommendationReportGenerationRequest {
1006
- outputFormat?: OutputFormat;
1007
- groupIdFilter?: Group[];
1010
+ outputFormat?: OutputFormat | undefined;
1011
+ groupIdFilter?: Group[] | undefined;
1008
1012
  }
1009
1013
  export interface StartRecommendationReportGenerationResponse {
1010
- id?: string;
1014
+ id?: string | undefined;
1011
1015
  }
1012
1016
  export interface StopAssessmentRequest {
1013
1017
  assessmentId: string | undefined;
@@ -1021,30 +1025,30 @@ export declare const VersionControl: {
1021
1025
  export type VersionControl =
1022
1026
  (typeof VersionControl)[keyof typeof VersionControl];
1023
1027
  export interface SourceCode {
1024
- versionControl?: VersionControl;
1025
- sourceVersion?: string;
1026
- location?: string;
1027
- projectName?: string;
1028
+ versionControl?: VersionControl | undefined;
1029
+ sourceVersion?: string | undefined;
1030
+ location?: string | undefined;
1031
+ projectName?: string | undefined;
1028
1032
  }
1029
1033
  export interface StrategyOption {
1030
- strategy?: Strategy;
1031
- toolName?: TransformationToolName;
1032
- targetDestination?: TargetDestination;
1033
- isPreferred?: boolean;
1034
+ strategy?: Strategy | undefined;
1035
+ toolName?: TransformationToolName | undefined;
1036
+ targetDestination?: TargetDestination | undefined;
1037
+ isPreferred?: boolean | undefined;
1034
1038
  }
1035
1039
  export interface UpdateApplicationComponentConfigRequest {
1036
1040
  applicationComponentId: string | undefined;
1037
- inclusionStatus?: InclusionStatus;
1038
- strategyOption?: StrategyOption;
1039
- sourceCodeList?: SourceCode[];
1040
- secretsManagerKey?: string;
1041
- configureOnly?: boolean;
1042
- appType?: AppType;
1041
+ inclusionStatus?: InclusionStatus | undefined;
1042
+ strategyOption?: StrategyOption | undefined;
1043
+ sourceCodeList?: SourceCode[] | undefined;
1044
+ secretsManagerKey?: string | undefined;
1045
+ configureOnly?: boolean | undefined;
1046
+ appType?: AppType | undefined;
1043
1047
  }
1044
1048
  export interface UpdateApplicationComponentConfigResponse {}
1045
1049
  export interface UpdateServerConfigRequest {
1046
1050
  serverId: string | undefined;
1047
- strategyOption?: StrategyOption;
1051
+ strategyOption?: StrategyOption | undefined;
1048
1052
  }
1049
1053
  export interface UpdateServerConfigResponse {}
1050
1054
  export declare const UpdateApplicationComponentConfigRequestFilterSensitiveLog: (