@aws-sdk/client-migrationhubstrategy 3.935.0 → 3.939.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.
@@ -0,0 +1,657 @@
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];
32
+ /**
33
+ * @public
34
+ * @enum
35
+ */
36
+ export declare const AnalysisType: {
37
+ readonly BINARY_ANALYSIS: "BINARY_ANALYSIS";
38
+ readonly DATABASE_ANALYSIS: "DATABASE_ANALYSIS";
39
+ readonly RUNTIME_ANALYSIS: "RUNTIME_ANALYSIS";
40
+ readonly SOURCE_CODE_ANALYSIS: "SOURCE_CODE_ANALYSIS";
41
+ };
42
+ /**
43
+ * @public
44
+ */
45
+ export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
46
+ /**
47
+ * @public
48
+ * @enum
49
+ */
50
+ export declare const BinaryAnalyzerName: {
51
+ readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
52
+ readonly DLL_ANALYZER: "DLL_ANALYZER";
53
+ };
54
+ /**
55
+ * @public
56
+ */
57
+ export type BinaryAnalyzerName = (typeof BinaryAnalyzerName)[keyof typeof BinaryAnalyzerName];
58
+ /**
59
+ * @public
60
+ * @enum
61
+ */
62
+ export declare const RunTimeAnalyzerName: {
63
+ readonly A2C_ANALYZER: "A2C_ANALYZER";
64
+ readonly DATABASE_ANALYZER: "DATABASE_ANALYZER";
65
+ readonly EMP_PA_ANALYZER: "EMP_PA_ANALYZER";
66
+ readonly REHOST_ANALYZER: "REHOST_ANALYZER";
67
+ readonly SCT_ANALYZER: "SCT_ANALYZER";
68
+ };
69
+ /**
70
+ * @public
71
+ */
72
+ export type RunTimeAnalyzerName = (typeof RunTimeAnalyzerName)[keyof typeof RunTimeAnalyzerName];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const SourceCodeAnalyzerName: {
78
+ readonly BYTECODE_ANALYZER: "BYTECODE_ANALYZER";
79
+ readonly CSHARP_ANALYZER: "CSHARP_ANALYZER";
80
+ readonly JAVA_ANALYZER: "JAVA_ANALYZER";
81
+ readonly PORTING_ASSISTANT: "PORTING_ASSISTANT";
82
+ };
83
+ /**
84
+ * @public
85
+ */
86
+ export type SourceCodeAnalyzerName = (typeof SourceCodeAnalyzerName)[keyof typeof SourceCodeAnalyzerName];
87
+ /**
88
+ * @public
89
+ * @enum
90
+ */
91
+ export declare const AntipatternReportStatus: {
92
+ readonly FAILED: "FAILED";
93
+ readonly IN_PROGRESS: "IN_PROGRESS";
94
+ readonly SUCCESS: "SUCCESS";
95
+ };
96
+ /**
97
+ * @public
98
+ */
99
+ export type AntipatternReportStatus = (typeof AntipatternReportStatus)[keyof typeof AntipatternReportStatus];
100
+ /**
101
+ * @public
102
+ * @enum
103
+ */
104
+ export declare const Severity: {
105
+ readonly HIGH: "HIGH";
106
+ readonly LOW: "LOW";
107
+ readonly MEDIUM: "MEDIUM";
108
+ };
109
+ /**
110
+ * @public
111
+ */
112
+ export type Severity = (typeof Severity)[keyof typeof Severity];
113
+ /**
114
+ * @public
115
+ * @enum
116
+ */
117
+ export declare const ApplicationComponentCriteria: {
118
+ readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
119
+ readonly APP_NAME: "APP_NAME";
120
+ readonly APP_TYPE: "APP_TYPE";
121
+ readonly DESTINATION: "DESTINATION";
122
+ readonly ERROR_CATEGORY: "ERROR_CATEGORY";
123
+ readonly NOT_DEFINED: "NOT_DEFINED";
124
+ readonly SERVER_ID: "SERVER_ID";
125
+ readonly STRATEGY: "STRATEGY";
126
+ };
127
+ /**
128
+ * @public
129
+ */
130
+ export type ApplicationComponentCriteria = (typeof ApplicationComponentCriteria)[keyof typeof ApplicationComponentCriteria];
131
+ /**
132
+ * @public
133
+ * @enum
134
+ */
135
+ export declare const AppType: {
136
+ readonly IIS: "IIS";
137
+ readonly cassandra: "Cassandra";
138
+ readonly db2: "DB2";
139
+ readonly dotNetFramework: "DotNetFramework";
140
+ readonly dotnet: "Dotnet";
141
+ readonly dotnetcore: "DotnetCore";
142
+ readonly java: "Java";
143
+ readonly jboss: "JBoss";
144
+ readonly mariadb: "Maria DB";
145
+ readonly mongodb: "Mongo DB";
146
+ readonly mysql: "MySQL";
147
+ readonly oracle: "Oracle";
148
+ readonly other: "Other";
149
+ readonly postgresqlserver: "PostgreSQLServer";
150
+ readonly spring: "Spring";
151
+ readonly sqlServer: "SQLServer";
152
+ readonly sybase: "Sybase";
153
+ readonly tomcat: "Tomcat";
154
+ readonly unknown: "Unknown";
155
+ readonly visualbasic: "Visual Basic";
156
+ readonly weblogic: "Oracle WebLogic";
157
+ readonly websphere: "IBM WebSphere";
158
+ };
159
+ /**
160
+ * @public
161
+ */
162
+ export type AppType = (typeof AppType)[keyof typeof AppType];
163
+ /**
164
+ * @public
165
+ * @enum
166
+ */
167
+ export declare const AppUnitErrorCategory: {
168
+ readonly CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR";
169
+ readonly CREDENTIAL_ERROR: "CREDENTIAL_ERROR";
170
+ readonly OTHER_ERROR: "OTHER_ERROR";
171
+ readonly PERMISSION_ERROR: "PERMISSION_ERROR";
172
+ readonly UNSUPPORTED_ERROR: "UNSUPPORTED_ERROR";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type AppUnitErrorCategory = (typeof AppUnitErrorCategory)[keyof typeof AppUnitErrorCategory];
178
+ /**
179
+ * @public
180
+ * @enum
181
+ */
182
+ export declare const InclusionStatus: {
183
+ readonly EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment";
184
+ readonly INCLUDE_IN_RECOMMENDATION: "includeInAssessment";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type InclusionStatus = (typeof InclusionStatus)[keyof typeof InclusionStatus];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const Strategy: {
195
+ readonly REFACTOR: "Refactor";
196
+ readonly REHOST: "Rehost";
197
+ readonly RELOCATE: "Relocate";
198
+ readonly REPLATFORM: "Replatform";
199
+ readonly REPURCHASE: "Repurchase";
200
+ readonly RETAIN: "Retain";
201
+ readonly RETIREMENT: "Retirement";
202
+ };
203
+ /**
204
+ * @public
205
+ */
206
+ export type Strategy = (typeof Strategy)[keyof typeof Strategy];
207
+ /**
208
+ * @public
209
+ * @enum
210
+ */
211
+ export declare const TargetDestination: {
212
+ readonly AMAZON_DOCUMENTDB: "Amazon DocumentDB";
213
+ readonly AMAZON_DYNAMODB: "Amazon DynamoDB";
214
+ readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
215
+ readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
216
+ readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
217
+ readonly AMAZON_RDS: "Amazon Relational Database Service";
218
+ readonly AMAZON_RDS_MYSQL: "Amazon Relational Database Service on MySQL";
219
+ readonly AMAZON_RDS_POSTGRESQL: "Amazon Relational Database Service on PostgreSQL";
220
+ readonly AURORA_MYSQL: "Aurora MySQL";
221
+ readonly AURORA_POSTGRESQL: "Aurora PostgreSQL";
222
+ readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
223
+ readonly AWS_FARGATE: "AWS Fargate";
224
+ readonly BABELFISH_AURORA_POSTGRESQL: "Babelfish for Aurora PostgreSQL";
225
+ readonly NONE_SPECIFIED: "None specified";
226
+ };
227
+ /**
228
+ * @public
229
+ */
230
+ export type TargetDestination = (typeof TargetDestination)[keyof typeof TargetDestination];
231
+ /**
232
+ * @public
233
+ * @enum
234
+ */
235
+ export declare const TransformationToolName: {
236
+ readonly APP2CONTAINER: "App2Container";
237
+ readonly DMS: "Database Migration Service";
238
+ readonly EMP: "End of Support Migration";
239
+ readonly IN_PLACE_OS_UPGRADE: "In Place Operating System Upgrade";
240
+ readonly MGN: "Application Migration Service";
241
+ readonly NATIVE_SQL: "Native SQL Server Backup/Restore";
242
+ readonly PORTING_ASSISTANT: "Porting Assistant For .NET";
243
+ readonly SCT: "Schema Conversion Tool";
244
+ readonly STRATEGY_RECOMMENDATION_SUPPORT: "Strategy Recommendation Support";
245
+ readonly WWAMA: "Windows Web Application Migration Assistant";
246
+ };
247
+ /**
248
+ * @public
249
+ */
250
+ export type TransformationToolName = (typeof TransformationToolName)[keyof typeof TransformationToolName];
251
+ /**
252
+ * @public
253
+ * @enum
254
+ */
255
+ export declare const ResourceSubType: {
256
+ readonly DATABASE: "Database";
257
+ readonly DATABASE_PROCESS: "DatabaseProcess";
258
+ readonly PROCESS: "Process";
259
+ };
260
+ /**
261
+ * @public
262
+ */
263
+ export type ResourceSubType = (typeof ResourceSubType)[keyof typeof ResourceSubType];
264
+ /**
265
+ * @public
266
+ * @enum
267
+ */
268
+ export declare const StrategyRecommendation: {
269
+ readonly NOT_RECOMMENDED: "notRecommended";
270
+ readonly POTENTIAL: "potential";
271
+ readonly RECOMMENDED: "recommended";
272
+ readonly VIABLE_OPTION: "viableOption";
273
+ };
274
+ /**
275
+ * @public
276
+ */
277
+ export type StrategyRecommendation = (typeof StrategyRecommendation)[keyof typeof StrategyRecommendation];
278
+ /**
279
+ * @public
280
+ * @enum
281
+ */
282
+ export declare const ApplicationMode: {
283
+ readonly ALL: "ALL";
284
+ readonly KNOWN: "KNOWN";
285
+ readonly UNKNOWN: "UNKNOWN";
286
+ };
287
+ /**
288
+ * @public
289
+ */
290
+ export type ApplicationMode = (typeof ApplicationMode)[keyof typeof ApplicationMode];
291
+ /**
292
+ * @public
293
+ * @enum
294
+ */
295
+ export declare const AwsManagedTargetDestination: {
296
+ readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
297
+ readonly AWS_FARGATE: "AWS Fargate";
298
+ readonly NONE_SPECIFIED: "None specified";
299
+ };
300
+ /**
301
+ * @public
302
+ */
303
+ export type AwsManagedTargetDestination = (typeof AwsManagedTargetDestination)[keyof typeof AwsManagedTargetDestination];
304
+ /**
305
+ * @public
306
+ * @enum
307
+ */
308
+ export declare const NoPreferenceTargetDestination: {
309
+ readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
310
+ readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
311
+ readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
312
+ readonly AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk";
313
+ readonly AWS_FARGATE: "AWS Fargate";
314
+ readonly NONE_SPECIFIED: "None specified";
315
+ };
316
+ /**
317
+ * @public
318
+ */
319
+ export type NoPreferenceTargetDestination = (typeof NoPreferenceTargetDestination)[keyof typeof NoPreferenceTargetDestination];
320
+ /**
321
+ * @public
322
+ * @enum
323
+ */
324
+ export declare const SelfManageTargetDestination: {
325
+ readonly AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)";
326
+ readonly AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)";
327
+ readonly AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)";
328
+ readonly NONE_SPECIFIED: "None specified";
329
+ };
330
+ /**
331
+ * @public
332
+ */
333
+ export type SelfManageTargetDestination = (typeof SelfManageTargetDestination)[keyof typeof SelfManageTargetDestination];
334
+ /**
335
+ * @public
336
+ * @enum
337
+ */
338
+ export declare const AssessmentDataSourceType: {
339
+ readonly ADS: "ApplicationDiscoveryService";
340
+ readonly MANUAL_IMPORT: "ManualImport";
341
+ readonly SR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector";
342
+ };
343
+ /**
344
+ * @public
345
+ */
346
+ export type AssessmentDataSourceType = (typeof AssessmentDataSourceType)[keyof typeof AssessmentDataSourceType];
347
+ /**
348
+ * @public
349
+ * @enum
350
+ */
351
+ export declare const AssessmentStatus: {
352
+ readonly COMPLETE: "COMPLETE";
353
+ readonly FAILED: "FAILED";
354
+ readonly IN_PROGRESS: "IN_PROGRESS";
355
+ readonly STOPPED: "STOPPED";
356
+ };
357
+ /**
358
+ * @public
359
+ */
360
+ export type AssessmentStatus = (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
361
+ /**
362
+ * @public
363
+ * @enum
364
+ */
365
+ export declare const RunTimeAssessmentStatus: {
366
+ readonly DC_FAILED: "dataCollectionTaskFailed";
367
+ readonly DC_PARTIAL_SUCCESS: "dataCollectionTaskPartialSuccess";
368
+ readonly DC_REQ_SENT: "dataCollectionTaskScheduled";
369
+ readonly DC_STARTED: "dataCollectionTaskStarted";
370
+ readonly DC_STOPPED: "dataCollectionTaskStopped";
371
+ readonly DC_SUCCESS: "dataCollectionTaskSuccess";
372
+ readonly DC_TO_BE_SCHEDULED: "dataCollectionTaskToBeScheduled";
373
+ };
374
+ /**
375
+ * @public
376
+ */
377
+ export type RunTimeAssessmentStatus = (typeof RunTimeAssessmentStatus)[keyof typeof RunTimeAssessmentStatus];
378
+ /**
379
+ * @public
380
+ * @enum
381
+ */
382
+ export declare const ServerOsType: {
383
+ readonly amazonLinux: "AmazonLinux";
384
+ readonly endOfSupportWindowsServer: "EndOfSupportWindowsServer";
385
+ readonly other: "Other";
386
+ readonly redhat: "Redhat";
387
+ readonly windowsServer: "WindowsServer";
388
+ };
389
+ /**
390
+ * @public
391
+ */
392
+ export type ServerOsType = (typeof ServerOsType)[keyof typeof ServerOsType];
393
+ /**
394
+ * @public
395
+ * @enum
396
+ */
397
+ export declare const Condition: {
398
+ readonly CONTAINS: "CONTAINS";
399
+ readonly EQUALS: "EQUALS";
400
+ readonly NOT_CONTAINS: "NOT_CONTAINS";
401
+ readonly NOT_EQUALS: "NOT_EQUALS";
402
+ };
403
+ /**
404
+ * @public
405
+ */
406
+ export type Condition = (typeof Condition)[keyof typeof Condition];
407
+ /**
408
+ * @public
409
+ * @enum
410
+ */
411
+ export declare const AuthType: {
412
+ readonly CERT: "CERT";
413
+ readonly NTLM: "NTLM";
414
+ readonly SSH: "SSH";
415
+ };
416
+ /**
417
+ * @public
418
+ */
419
+ export type AuthType = (typeof AuthType)[keyof typeof AuthType];
420
+ /**
421
+ * @public
422
+ * @enum
423
+ */
424
+ export declare const ImportFileTaskStatus: {
425
+ readonly DELETE_FAILED: "DeleteFailed";
426
+ readonly DELETE_IN_PROGRESS: "DeleteInProgress";
427
+ readonly DELETE_PARTIAL_SUCCESS: "DeletePartialSuccess";
428
+ readonly DELETE_SUCCESS: "DeleteSuccess";
429
+ readonly IMPORT_FAILED: "ImportFailed";
430
+ readonly IMPORT_IN_PROGRESS: "ImportInProgress";
431
+ readonly IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess";
432
+ readonly IMPORT_SUCCESS: "ImportSuccess";
433
+ };
434
+ /**
435
+ * @public
436
+ */
437
+ export type ImportFileTaskStatus = (typeof ImportFileTaskStatus)[keyof typeof ImportFileTaskStatus];
438
+ /**
439
+ * @public
440
+ * @enum
441
+ */
442
+ export declare const DatabaseManagementPreference: {
443
+ readonly AWS_MANAGED: "AWS-managed";
444
+ readonly NO_PREFERENCE: "No preference";
445
+ readonly SELF_MANAGE: "Self-manage";
446
+ };
447
+ /**
448
+ * @public
449
+ */
450
+ export type DatabaseManagementPreference = (typeof DatabaseManagementPreference)[keyof typeof DatabaseManagementPreference];
451
+ /**
452
+ * @public
453
+ * @enum
454
+ */
455
+ export declare const HeterogeneousTargetDatabaseEngine: {
456
+ readonly AMAZON_AURORA: "Amazon Aurora";
457
+ readonly AWS_POSTGRESQL: "AWS PostgreSQL";
458
+ readonly DB2_LUW: "Db2 LUW";
459
+ readonly MARIA_DB: "MariaDB";
460
+ readonly MICROSOFT_SQL_SERVER: "Microsoft SQL Server";
461
+ readonly MONGO_DB: "MongoDB";
462
+ readonly MYSQL: "MySQL";
463
+ readonly NONE_SPECIFIED: "None specified";
464
+ readonly ORACLE_DATABASE: "Oracle Database";
465
+ readonly SAP: "SAP";
466
+ };
467
+ /**
468
+ * @public
469
+ */
470
+ export type HeterogeneousTargetDatabaseEngine = (typeof HeterogeneousTargetDatabaseEngine)[keyof typeof HeterogeneousTargetDatabaseEngine];
471
+ /**
472
+ * @public
473
+ * @enum
474
+ */
475
+ export declare const HomogeneousTargetDatabaseEngine: {
476
+ readonly NONE_SPECIFIED: "None specified";
477
+ };
478
+ /**
479
+ * @public
480
+ */
481
+ export type HomogeneousTargetDatabaseEngine = (typeof HomogeneousTargetDatabaseEngine)[keyof typeof HomogeneousTargetDatabaseEngine];
482
+ /**
483
+ * @public
484
+ * @enum
485
+ */
486
+ export declare const TargetDatabaseEngine: {
487
+ readonly AMAZON_AURORA: "Amazon Aurora";
488
+ readonly AWS_POSTGRESQL: "AWS PostgreSQL";
489
+ readonly DB2_LUW: "Db2 LUW";
490
+ readonly MARIA_DB: "MariaDB";
491
+ readonly MICROSOFT_SQL_SERVER: "Microsoft SQL Server";
492
+ readonly MONGO_DB: "MongoDB";
493
+ readonly MYSQL: "MySQL";
494
+ readonly NONE_SPECIFIED: "None specified";
495
+ readonly ORACLE_DATABASE: "Oracle Database";
496
+ readonly SAP: "SAP";
497
+ };
498
+ /**
499
+ * @public
500
+ */
501
+ export type TargetDatabaseEngine = (typeof TargetDatabaseEngine)[keyof typeof TargetDatabaseEngine];
502
+ /**
503
+ * @public
504
+ * @enum
505
+ */
506
+ export declare const RecommendationReportStatus: {
507
+ readonly FAILED: "FAILED";
508
+ readonly IN_PROGRESS: "IN_PROGRESS";
509
+ readonly SUCCESS: "SUCCESS";
510
+ };
511
+ /**
512
+ * @public
513
+ */
514
+ export type RecommendationReportStatus = (typeof RecommendationReportStatus)[keyof typeof RecommendationReportStatus];
515
+ /**
516
+ * @public
517
+ * @enum
518
+ */
519
+ export declare const ServerErrorCategory: {
520
+ readonly ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR";
521
+ readonly CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR";
522
+ readonly CREDENTIAL_ERROR: "CREDENTIAL_ERROR";
523
+ readonly OTHER_ERROR: "OTHER_ERROR";
524
+ readonly PERMISSION_ERROR: "PERMISSION_ERROR";
525
+ };
526
+ /**
527
+ * @public
528
+ */
529
+ export type ServerErrorCategory = (typeof ServerErrorCategory)[keyof typeof ServerErrorCategory];
530
+ /**
531
+ * @public
532
+ * @enum
533
+ */
534
+ export declare const OSType: {
535
+ readonly LINUX: "LINUX";
536
+ readonly WINDOWS: "WINDOWS";
537
+ };
538
+ /**
539
+ * @public
540
+ */
541
+ export type OSType = (typeof OSType)[keyof typeof OSType];
542
+ /**
543
+ * @public
544
+ * @enum
545
+ */
546
+ export declare const SortOrder: {
547
+ readonly ASC: "ASC";
548
+ readonly DESC: "DESC";
549
+ };
550
+ /**
551
+ * @public
552
+ */
553
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
554
+ /**
555
+ * @public
556
+ * @enum
557
+ */
558
+ export declare const GroupName: {
559
+ readonly EXTERNAL_ID: "ExternalId";
560
+ readonly EXTERNAL_SOURCE_TYPE: "ExternalSourceType";
561
+ };
562
+ /**
563
+ * @public
564
+ */
565
+ export type GroupName = (typeof GroupName)[keyof typeof GroupName];
566
+ /**
567
+ * @public
568
+ * @enum
569
+ */
570
+ export declare const CollectorHealth: {
571
+ readonly COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY";
572
+ readonly COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY";
573
+ };
574
+ /**
575
+ * @public
576
+ */
577
+ export type CollectorHealth = (typeof CollectorHealth)[keyof typeof CollectorHealth];
578
+ /**
579
+ * @public
580
+ * @enum
581
+ */
582
+ export declare const PipelineType: {
583
+ readonly AZURE_DEVOPS: "AZURE_DEVOPS";
584
+ };
585
+ /**
586
+ * @public
587
+ */
588
+ export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
589
+ /**
590
+ * @public
591
+ * @enum
592
+ */
593
+ export declare const VersionControlType: {
594
+ readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
595
+ readonly GITHUB: "GITHUB";
596
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
597
+ };
598
+ /**
599
+ * @public
600
+ */
601
+ export type VersionControlType = (typeof VersionControlType)[keyof typeof VersionControlType];
602
+ /**
603
+ * @public
604
+ * @enum
605
+ */
606
+ export declare const ServerCriteria: {
607
+ readonly ANALYSIS_STATUS: "ANALYSIS_STATUS";
608
+ readonly DESTINATION: "DESTINATION";
609
+ readonly ERROR_CATEGORY: "ERROR_CATEGORY";
610
+ readonly NOT_DEFINED: "NOT_DEFINED";
611
+ readonly OS_NAME: "OS_NAME";
612
+ readonly SERVER_ID: "SERVER_ID";
613
+ readonly STRATEGY: "STRATEGY";
614
+ };
615
+ /**
616
+ * @public
617
+ */
618
+ export type ServerCriteria = (typeof ServerCriteria)[keyof typeof ServerCriteria];
619
+ /**
620
+ * @public
621
+ * @enum
622
+ */
623
+ export declare const DataSourceType: {
624
+ readonly ADS: "ApplicationDiscoveryService";
625
+ readonly IMPORT: "Import";
626
+ readonly MHSR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector";
627
+ readonly MPA: "MPA";
628
+ };
629
+ /**
630
+ * @public
631
+ */
632
+ export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
633
+ /**
634
+ * @public
635
+ * @enum
636
+ */
637
+ export declare const OutputFormat: {
638
+ readonly Excel: "Excel";
639
+ readonly Json: "Json";
640
+ };
641
+ /**
642
+ * @public
643
+ */
644
+ export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
645
+ /**
646
+ * @public
647
+ * @enum
648
+ */
649
+ export declare const VersionControl: {
650
+ readonly AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT";
651
+ readonly GITHUB: "GITHUB";
652
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
653
+ };
654
+ /**
655
+ * @public
656
+ */
657
+ export type VersionControl = (typeof VersionControl)[keyof typeof VersionControl];