@aws-sdk/client-migrationhubstrategy 3.936.0 → 3.940.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +350 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +305 -0
- package/dist-es/models/models_0.js +1 -305
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +657 -0
- package/dist-types/models/models_0.d.ts +1 -657
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +381 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -381
- package/package.json +5 -5
|
@@ -1,34 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* @public
|
|
3
|
-
* @enum
|
|
4
|
-
*/
|
|
5
|
-
export declare const RuntimeAnalysisStatus: {
|
|
6
|
-
readonly ANALYSIS_FAILED: "ANALYSIS_FAILED";
|
|
7
|
-
readonly ANALYSIS_STARTED: "ANALYSIS_STARTED";
|
|
8
|
-
readonly ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS";
|
|
9
|
-
readonly ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export type RuntimeAnalysisStatus = (typeof RuntimeAnalysisStatus)[keyof typeof RuntimeAnalysisStatus];
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const SrcCodeOrDbAnalysisStatus: {
|
|
20
|
-
readonly ANALYSIS_FAILED: "ANALYSIS_FAILED";
|
|
21
|
-
readonly ANALYSIS_PARTIAL_SUCCESS: "ANALYSIS_PARTIAL_SUCCESS";
|
|
22
|
-
readonly ANALYSIS_STARTED: "ANALYSIS_STARTED";
|
|
23
|
-
readonly ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS";
|
|
24
|
-
readonly ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED";
|
|
25
|
-
readonly CONFIGURED: "CONFIGURED";
|
|
26
|
-
readonly UNCONFIGURED: "UNCONFIGURED";
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export type SrcCodeOrDbAnalysisStatus = (typeof SrcCodeOrDbAnalysisStatus)[keyof typeof SrcCodeOrDbAnalysisStatus];
|
|
1
|
+
import { AnalysisType, AntipatternReportStatus, ApplicationComponentCriteria, ApplicationMode, AppType, AppUnitErrorCategory, AssessmentDataSourceType, AssessmentStatus, AuthType, AwsManagedTargetDestination, BinaryAnalyzerName, CollectorHealth, Condition, DatabaseManagementPreference, DataSourceType, GroupName, HeterogeneousTargetDatabaseEngine, HomogeneousTargetDatabaseEngine, ImportFileTaskStatus, InclusionStatus, NoPreferenceTargetDestination, OSType, OutputFormat, PipelineType, RecommendationReportStatus, ResourceSubType, RuntimeAnalysisStatus, RunTimeAnalyzerName, RunTimeAssessmentStatus, SelfManageTargetDestination, ServerCriteria, ServerErrorCategory, ServerOsType, Severity, SortOrder, SourceCodeAnalyzerName, SrcCodeOrDbAnalysisStatus, Strategy, StrategyRecommendation, TargetDatabaseEngine, TargetDestination, TransformationToolName, VersionControl, VersionControlType } from "./enums";
|
|
32
2
|
/**
|
|
33
3
|
* <p>A combination of existing analysis statuses.</p>
|
|
34
4
|
* @public
|
|
@@ -74,20 +44,6 @@ export declare namespace AnalysisStatusUnion {
|
|
|
74
44
|
_: (name: string, value: any) => T;
|
|
75
45
|
}
|
|
76
46
|
}
|
|
77
|
-
/**
|
|
78
|
-
* @public
|
|
79
|
-
* @enum
|
|
80
|
-
*/
|
|
81
|
-
export declare const AnalysisType: {
|
|
82
|
-
readonly BINARY_ANALYSIS: "BINARY_ANALYSIS";
|
|
83
|
-
readonly DATABASE_ANALYSIS: "DATABASE_ANALYSIS";
|
|
84
|
-
readonly RUNTIME_ANALYSIS: "RUNTIME_ANALYSIS";
|
|
85
|
-
readonly SOURCE_CODE_ANALYSIS: "SOURCE_CODE_ANALYSIS";
|
|
86
|
-
};
|
|
87
|
-
/**
|
|
88
|
-
* @public
|
|
89
|
-
*/
|
|
90
|
-
export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
|
|
91
47
|
/**
|
|
92
48
|
* Summary information about an analyzable server.
|
|
93
49
|
* @public
|
|
@@ -114,47 +70,6 @@ export interface AnalyzableServerSummary {
|
|
|
114
70
|
*/
|
|
115
71
|
vmId?: string | undefined;
|
|
116
72
|
}
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
* @enum
|
|
120
|
-
*/
|
|
121
|
-
export declare const BinaryAnalyzerName: {
|
|
122
|
-
readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
|
|
123
|
-
readonly DLL_ANALYZER: "DLL_ANALYZER";
|
|
124
|
-
};
|
|
125
|
-
/**
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
export type BinaryAnalyzerName = (typeof BinaryAnalyzerName)[keyof typeof BinaryAnalyzerName];
|
|
129
|
-
/**
|
|
130
|
-
* @public
|
|
131
|
-
* @enum
|
|
132
|
-
*/
|
|
133
|
-
export declare const RunTimeAnalyzerName: {
|
|
134
|
-
readonly A2C_ANALYZER: "A2C_ANALYZER";
|
|
135
|
-
readonly DATABASE_ANALYZER: "DATABASE_ANALYZER";
|
|
136
|
-
readonly EMP_PA_ANALYZER: "EMP_PA_ANALYZER";
|
|
137
|
-
readonly REHOST_ANALYZER: "REHOST_ANALYZER";
|
|
138
|
-
readonly SCT_ANALYZER: "SCT_ANALYZER";
|
|
139
|
-
};
|
|
140
|
-
/**
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
export type RunTimeAnalyzerName = (typeof RunTimeAnalyzerName)[keyof typeof RunTimeAnalyzerName];
|
|
144
|
-
/**
|
|
145
|
-
* @public
|
|
146
|
-
* @enum
|
|
147
|
-
*/
|
|
148
|
-
export declare const SourceCodeAnalyzerName: {
|
|
149
|
-
readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
|
|
150
|
-
readonly CSHARP_ANALYZER: "CSHARP_ANALYZER";
|
|
151
|
-
readonly JAVA_ANALYZER: "JAVA_ANALYZER";
|
|
152
|
-
readonly PORTING_ASSISTANT: "PORTING_ASSISTANT";
|
|
153
|
-
};
|
|
154
|
-
/**
|
|
155
|
-
* @public
|
|
156
|
-
*/
|
|
157
|
-
export type SourceCodeAnalyzerName = (typeof SourceCodeAnalyzerName)[keyof typeof SourceCodeAnalyzerName];
|
|
158
73
|
/**
|
|
159
74
|
* <p>The combination of the existing analyzers.</p>
|
|
160
75
|
* @public
|
|
@@ -230,19 +145,6 @@ export interface S3Object {
|
|
|
230
145
|
*/
|
|
231
146
|
s3key?: string | undefined;
|
|
232
147
|
}
|
|
233
|
-
/**
|
|
234
|
-
* @public
|
|
235
|
-
* @enum
|
|
236
|
-
*/
|
|
237
|
-
export declare const AntipatternReportStatus: {
|
|
238
|
-
readonly FAILED: "FAILED";
|
|
239
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
240
|
-
readonly SUCCESS: "SUCCESS";
|
|
241
|
-
};
|
|
242
|
-
/**
|
|
243
|
-
* @public
|
|
244
|
-
*/
|
|
245
|
-
export type AntipatternReportStatus = (typeof AntipatternReportStatus)[keyof typeof AntipatternReportStatus];
|
|
246
148
|
/**
|
|
247
149
|
* <p>The anti-pattern report result.</p>
|
|
248
150
|
* @public
|
|
@@ -269,19 +171,6 @@ export interface AntipatternReportResult {
|
|
|
269
171
|
*/
|
|
270
172
|
antipatternReportStatusMessage?: string | undefined;
|
|
271
173
|
}
|
|
272
|
-
/**
|
|
273
|
-
* @public
|
|
274
|
-
* @enum
|
|
275
|
-
*/
|
|
276
|
-
export declare const Severity: {
|
|
277
|
-
readonly HIGH: "HIGH";
|
|
278
|
-
readonly LOW: "LOW";
|
|
279
|
-
readonly MEDIUM: "MEDIUM";
|
|
280
|
-
};
|
|
281
|
-
/**
|
|
282
|
-
* @public
|
|
283
|
-
*/
|
|
284
|
-
export type Severity = (typeof Severity)[keyof typeof Severity];
|
|
285
174
|
/**
|
|
286
175
|
* <p> Contains the summary of anti-patterns and their severity. </p>
|
|
287
176
|
* @public
|
|
@@ -298,71 +187,6 @@ export interface AntipatternSeveritySummary {
|
|
|
298
187
|
*/
|
|
299
188
|
count?: number | undefined;
|
|
300
189
|
}
|
|
301
|
-
/**
|
|
302
|
-
* @public
|
|
303
|
-
* @enum
|
|
304
|
-
*/
|
|
305
|
-
export declare const ApplicationComponentCriteria: {
|
|
306
|
-
readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
|
|
307
|
-
readonly APP_NAME: "APP_NAME";
|
|
308
|
-
readonly APP_TYPE: "APP_TYPE";
|
|
309
|
-
readonly DESTINATION: "DESTINATION";
|
|
310
|
-
readonly ERROR_CATEGORY: "ERROR_CATEGORY";
|
|
311
|
-
readonly NOT_DEFINED: "NOT_DEFINED";
|
|
312
|
-
readonly SERVER_ID: "SERVER_ID";
|
|
313
|
-
readonly STRATEGY: "STRATEGY";
|
|
314
|
-
};
|
|
315
|
-
/**
|
|
316
|
-
* @public
|
|
317
|
-
*/
|
|
318
|
-
export type ApplicationComponentCriteria = (typeof ApplicationComponentCriteria)[keyof typeof ApplicationComponentCriteria];
|
|
319
|
-
/**
|
|
320
|
-
* @public
|
|
321
|
-
* @enum
|
|
322
|
-
*/
|
|
323
|
-
export declare const AppType: {
|
|
324
|
-
readonly IIS: "IIS";
|
|
325
|
-
readonly cassandra: "Cassandra";
|
|
326
|
-
readonly db2: "DB2";
|
|
327
|
-
readonly dotNetFramework: "DotNetFramework";
|
|
328
|
-
readonly dotnet: "Dotnet";
|
|
329
|
-
readonly dotnetcore: "DotnetCore";
|
|
330
|
-
readonly java: "Java";
|
|
331
|
-
readonly jboss: "JBoss";
|
|
332
|
-
readonly mariadb: "Maria DB";
|
|
333
|
-
readonly mongodb: "Mongo DB";
|
|
334
|
-
readonly mysql: "MySQL";
|
|
335
|
-
readonly oracle: "Oracle";
|
|
336
|
-
readonly other: "Other";
|
|
337
|
-
readonly postgresqlserver: "PostgreSQLServer";
|
|
338
|
-
readonly spring: "Spring";
|
|
339
|
-
readonly sqlServer: "SQLServer";
|
|
340
|
-
readonly sybase: "Sybase";
|
|
341
|
-
readonly tomcat: "Tomcat";
|
|
342
|
-
readonly unknown: "Unknown";
|
|
343
|
-
readonly visualbasic: "Visual Basic";
|
|
344
|
-
readonly weblogic: "Oracle WebLogic";
|
|
345
|
-
readonly websphere: "IBM WebSphere";
|
|
346
|
-
};
|
|
347
|
-
/**
|
|
348
|
-
* @public
|
|
349
|
-
*/
|
|
350
|
-
export type AppType = (typeof AppType)[keyof typeof AppType];
|
|
351
|
-
/**
|
|
352
|
-
* @public
|
|
353
|
-
* @enum
|
|
354
|
-
*/
|
|
355
|
-
export declare const AppUnitErrorCategory: {
|
|
356
|
-
readonly CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR";
|
|
357
|
-
readonly CREDENTIAL_ERROR: "CREDENTIAL_ERROR";
|
|
358
|
-
readonly OTHER_ERROR: "OTHER_ERROR";
|
|
359
|
-
readonly PERMISSION_ERROR: "PERMISSION_ERROR";
|
|
360
|
-
readonly UNSUPPORTED_ERROR: "UNSUPPORTED_ERROR";
|
|
361
|
-
};
|
|
362
|
-
/**
|
|
363
|
-
* @public
|
|
364
|
-
*/
|
|
365
|
-
export type AppUnitErrorCategory = (typeof AppUnitErrorCategory)[keyof typeof AppUnitErrorCategory];
|
|
366
190
|
/**
|
|
367
191
|
* <p>Error in the analysis of the application unit.</p>
|
|
368
192
|
* @public
|
|
@@ -386,79 +210,6 @@ export interface DatabaseConfigDetail {
|
|
|
386
210
|
*/
|
|
387
211
|
secretName?: string | undefined;
|
|
388
212
|
}
|
|
389
|
-
/**
|
|
390
|
-
* @public
|
|
391
|
-
* @enum
|
|
392
|
-
*/
|
|
393
|
-
export declare const InclusionStatus: {
|
|
394
|
-
readonly EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment";
|
|
395
|
-
readonly INCLUDE_IN_RECOMMENDATION: "includeInAssessment";
|
|
396
|
-
};
|
|
397
|
-
/**
|
|
398
|
-
* @public
|
|
399
|
-
*/
|
|
400
|
-
export type InclusionStatus = (typeof InclusionStatus)[keyof typeof InclusionStatus];
|
|
401
|
-
/**
|
|
402
|
-
* @public
|
|
403
|
-
* @enum
|
|
404
|
-
*/
|
|
405
|
-
export declare const Strategy: {
|
|
406
|
-
readonly REFACTOR: "Refactor";
|
|
407
|
-
readonly REHOST: "Rehost";
|
|
408
|
-
readonly RELOCATE: "Relocate";
|
|
409
|
-
readonly REPLATFORM: "Replatform";
|
|
410
|
-
readonly REPURCHASE: "Repurchase";
|
|
411
|
-
readonly RETAIN: "Retain";
|
|
412
|
-
readonly RETIREMENT: "Retirement";
|
|
413
|
-
};
|
|
414
|
-
/**
|
|
415
|
-
* @public
|
|
416
|
-
*/
|
|
417
|
-
export type Strategy = (typeof Strategy)[keyof typeof Strategy];
|
|
418
|
-
/**
|
|
419
|
-
* @public
|
|
420
|
-
* @enum
|
|
421
|
-
*/
|
|
422
|
-
export declare const TargetDestination: {
|
|
423
|
-
readonly AMAZON_DOCUMENTDB: "Amazon DocumentDB";
|
|
424
|
-
readonly AMAZON_DYNAMODB: "Amazon DynamoDB";
|
|
425
|
-
readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
|
|
426
|
-
readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
|
|
427
|
-
readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
|
|
428
|
-
readonly AMAZON_RDS: "Amazon Relational Database Service";
|
|
429
|
-
readonly AMAZON_RDS_MYSQL: "Amazon Relational Database Service on MySQL";
|
|
430
|
-
readonly AMAZON_RDS_POSTGRESQL: "Amazon Relational Database Service on PostgreSQL";
|
|
431
|
-
readonly AURORA_MYSQL: "Aurora MySQL";
|
|
432
|
-
readonly AURORA_POSTGRESQL: "Aurora PostgreSQL";
|
|
433
|
-
readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
|
|
434
|
-
readonly AWS_FARGATE: "AWS Fargate";
|
|
435
|
-
readonly BABELFISH_AURORA_POSTGRESQL: "Babelfish for Aurora PostgreSQL";
|
|
436
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
437
|
-
};
|
|
438
|
-
/**
|
|
439
|
-
* @public
|
|
440
|
-
*/
|
|
441
|
-
export type TargetDestination = (typeof TargetDestination)[keyof typeof TargetDestination];
|
|
442
|
-
/**
|
|
443
|
-
* @public
|
|
444
|
-
* @enum
|
|
445
|
-
*/
|
|
446
|
-
export declare const TransformationToolName: {
|
|
447
|
-
readonly APP2CONTAINER: "App2Container";
|
|
448
|
-
readonly DMS: "Database Migration Service";
|
|
449
|
-
readonly EMP: "End of Support Migration";
|
|
450
|
-
readonly IN_PLACE_OS_UPGRADE: "In Place Operating System Upgrade";
|
|
451
|
-
readonly MGN: "Application Migration Service";
|
|
452
|
-
readonly NATIVE_SQL: "Native SQL Server Backup/Restore";
|
|
453
|
-
readonly PORTING_ASSISTANT: "Porting Assistant For .NET";
|
|
454
|
-
readonly SCT: "Schema Conversion Tool";
|
|
455
|
-
readonly STRATEGY_RECOMMENDATION_SUPPORT: "Strategy Recommendation Support";
|
|
456
|
-
readonly WWAMA: "Windows Web Application Migration Assistant";
|
|
457
|
-
};
|
|
458
|
-
/**
|
|
459
|
-
* @public
|
|
460
|
-
*/
|
|
461
|
-
export type TransformationToolName = (typeof TransformationToolName)[keyof typeof TransformationToolName];
|
|
462
213
|
/**
|
|
463
214
|
* <p> Information of the transformation tool that can be used to migrate and modernize the
|
|
464
215
|
* application. </p>
|
|
@@ -502,19 +253,6 @@ export interface RecommendationSet {
|
|
|
502
253
|
*/
|
|
503
254
|
strategy?: Strategy | undefined;
|
|
504
255
|
}
|
|
505
|
-
/**
|
|
506
|
-
* @public
|
|
507
|
-
* @enum
|
|
508
|
-
*/
|
|
509
|
-
export declare const ResourceSubType: {
|
|
510
|
-
readonly DATABASE: "Database";
|
|
511
|
-
readonly DATABASE_PROCESS: "DatabaseProcess";
|
|
512
|
-
readonly PROCESS: "Process";
|
|
513
|
-
};
|
|
514
|
-
/**
|
|
515
|
-
* @public
|
|
516
|
-
*/
|
|
517
|
-
export type ResourceSubType = (typeof ResourceSubType)[keyof typeof ResourceSubType];
|
|
518
256
|
/**
|
|
519
257
|
* <p>The error in server analysis.</p>
|
|
520
258
|
* @public
|
|
@@ -709,20 +447,6 @@ export interface ApplicationComponentStatusSummary {
|
|
|
709
447
|
*/
|
|
710
448
|
count?: number | undefined;
|
|
711
449
|
}
|
|
712
|
-
/**
|
|
713
|
-
* @public
|
|
714
|
-
* @enum
|
|
715
|
-
*/
|
|
716
|
-
export declare const StrategyRecommendation: {
|
|
717
|
-
readonly NOT_RECOMMENDED: "notRecommended";
|
|
718
|
-
readonly POTENTIAL: "potential";
|
|
719
|
-
readonly RECOMMENDED: "recommended";
|
|
720
|
-
readonly VIABLE_OPTION: "viableOption";
|
|
721
|
-
};
|
|
722
|
-
/**
|
|
723
|
-
* @public
|
|
724
|
-
*/
|
|
725
|
-
export type StrategyRecommendation = (typeof StrategyRecommendation)[keyof typeof StrategyRecommendation];
|
|
726
450
|
/**
|
|
727
451
|
* <p> Contains information about a strategy recommendation for an application component.
|
|
728
452
|
* </p>
|
|
@@ -761,32 +485,6 @@ export interface ApplicationComponentSummary {
|
|
|
761
485
|
*/
|
|
762
486
|
count?: number | undefined;
|
|
763
487
|
}
|
|
764
|
-
/**
|
|
765
|
-
* @public
|
|
766
|
-
* @enum
|
|
767
|
-
*/
|
|
768
|
-
export declare const ApplicationMode: {
|
|
769
|
-
readonly ALL: "ALL";
|
|
770
|
-
readonly KNOWN: "KNOWN";
|
|
771
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
772
|
-
};
|
|
773
|
-
/**
|
|
774
|
-
* @public
|
|
775
|
-
*/
|
|
776
|
-
export type ApplicationMode = (typeof ApplicationMode)[keyof typeof ApplicationMode];
|
|
777
|
-
/**
|
|
778
|
-
* @public
|
|
779
|
-
* @enum
|
|
780
|
-
*/
|
|
781
|
-
export declare const AwsManagedTargetDestination: {
|
|
782
|
-
readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
|
|
783
|
-
readonly AWS_FARGATE: "AWS Fargate";
|
|
784
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
785
|
-
};
|
|
786
|
-
/**
|
|
787
|
-
* @public
|
|
788
|
-
*/
|
|
789
|
-
export type AwsManagedTargetDestination = (typeof AwsManagedTargetDestination)[keyof typeof AwsManagedTargetDestination];
|
|
790
488
|
/**
|
|
791
489
|
* <p> Object containing the choice of application destination that you specify. </p>
|
|
792
490
|
* @public
|
|
@@ -798,22 +496,6 @@ export interface AwsManagedResources {
|
|
|
798
496
|
*/
|
|
799
497
|
targetDestination: AwsManagedTargetDestination[] | undefined;
|
|
800
498
|
}
|
|
801
|
-
/**
|
|
802
|
-
* @public
|
|
803
|
-
* @enum
|
|
804
|
-
*/
|
|
805
|
-
export declare const NoPreferenceTargetDestination: {
|
|
806
|
-
readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
|
|
807
|
-
readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
|
|
808
|
-
readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
|
|
809
|
-
readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
|
|
810
|
-
readonly AWS_FARGATE: "AWS Fargate";
|
|
811
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
812
|
-
};
|
|
813
|
-
/**
|
|
814
|
-
* @public
|
|
815
|
-
*/
|
|
816
|
-
export type NoPreferenceTargetDestination = (typeof NoPreferenceTargetDestination)[keyof typeof NoPreferenceTargetDestination];
|
|
817
499
|
/**
|
|
818
500
|
* <p> Object containing the choice of application destination that you specify. </p>
|
|
819
501
|
* @public
|
|
@@ -825,20 +507,6 @@ export interface NoManagementPreference {
|
|
|
825
507
|
*/
|
|
826
508
|
targetDestination: NoPreferenceTargetDestination[] | undefined;
|
|
827
509
|
}
|
|
828
|
-
/**
|
|
829
|
-
* @public
|
|
830
|
-
* @enum
|
|
831
|
-
*/
|
|
832
|
-
export declare const SelfManageTargetDestination: {
|
|
833
|
-
readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
|
|
834
|
-
readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
|
|
835
|
-
readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
|
|
836
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
837
|
-
};
|
|
838
|
-
/**
|
|
839
|
-
* @public
|
|
840
|
-
*/
|
|
841
|
-
export type SelfManageTargetDestination = (typeof SelfManageTargetDestination)[keyof typeof SelfManageTargetDestination];
|
|
842
510
|
/**
|
|
843
511
|
* <p> Self-managed resources. </p>
|
|
844
512
|
* @public
|
|
@@ -920,33 +588,6 @@ export interface ApplicationPreferences {
|
|
|
920
588
|
*/
|
|
921
589
|
managementPreference?: ManagementPreference | undefined;
|
|
922
590
|
}
|
|
923
|
-
/**
|
|
924
|
-
* @public
|
|
925
|
-
* @enum
|
|
926
|
-
*/
|
|
927
|
-
export declare const AssessmentDataSourceType: {
|
|
928
|
-
readonly ADS: "ApplicationDiscoveryService";
|
|
929
|
-
readonly MANUAL_IMPORT: "ManualImport";
|
|
930
|
-
readonly SR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector";
|
|
931
|
-
};
|
|
932
|
-
/**
|
|
933
|
-
* @public
|
|
934
|
-
*/
|
|
935
|
-
export type AssessmentDataSourceType = (typeof AssessmentDataSourceType)[keyof typeof AssessmentDataSourceType];
|
|
936
|
-
/**
|
|
937
|
-
* @public
|
|
938
|
-
* @enum
|
|
939
|
-
*/
|
|
940
|
-
export declare const AssessmentStatus: {
|
|
941
|
-
readonly COMPLETE: "COMPLETE";
|
|
942
|
-
readonly FAILED: "FAILED";
|
|
943
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
944
|
-
readonly STOPPED: "STOPPED";
|
|
945
|
-
};
|
|
946
|
-
/**
|
|
947
|
-
* @public
|
|
948
|
-
*/
|
|
949
|
-
export type AssessmentStatus = (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
950
591
|
/**
|
|
951
592
|
* <p> Object containing the summary of the strategy recommendations. </p>
|
|
952
593
|
* @public
|
|
@@ -963,23 +604,6 @@ export interface StrategySummary {
|
|
|
963
604
|
*/
|
|
964
605
|
count?: number | undefined;
|
|
965
606
|
}
|
|
966
|
-
/**
|
|
967
|
-
* @public
|
|
968
|
-
* @enum
|
|
969
|
-
*/
|
|
970
|
-
export declare const RunTimeAssessmentStatus: {
|
|
971
|
-
readonly DC_FAILED: "dataCollectionTaskFailed";
|
|
972
|
-
readonly DC_PARTIAL_SUCCESS: "dataCollectionTaskPartialSuccess";
|
|
973
|
-
readonly DC_REQ_SENT: "dataCollectionTaskScheduled";
|
|
974
|
-
readonly DC_STARTED: "dataCollectionTaskStarted";
|
|
975
|
-
readonly DC_STOPPED: "dataCollectionTaskStopped";
|
|
976
|
-
readonly DC_SUCCESS: "dataCollectionTaskSuccess";
|
|
977
|
-
readonly DC_TO_BE_SCHEDULED: "dataCollectionTaskToBeScheduled";
|
|
978
|
-
};
|
|
979
|
-
/**
|
|
980
|
-
* @public
|
|
981
|
-
*/
|
|
982
|
-
export type RunTimeAssessmentStatus = (typeof RunTimeAssessmentStatus)[keyof typeof RunTimeAssessmentStatus];
|
|
983
607
|
/**
|
|
984
608
|
* <p>The status summary of the server analysis.</p>
|
|
985
609
|
* @public
|
|
@@ -997,21 +621,6 @@ export interface ServerStatusSummary {
|
|
|
997
621
|
*/
|
|
998
622
|
count?: number | undefined;
|
|
999
623
|
}
|
|
1000
|
-
/**
|
|
1001
|
-
* @public
|
|
1002
|
-
* @enum
|
|
1003
|
-
*/
|
|
1004
|
-
export declare const ServerOsType: {
|
|
1005
|
-
readonly amazonLinux: "AmazonLinux";
|
|
1006
|
-
readonly endOfSupportWindowsServer: "EndOfSupportWindowsServer";
|
|
1007
|
-
readonly other: "Other";
|
|
1008
|
-
readonly redhat: "Redhat";
|
|
1009
|
-
readonly windowsServer: "WindowsServer";
|
|
1010
|
-
};
|
|
1011
|
-
/**
|
|
1012
|
-
* @public
|
|
1013
|
-
*/
|
|
1014
|
-
export type ServerOsType = (typeof ServerOsType)[keyof typeof ServerOsType];
|
|
1015
624
|
/**
|
|
1016
625
|
* <p> Object containing details about the servers imported by Application Discovery Service </p>
|
|
1017
626
|
* @public
|
|
@@ -1089,20 +698,6 @@ export interface AssessmentSummary {
|
|
|
1089
698
|
*/
|
|
1090
699
|
listServerStatusSummary?: ServerStatusSummary[] | undefined;
|
|
1091
700
|
}
|
|
1092
|
-
/**
|
|
1093
|
-
* @public
|
|
1094
|
-
* @enum
|
|
1095
|
-
*/
|
|
1096
|
-
export declare const Condition: {
|
|
1097
|
-
readonly CONTAINS: "CONTAINS";
|
|
1098
|
-
readonly EQUALS: "EQUALS";
|
|
1099
|
-
readonly NOT_CONTAINS: "NOT_CONTAINS";
|
|
1100
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
1101
|
-
};
|
|
1102
|
-
/**
|
|
1103
|
-
* @public
|
|
1104
|
-
*/
|
|
1105
|
-
export type Condition = (typeof Condition)[keyof typeof Condition];
|
|
1106
701
|
/**
|
|
1107
702
|
* <p>Defines the criteria of assessment.</p>
|
|
1108
703
|
* @public
|
|
@@ -1140,19 +735,6 @@ export interface AssociatedApplication {
|
|
|
1140
735
|
*/
|
|
1141
736
|
id?: string | undefined;
|
|
1142
737
|
}
|
|
1143
|
-
/**
|
|
1144
|
-
* @public
|
|
1145
|
-
* @enum
|
|
1146
|
-
*/
|
|
1147
|
-
export declare const AuthType: {
|
|
1148
|
-
readonly CERT: "CERT";
|
|
1149
|
-
readonly NTLM: "NTLM";
|
|
1150
|
-
readonly SSH: "SSH";
|
|
1151
|
-
};
|
|
1152
|
-
/**
|
|
1153
|
-
* @public
|
|
1154
|
-
*/
|
|
1155
|
-
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
1156
738
|
/**
|
|
1157
739
|
* @public
|
|
1158
740
|
*/
|
|
@@ -1295,24 +877,6 @@ export interface GetImportFileTaskRequest {
|
|
|
1295
877
|
*/
|
|
1296
878
|
id: string | undefined;
|
|
1297
879
|
}
|
|
1298
|
-
/**
|
|
1299
|
-
* @public
|
|
1300
|
-
* @enum
|
|
1301
|
-
*/
|
|
1302
|
-
export declare const ImportFileTaskStatus: {
|
|
1303
|
-
readonly DELETE_FAILED: "DeleteFailed";
|
|
1304
|
-
readonly DELETE_IN_PROGRESS: "DeleteInProgress";
|
|
1305
|
-
readonly DELETE_PARTIAL_SUCCESS: "DeletePartialSuccess";
|
|
1306
|
-
readonly DELETE_SUCCESS: "DeleteSuccess";
|
|
1307
|
-
readonly IMPORT_FAILED: "ImportFailed";
|
|
1308
|
-
readonly IMPORT_IN_PROGRESS: "ImportInProgress";
|
|
1309
|
-
readonly IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess";
|
|
1310
|
-
readonly IMPORT_SUCCESS: "ImportSuccess";
|
|
1311
|
-
};
|
|
1312
|
-
/**
|
|
1313
|
-
* @public
|
|
1314
|
-
*/
|
|
1315
|
-
export type ImportFileTaskStatus = (typeof ImportFileTaskStatus)[keyof typeof ImportFileTaskStatus];
|
|
1316
880
|
/**
|
|
1317
881
|
* @public
|
|
1318
882
|
*/
|
|
@@ -1394,39 +958,6 @@ export interface GetLatestAssessmentIdResponse {
|
|
|
1394
958
|
*/
|
|
1395
959
|
export interface GetPortfolioPreferencesRequest {
|
|
1396
960
|
}
|
|
1397
|
-
/**
|
|
1398
|
-
* @public
|
|
1399
|
-
* @enum
|
|
1400
|
-
*/
|
|
1401
|
-
export declare const DatabaseManagementPreference: {
|
|
1402
|
-
readonly AWS_MANAGED: "AWS-managed";
|
|
1403
|
-
readonly NO_PREFERENCE: "No preference";
|
|
1404
|
-
readonly SELF_MANAGE: "Self-manage";
|
|
1405
|
-
};
|
|
1406
|
-
/**
|
|
1407
|
-
* @public
|
|
1408
|
-
*/
|
|
1409
|
-
export type DatabaseManagementPreference = (typeof DatabaseManagementPreference)[keyof typeof DatabaseManagementPreference];
|
|
1410
|
-
/**
|
|
1411
|
-
* @public
|
|
1412
|
-
* @enum
|
|
1413
|
-
*/
|
|
1414
|
-
export declare const HeterogeneousTargetDatabaseEngine: {
|
|
1415
|
-
readonly AMAZON_AURORA: "Amazon Aurora";
|
|
1416
|
-
readonly AWS_POSTGRESQL: "AWS PostgreSQL";
|
|
1417
|
-
readonly DB2_LUW: "Db2 LUW";
|
|
1418
|
-
readonly MARIA_DB: "MariaDB";
|
|
1419
|
-
readonly MICROSOFT_SQL_SERVER: "Microsoft SQL Server";
|
|
1420
|
-
readonly MONGO_DB: "MongoDB";
|
|
1421
|
-
readonly MYSQL: "MySQL";
|
|
1422
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
1423
|
-
readonly ORACLE_DATABASE: "Oracle Database";
|
|
1424
|
-
readonly SAP: "SAP";
|
|
1425
|
-
};
|
|
1426
|
-
/**
|
|
1427
|
-
* @public
|
|
1428
|
-
*/
|
|
1429
|
-
export type HeterogeneousTargetDatabaseEngine = (typeof HeterogeneousTargetDatabaseEngine)[keyof typeof HeterogeneousTargetDatabaseEngine];
|
|
1430
961
|
/**
|
|
1431
962
|
* <p> The object containing details about heterogeneous database preferences. </p>
|
|
1432
963
|
* @public
|
|
@@ -1438,17 +969,6 @@ export interface Heterogeneous {
|
|
|
1438
969
|
*/
|
|
1439
970
|
targetDatabaseEngine: HeterogeneousTargetDatabaseEngine[] | undefined;
|
|
1440
971
|
}
|
|
1441
|
-
/**
|
|
1442
|
-
* @public
|
|
1443
|
-
* @enum
|
|
1444
|
-
*/
|
|
1445
|
-
export declare const HomogeneousTargetDatabaseEngine: {
|
|
1446
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
1447
|
-
};
|
|
1448
|
-
/**
|
|
1449
|
-
* @public
|
|
1450
|
-
*/
|
|
1451
|
-
export type HomogeneousTargetDatabaseEngine = (typeof HomogeneousTargetDatabaseEngine)[keyof typeof HomogeneousTargetDatabaseEngine];
|
|
1452
972
|
/**
|
|
1453
973
|
* <p> The object containing details about homogeneous database preferences. </p>
|
|
1454
974
|
* @public
|
|
@@ -1460,26 +980,6 @@ export interface Homogeneous {
|
|
|
1460
980
|
*/
|
|
1461
981
|
targetDatabaseEngine?: HomogeneousTargetDatabaseEngine[] | undefined;
|
|
1462
982
|
}
|
|
1463
|
-
/**
|
|
1464
|
-
* @public
|
|
1465
|
-
* @enum
|
|
1466
|
-
*/
|
|
1467
|
-
export declare const TargetDatabaseEngine: {
|
|
1468
|
-
readonly AMAZON_AURORA: "Amazon Aurora";
|
|
1469
|
-
readonly AWS_POSTGRESQL: "AWS PostgreSQL";
|
|
1470
|
-
readonly DB2_LUW: "Db2 LUW";
|
|
1471
|
-
readonly MARIA_DB: "MariaDB";
|
|
1472
|
-
readonly MICROSOFT_SQL_SERVER: "Microsoft SQL Server";
|
|
1473
|
-
readonly MONGO_DB: "MongoDB";
|
|
1474
|
-
readonly MYSQL: "MySQL";
|
|
1475
|
-
readonly NONE_SPECIFIED: "None specified";
|
|
1476
|
-
readonly ORACLE_DATABASE: "Oracle Database";
|
|
1477
|
-
readonly SAP: "SAP";
|
|
1478
|
-
};
|
|
1479
|
-
/**
|
|
1480
|
-
* @public
|
|
1481
|
-
*/
|
|
1482
|
-
export type TargetDatabaseEngine = (typeof TargetDatabaseEngine)[keyof typeof TargetDatabaseEngine];
|
|
1483
983
|
/**
|
|
1484
984
|
* <p> The object containing details about database migration preferences, when you have no
|
|
1485
985
|
* particular preference. </p>
|
|
@@ -1659,19 +1159,6 @@ export interface GetRecommendationReportDetailsRequest {
|
|
|
1659
1159
|
*/
|
|
1660
1160
|
id: string | undefined;
|
|
1661
1161
|
}
|
|
1662
|
-
/**
|
|
1663
|
-
* @public
|
|
1664
|
-
* @enum
|
|
1665
|
-
*/
|
|
1666
|
-
export declare const RecommendationReportStatus: {
|
|
1667
|
-
readonly FAILED: "FAILED";
|
|
1668
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1669
|
-
readonly SUCCESS: "SUCCESS";
|
|
1670
|
-
};
|
|
1671
|
-
/**
|
|
1672
|
-
* @public
|
|
1673
|
-
*/
|
|
1674
|
-
export type RecommendationReportStatus = (typeof RecommendationReportStatus)[keyof typeof RecommendationReportStatus];
|
|
1675
1162
|
/**
|
|
1676
1163
|
* <p> Contains detailed information about a recommendation report. </p>
|
|
1677
1164
|
* @public
|
|
@@ -1745,21 +1232,6 @@ export interface GetServerDetailsRequest {
|
|
|
1745
1232
|
*/
|
|
1746
1233
|
maxResults?: number | undefined;
|
|
1747
1234
|
}
|
|
1748
|
-
/**
|
|
1749
|
-
* @public
|
|
1750
|
-
* @enum
|
|
1751
|
-
*/
|
|
1752
|
-
export declare const ServerErrorCategory: {
|
|
1753
|
-
readonly ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR";
|
|
1754
|
-
readonly CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR";
|
|
1755
|
-
readonly CREDENTIAL_ERROR: "CREDENTIAL_ERROR";
|
|
1756
|
-
readonly OTHER_ERROR: "OTHER_ERROR";
|
|
1757
|
-
readonly PERMISSION_ERROR: "PERMISSION_ERROR";
|
|
1758
|
-
};
|
|
1759
|
-
/**
|
|
1760
|
-
* @public
|
|
1761
|
-
*/
|
|
1762
|
-
export type ServerErrorCategory = (typeof ServerErrorCategory)[keyof typeof ServerErrorCategory];
|
|
1763
1235
|
/**
|
|
1764
1236
|
* <p>The error in server analysis.</p>
|
|
1765
1237
|
* @public
|
|
@@ -1798,18 +1270,6 @@ export interface NetworkInfo {
|
|
|
1798
1270
|
*/
|
|
1799
1271
|
netMask: string | undefined;
|
|
1800
1272
|
}
|
|
1801
|
-
/**
|
|
1802
|
-
* @public
|
|
1803
|
-
* @enum
|
|
1804
|
-
*/
|
|
1805
|
-
export declare const OSType: {
|
|
1806
|
-
readonly LINUX: "LINUX";
|
|
1807
|
-
readonly WINDOWS: "WINDOWS";
|
|
1808
|
-
};
|
|
1809
|
-
/**
|
|
1810
|
-
* @public
|
|
1811
|
-
*/
|
|
1812
|
-
export type OSType = (typeof OSType)[keyof typeof OSType];
|
|
1813
1273
|
/**
|
|
1814
1274
|
* <p> Information about the operating system. </p>
|
|
1815
1275
|
* @public
|
|
@@ -1997,18 +1457,6 @@ export interface GetServerStrategiesResponse {
|
|
|
1997
1457
|
*/
|
|
1998
1458
|
serverStrategies?: ServerStrategy[] | undefined;
|
|
1999
1459
|
}
|
|
2000
|
-
/**
|
|
2001
|
-
* @public
|
|
2002
|
-
* @enum
|
|
2003
|
-
*/
|
|
2004
|
-
export declare const SortOrder: {
|
|
2005
|
-
readonly ASC: "ASC";
|
|
2006
|
-
readonly DESC: "DESC";
|
|
2007
|
-
};
|
|
2008
|
-
/**
|
|
2009
|
-
* @public
|
|
2010
|
-
*/
|
|
2011
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2012
1460
|
/**
|
|
2013
1461
|
* Represents input for ListAnalyzableServers operation.
|
|
2014
1462
|
* @public
|
|
@@ -2046,18 +1494,6 @@ export interface ListAnalyzableServersResponse {
|
|
|
2046
1494
|
*/
|
|
2047
1495
|
nextToken?: string | undefined;
|
|
2048
1496
|
}
|
|
2049
|
-
/**
|
|
2050
|
-
* @public
|
|
2051
|
-
* @enum
|
|
2052
|
-
*/
|
|
2053
|
-
export declare const GroupName: {
|
|
2054
|
-
readonly EXTERNAL_ID: "ExternalId";
|
|
2055
|
-
readonly EXTERNAL_SOURCE_TYPE: "ExternalSourceType";
|
|
2056
|
-
};
|
|
2057
|
-
/**
|
|
2058
|
-
* @public
|
|
2059
|
-
*/
|
|
2060
|
-
export type GroupName = (typeof GroupName)[keyof typeof GroupName];
|
|
2061
1497
|
/**
|
|
2062
1498
|
* <p> The object containing information about distinct imports or groups for Strategy Recommendations. </p>
|
|
2063
1499
|
* @public
|
|
@@ -2148,18 +1584,6 @@ export interface ListCollectorsRequest {
|
|
|
2148
1584
|
*/
|
|
2149
1585
|
maxResults?: number | undefined;
|
|
2150
1586
|
}
|
|
2151
|
-
/**
|
|
2152
|
-
* @public
|
|
2153
|
-
* @enum
|
|
2154
|
-
*/
|
|
2155
|
-
export declare const CollectorHealth: {
|
|
2156
|
-
readonly COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY";
|
|
2157
|
-
readonly COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY";
|
|
2158
|
-
};
|
|
2159
|
-
/**
|
|
2160
|
-
* @public
|
|
2161
|
-
*/
|
|
2162
|
-
export type CollectorHealth = (typeof CollectorHealth)[keyof typeof CollectorHealth];
|
|
2163
1587
|
/**
|
|
2164
1588
|
* <p>IP address based configurations.</p>
|
|
2165
1589
|
* @public
|
|
@@ -2181,17 +1605,6 @@ export interface IPAddressBasedRemoteInfo {
|
|
|
2181
1605
|
*/
|
|
2182
1606
|
osType?: OSType | undefined;
|
|
2183
1607
|
}
|
|
2184
|
-
/**
|
|
2185
|
-
* @public
|
|
2186
|
-
* @enum
|
|
2187
|
-
*/
|
|
2188
|
-
export declare const PipelineType: {
|
|
2189
|
-
readonly AZURE_DEVOPS: "AZURE_DEVOPS";
|
|
2190
|
-
};
|
|
2191
|
-
/**
|
|
2192
|
-
* @public
|
|
2193
|
-
*/
|
|
2194
|
-
export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
|
|
2195
1608
|
/**
|
|
2196
1609
|
* <p>Detailed information of the pipeline.</p>
|
|
2197
1610
|
* @public
|
|
@@ -2235,19 +1648,6 @@ export interface VcenterBasedRemoteInfo {
|
|
|
2235
1648
|
*/
|
|
2236
1649
|
osType?: OSType | undefined;
|
|
2237
1650
|
}
|
|
2238
|
-
/**
|
|
2239
|
-
* @public
|
|
2240
|
-
* @enum
|
|
2241
|
-
*/
|
|
2242
|
-
export declare const VersionControlType: {
|
|
2243
|
-
readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
|
|
2244
|
-
readonly GITHUB: "GITHUB";
|
|
2245
|
-
readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
|
|
2246
|
-
};
|
|
2247
|
-
/**
|
|
2248
|
-
* @public
|
|
2249
|
-
*/
|
|
2250
|
-
export type VersionControlType = (typeof VersionControlType)[keyof typeof VersionControlType];
|
|
2251
1651
|
/**
|
|
2252
1652
|
* <p>Details about the version control configuration.</p>
|
|
2253
1653
|
* @public
|
|
@@ -2451,23 +1851,6 @@ export interface ListImportFileTaskResponse {
|
|
|
2451
1851
|
*/
|
|
2452
1852
|
nextToken?: string | undefined;
|
|
2453
1853
|
}
|
|
2454
|
-
/**
|
|
2455
|
-
* @public
|
|
2456
|
-
* @enum
|
|
2457
|
-
*/
|
|
2458
|
-
export declare const ServerCriteria: {
|
|
2459
|
-
readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
|
|
2460
|
-
readonly DESTINATION: "DESTINATION";
|
|
2461
|
-
readonly ERROR_CATEGORY: "ERROR_CATEGORY";
|
|
2462
|
-
readonly NOT_DEFINED: "NOT_DEFINED";
|
|
2463
|
-
readonly OS_NAME: "OS_NAME";
|
|
2464
|
-
readonly SERVER_ID: "SERVER_ID";
|
|
2465
|
-
readonly STRATEGY: "STRATEGY";
|
|
2466
|
-
};
|
|
2467
|
-
/**
|
|
2468
|
-
* @public
|
|
2469
|
-
*/
|
|
2470
|
-
export type ServerCriteria = (typeof ServerCriteria)[keyof typeof ServerCriteria];
|
|
2471
1854
|
/**
|
|
2472
1855
|
* @public
|
|
2473
1856
|
*/
|
|
@@ -2591,20 +1974,6 @@ export interface StartAssessmentResponse {
|
|
|
2591
1974
|
*/
|
|
2592
1975
|
assessmentId?: string | undefined;
|
|
2593
1976
|
}
|
|
2594
|
-
/**
|
|
2595
|
-
* @public
|
|
2596
|
-
* @enum
|
|
2597
|
-
*/
|
|
2598
|
-
export declare const DataSourceType: {
|
|
2599
|
-
readonly ADS: "ApplicationDiscoveryService";
|
|
2600
|
-
readonly IMPORT: "Import";
|
|
2601
|
-
readonly MHSR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector";
|
|
2602
|
-
readonly MPA: "MPA";
|
|
2603
|
-
};
|
|
2604
|
-
/**
|
|
2605
|
-
* @public
|
|
2606
|
-
*/
|
|
2607
|
-
export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
|
|
2608
1977
|
/**
|
|
2609
1978
|
* @public
|
|
2610
1979
|
*/
|
|
@@ -2654,18 +2023,6 @@ export interface StartImportFileTaskResponse {
|
|
|
2654
2023
|
*/
|
|
2655
2024
|
id?: string | undefined;
|
|
2656
2025
|
}
|
|
2657
|
-
/**
|
|
2658
|
-
* @public
|
|
2659
|
-
* @enum
|
|
2660
|
-
*/
|
|
2661
|
-
export declare const OutputFormat: {
|
|
2662
|
-
readonly Excel: "Excel";
|
|
2663
|
-
readonly Json: "Json";
|
|
2664
|
-
};
|
|
2665
|
-
/**
|
|
2666
|
-
* @public
|
|
2667
|
-
*/
|
|
2668
|
-
export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
|
|
2669
2026
|
/**
|
|
2670
2027
|
* @public
|
|
2671
2028
|
*/
|
|
@@ -2707,19 +2064,6 @@ export interface StopAssessmentRequest {
|
|
|
2707
2064
|
*/
|
|
2708
2065
|
export interface StopAssessmentResponse {
|
|
2709
2066
|
}
|
|
2710
|
-
/**
|
|
2711
|
-
* @public
|
|
2712
|
-
* @enum
|
|
2713
|
-
*/
|
|
2714
|
-
export declare const VersionControl: {
|
|
2715
|
-
readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
|
|
2716
|
-
readonly GITHUB: "GITHUB";
|
|
2717
|
-
readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
|
|
2718
|
-
};
|
|
2719
|
-
/**
|
|
2720
|
-
* @public
|
|
2721
|
-
*/
|
|
2722
|
-
export type VersionControl = (typeof VersionControl)[keyof typeof VersionControl];
|
|
2723
2067
|
/**
|
|
2724
2068
|
* <p> Object containing source code information that is linked to an application component.
|
|
2725
2069
|
* </p>
|