@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.
- 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 +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -1713,6 +1713,312 @@ const paginateListImportFileTask = core.createPaginator(MigrationHubStrategyClie
|
|
|
1713
1713
|
|
|
1714
1714
|
const paginateListServers = core.createPaginator(MigrationHubStrategyClient, ListServersCommand, "nextToken", "nextToken", "maxResults");
|
|
1715
1715
|
|
|
1716
|
+
const RuntimeAnalysisStatus = {
|
|
1717
|
+
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
1718
|
+
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
1719
|
+
ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS",
|
|
1720
|
+
ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED",
|
|
1721
|
+
};
|
|
1722
|
+
const SrcCodeOrDbAnalysisStatus = {
|
|
1723
|
+
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
1724
|
+
ANALYSIS_PARTIAL_SUCCESS: "ANALYSIS_PARTIAL_SUCCESS",
|
|
1725
|
+
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
1726
|
+
ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS",
|
|
1727
|
+
ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED",
|
|
1728
|
+
CONFIGURED: "CONFIGURED",
|
|
1729
|
+
UNCONFIGURED: "UNCONFIGURED",
|
|
1730
|
+
};
|
|
1731
|
+
const AnalysisType = {
|
|
1732
|
+
BINARY_ANALYSIS: "BINARY_ANALYSIS",
|
|
1733
|
+
DATABASE_ANALYSIS: "DATABASE_ANALYSIS",
|
|
1734
|
+
RUNTIME_ANALYSIS: "RUNTIME_ANALYSIS",
|
|
1735
|
+
SOURCE_CODE_ANALYSIS: "SOURCE_CODE_ANALYSIS",
|
|
1736
|
+
};
|
|
1737
|
+
const BinaryAnalyzerName = {
|
|
1738
|
+
BYTECODE_ANALYZER: "BYTECODE_ANALYZER",
|
|
1739
|
+
DLL_ANALYZER: "DLL_ANALYZER",
|
|
1740
|
+
};
|
|
1741
|
+
const RunTimeAnalyzerName = {
|
|
1742
|
+
A2C_ANALYZER: "A2C_ANALYZER",
|
|
1743
|
+
DATABASE_ANALYZER: "DATABASE_ANALYZER",
|
|
1744
|
+
EMP_PA_ANALYZER: "EMP_PA_ANALYZER",
|
|
1745
|
+
REHOST_ANALYZER: "REHOST_ANALYZER",
|
|
1746
|
+
SCT_ANALYZER: "SCT_ANALYZER",
|
|
1747
|
+
};
|
|
1748
|
+
const SourceCodeAnalyzerName = {
|
|
1749
|
+
BYTECODE_ANALYZER: "BYTECODE_ANALYZER",
|
|
1750
|
+
CSHARP_ANALYZER: "CSHARP_ANALYZER",
|
|
1751
|
+
JAVA_ANALYZER: "JAVA_ANALYZER",
|
|
1752
|
+
PORTING_ASSISTANT: "PORTING_ASSISTANT",
|
|
1753
|
+
};
|
|
1754
|
+
const AntipatternReportStatus = {
|
|
1755
|
+
FAILED: "FAILED",
|
|
1756
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1757
|
+
SUCCESS: "SUCCESS",
|
|
1758
|
+
};
|
|
1759
|
+
const Severity = {
|
|
1760
|
+
HIGH: "HIGH",
|
|
1761
|
+
LOW: "LOW",
|
|
1762
|
+
MEDIUM: "MEDIUM",
|
|
1763
|
+
};
|
|
1764
|
+
const ApplicationComponentCriteria = {
|
|
1765
|
+
ANALYSIS_STATUS: "ANALYSIS_STATUS",
|
|
1766
|
+
APP_NAME: "APP_NAME",
|
|
1767
|
+
APP_TYPE: "APP_TYPE",
|
|
1768
|
+
DESTINATION: "DESTINATION",
|
|
1769
|
+
ERROR_CATEGORY: "ERROR_CATEGORY",
|
|
1770
|
+
NOT_DEFINED: "NOT_DEFINED",
|
|
1771
|
+
SERVER_ID: "SERVER_ID",
|
|
1772
|
+
STRATEGY: "STRATEGY",
|
|
1773
|
+
};
|
|
1774
|
+
const AppType = {
|
|
1775
|
+
IIS: "IIS",
|
|
1776
|
+
cassandra: "Cassandra",
|
|
1777
|
+
db2: "DB2",
|
|
1778
|
+
dotNetFramework: "DotNetFramework",
|
|
1779
|
+
dotnet: "Dotnet",
|
|
1780
|
+
dotnetcore: "DotnetCore",
|
|
1781
|
+
java: "Java",
|
|
1782
|
+
jboss: "JBoss",
|
|
1783
|
+
mariadb: "Maria DB",
|
|
1784
|
+
mongodb: "Mongo DB",
|
|
1785
|
+
mysql: "MySQL",
|
|
1786
|
+
oracle: "Oracle",
|
|
1787
|
+
other: "Other",
|
|
1788
|
+
postgresqlserver: "PostgreSQLServer",
|
|
1789
|
+
spring: "Spring",
|
|
1790
|
+
sqlServer: "SQLServer",
|
|
1791
|
+
sybase: "Sybase",
|
|
1792
|
+
tomcat: "Tomcat",
|
|
1793
|
+
unknown: "Unknown",
|
|
1794
|
+
visualbasic: "Visual Basic",
|
|
1795
|
+
weblogic: "Oracle WebLogic",
|
|
1796
|
+
websphere: "IBM WebSphere",
|
|
1797
|
+
};
|
|
1798
|
+
const AppUnitErrorCategory = {
|
|
1799
|
+
CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR",
|
|
1800
|
+
CREDENTIAL_ERROR: "CREDENTIAL_ERROR",
|
|
1801
|
+
OTHER_ERROR: "OTHER_ERROR",
|
|
1802
|
+
PERMISSION_ERROR: "PERMISSION_ERROR",
|
|
1803
|
+
UNSUPPORTED_ERROR: "UNSUPPORTED_ERROR",
|
|
1804
|
+
};
|
|
1805
|
+
const InclusionStatus = {
|
|
1806
|
+
EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment",
|
|
1807
|
+
INCLUDE_IN_RECOMMENDATION: "includeInAssessment",
|
|
1808
|
+
};
|
|
1809
|
+
const Strategy = {
|
|
1810
|
+
REFACTOR: "Refactor",
|
|
1811
|
+
REHOST: "Rehost",
|
|
1812
|
+
RELOCATE: "Relocate",
|
|
1813
|
+
REPLATFORM: "Replatform",
|
|
1814
|
+
REPURCHASE: "Repurchase",
|
|
1815
|
+
RETAIN: "Retain",
|
|
1816
|
+
RETIREMENT: "Retirement",
|
|
1817
|
+
};
|
|
1818
|
+
const TargetDestination = {
|
|
1819
|
+
AMAZON_DOCUMENTDB: "Amazon DocumentDB",
|
|
1820
|
+
AMAZON_DYNAMODB: "Amazon DynamoDB",
|
|
1821
|
+
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
1822
|
+
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
1823
|
+
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
1824
|
+
AMAZON_RDS: "Amazon Relational Database Service",
|
|
1825
|
+
AMAZON_RDS_MYSQL: "Amazon Relational Database Service on MySQL",
|
|
1826
|
+
AMAZON_RDS_POSTGRESQL: "Amazon Relational Database Service on PostgreSQL",
|
|
1827
|
+
AURORA_MYSQL: "Aurora MySQL",
|
|
1828
|
+
AURORA_POSTGRESQL: "Aurora PostgreSQL",
|
|
1829
|
+
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
1830
|
+
AWS_FARGATE: "AWS Fargate",
|
|
1831
|
+
BABELFISH_AURORA_POSTGRESQL: "Babelfish for Aurora PostgreSQL",
|
|
1832
|
+
NONE_SPECIFIED: "None specified",
|
|
1833
|
+
};
|
|
1834
|
+
const TransformationToolName = {
|
|
1835
|
+
APP2CONTAINER: "App2Container",
|
|
1836
|
+
DMS: "Database Migration Service",
|
|
1837
|
+
EMP: "End of Support Migration",
|
|
1838
|
+
IN_PLACE_OS_UPGRADE: "In Place Operating System Upgrade",
|
|
1839
|
+
MGN: "Application Migration Service",
|
|
1840
|
+
NATIVE_SQL: "Native SQL Server Backup/Restore",
|
|
1841
|
+
PORTING_ASSISTANT: "Porting Assistant For .NET",
|
|
1842
|
+
SCT: "Schema Conversion Tool",
|
|
1843
|
+
STRATEGY_RECOMMENDATION_SUPPORT: "Strategy Recommendation Support",
|
|
1844
|
+
WWAMA: "Windows Web Application Migration Assistant",
|
|
1845
|
+
};
|
|
1846
|
+
const ResourceSubType = {
|
|
1847
|
+
DATABASE: "Database",
|
|
1848
|
+
DATABASE_PROCESS: "DatabaseProcess",
|
|
1849
|
+
PROCESS: "Process",
|
|
1850
|
+
};
|
|
1851
|
+
const StrategyRecommendation = {
|
|
1852
|
+
NOT_RECOMMENDED: "notRecommended",
|
|
1853
|
+
POTENTIAL: "potential",
|
|
1854
|
+
RECOMMENDED: "recommended",
|
|
1855
|
+
VIABLE_OPTION: "viableOption",
|
|
1856
|
+
};
|
|
1857
|
+
const ApplicationMode = {
|
|
1858
|
+
ALL: "ALL",
|
|
1859
|
+
KNOWN: "KNOWN",
|
|
1860
|
+
UNKNOWN: "UNKNOWN",
|
|
1861
|
+
};
|
|
1862
|
+
const AwsManagedTargetDestination = {
|
|
1863
|
+
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
1864
|
+
AWS_FARGATE: "AWS Fargate",
|
|
1865
|
+
NONE_SPECIFIED: "None specified",
|
|
1866
|
+
};
|
|
1867
|
+
const NoPreferenceTargetDestination = {
|
|
1868
|
+
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
1869
|
+
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
1870
|
+
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
1871
|
+
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
1872
|
+
AWS_FARGATE: "AWS Fargate",
|
|
1873
|
+
NONE_SPECIFIED: "None specified",
|
|
1874
|
+
};
|
|
1875
|
+
const SelfManageTargetDestination = {
|
|
1876
|
+
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
1877
|
+
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
1878
|
+
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
1879
|
+
NONE_SPECIFIED: "None specified",
|
|
1880
|
+
};
|
|
1881
|
+
const AssessmentDataSourceType = {
|
|
1882
|
+
ADS: "ApplicationDiscoveryService",
|
|
1883
|
+
MANUAL_IMPORT: "ManualImport",
|
|
1884
|
+
SR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector",
|
|
1885
|
+
};
|
|
1886
|
+
const AssessmentStatus = {
|
|
1887
|
+
COMPLETE: "COMPLETE",
|
|
1888
|
+
FAILED: "FAILED",
|
|
1889
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1890
|
+
STOPPED: "STOPPED",
|
|
1891
|
+
};
|
|
1892
|
+
const RunTimeAssessmentStatus = {
|
|
1893
|
+
DC_FAILED: "dataCollectionTaskFailed",
|
|
1894
|
+
DC_PARTIAL_SUCCESS: "dataCollectionTaskPartialSuccess",
|
|
1895
|
+
DC_REQ_SENT: "dataCollectionTaskScheduled",
|
|
1896
|
+
DC_STARTED: "dataCollectionTaskStarted",
|
|
1897
|
+
DC_STOPPED: "dataCollectionTaskStopped",
|
|
1898
|
+
DC_SUCCESS: "dataCollectionTaskSuccess",
|
|
1899
|
+
DC_TO_BE_SCHEDULED: "dataCollectionTaskToBeScheduled",
|
|
1900
|
+
};
|
|
1901
|
+
const ServerOsType = {
|
|
1902
|
+
amazonLinux: "AmazonLinux",
|
|
1903
|
+
endOfSupportWindowsServer: "EndOfSupportWindowsServer",
|
|
1904
|
+
other: "Other",
|
|
1905
|
+
redhat: "Redhat",
|
|
1906
|
+
windowsServer: "WindowsServer",
|
|
1907
|
+
};
|
|
1908
|
+
const Condition = {
|
|
1909
|
+
CONTAINS: "CONTAINS",
|
|
1910
|
+
EQUALS: "EQUALS",
|
|
1911
|
+
NOT_CONTAINS: "NOT_CONTAINS",
|
|
1912
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
1913
|
+
};
|
|
1914
|
+
const AuthType = {
|
|
1915
|
+
CERT: "CERT",
|
|
1916
|
+
NTLM: "NTLM",
|
|
1917
|
+
SSH: "SSH",
|
|
1918
|
+
};
|
|
1919
|
+
const ImportFileTaskStatus = {
|
|
1920
|
+
DELETE_FAILED: "DeleteFailed",
|
|
1921
|
+
DELETE_IN_PROGRESS: "DeleteInProgress",
|
|
1922
|
+
DELETE_PARTIAL_SUCCESS: "DeletePartialSuccess",
|
|
1923
|
+
DELETE_SUCCESS: "DeleteSuccess",
|
|
1924
|
+
IMPORT_FAILED: "ImportFailed",
|
|
1925
|
+
IMPORT_IN_PROGRESS: "ImportInProgress",
|
|
1926
|
+
IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess",
|
|
1927
|
+
IMPORT_SUCCESS: "ImportSuccess",
|
|
1928
|
+
};
|
|
1929
|
+
const DatabaseManagementPreference = {
|
|
1930
|
+
AWS_MANAGED: "AWS-managed",
|
|
1931
|
+
NO_PREFERENCE: "No preference",
|
|
1932
|
+
SELF_MANAGE: "Self-manage",
|
|
1933
|
+
};
|
|
1934
|
+
const HeterogeneousTargetDatabaseEngine = {
|
|
1935
|
+
AMAZON_AURORA: "Amazon Aurora",
|
|
1936
|
+
AWS_POSTGRESQL: "AWS PostgreSQL",
|
|
1937
|
+
DB2_LUW: "Db2 LUW",
|
|
1938
|
+
MARIA_DB: "MariaDB",
|
|
1939
|
+
MICROSOFT_SQL_SERVER: "Microsoft SQL Server",
|
|
1940
|
+
MONGO_DB: "MongoDB",
|
|
1941
|
+
MYSQL: "MySQL",
|
|
1942
|
+
NONE_SPECIFIED: "None specified",
|
|
1943
|
+
ORACLE_DATABASE: "Oracle Database",
|
|
1944
|
+
SAP: "SAP",
|
|
1945
|
+
};
|
|
1946
|
+
const HomogeneousTargetDatabaseEngine = {
|
|
1947
|
+
NONE_SPECIFIED: "None specified",
|
|
1948
|
+
};
|
|
1949
|
+
const TargetDatabaseEngine = {
|
|
1950
|
+
AMAZON_AURORA: "Amazon Aurora",
|
|
1951
|
+
AWS_POSTGRESQL: "AWS PostgreSQL",
|
|
1952
|
+
DB2_LUW: "Db2 LUW",
|
|
1953
|
+
MARIA_DB: "MariaDB",
|
|
1954
|
+
MICROSOFT_SQL_SERVER: "Microsoft SQL Server",
|
|
1955
|
+
MONGO_DB: "MongoDB",
|
|
1956
|
+
MYSQL: "MySQL",
|
|
1957
|
+
NONE_SPECIFIED: "None specified",
|
|
1958
|
+
ORACLE_DATABASE: "Oracle Database",
|
|
1959
|
+
SAP: "SAP",
|
|
1960
|
+
};
|
|
1961
|
+
const RecommendationReportStatus = {
|
|
1962
|
+
FAILED: "FAILED",
|
|
1963
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1964
|
+
SUCCESS: "SUCCESS",
|
|
1965
|
+
};
|
|
1966
|
+
const ServerErrorCategory = {
|
|
1967
|
+
ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR",
|
|
1968
|
+
CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR",
|
|
1969
|
+
CREDENTIAL_ERROR: "CREDENTIAL_ERROR",
|
|
1970
|
+
OTHER_ERROR: "OTHER_ERROR",
|
|
1971
|
+
PERMISSION_ERROR: "PERMISSION_ERROR",
|
|
1972
|
+
};
|
|
1973
|
+
const OSType = {
|
|
1974
|
+
LINUX: "LINUX",
|
|
1975
|
+
WINDOWS: "WINDOWS",
|
|
1976
|
+
};
|
|
1977
|
+
const SortOrder = {
|
|
1978
|
+
ASC: "ASC",
|
|
1979
|
+
DESC: "DESC",
|
|
1980
|
+
};
|
|
1981
|
+
const GroupName = {
|
|
1982
|
+
EXTERNAL_ID: "ExternalId",
|
|
1983
|
+
EXTERNAL_SOURCE_TYPE: "ExternalSourceType",
|
|
1984
|
+
};
|
|
1985
|
+
const CollectorHealth = {
|
|
1986
|
+
COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY",
|
|
1987
|
+
COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY",
|
|
1988
|
+
};
|
|
1989
|
+
const PipelineType = {
|
|
1990
|
+
AZURE_DEVOPS: "AZURE_DEVOPS",
|
|
1991
|
+
};
|
|
1992
|
+
const VersionControlType = {
|
|
1993
|
+
AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT",
|
|
1994
|
+
GITHUB: "GITHUB",
|
|
1995
|
+
GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
|
|
1996
|
+
};
|
|
1997
|
+
const ServerCriteria = {
|
|
1998
|
+
ANALYSIS_STATUS: "ANALYSIS_STATUS",
|
|
1999
|
+
DESTINATION: "DESTINATION",
|
|
2000
|
+
ERROR_CATEGORY: "ERROR_CATEGORY",
|
|
2001
|
+
NOT_DEFINED: "NOT_DEFINED",
|
|
2002
|
+
OS_NAME: "OS_NAME",
|
|
2003
|
+
SERVER_ID: "SERVER_ID",
|
|
2004
|
+
STRATEGY: "STRATEGY",
|
|
2005
|
+
};
|
|
2006
|
+
const DataSourceType = {
|
|
2007
|
+
ADS: "ApplicationDiscoveryService",
|
|
2008
|
+
IMPORT: "Import",
|
|
2009
|
+
MHSR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector",
|
|
2010
|
+
MPA: "MPA",
|
|
2011
|
+
};
|
|
2012
|
+
const OutputFormat = {
|
|
2013
|
+
Excel: "Excel",
|
|
2014
|
+
Json: "Json",
|
|
2015
|
+
};
|
|
2016
|
+
const VersionControl = {
|
|
2017
|
+
AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT",
|
|
2018
|
+
GITHUB: "GITHUB",
|
|
2019
|
+
GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
|
|
2020
|
+
};
|
|
2021
|
+
|
|
1716
2022
|
Object.defineProperty(exports, "$Command", {
|
|
1717
2023
|
enumerable: true,
|
|
1718
2024
|
get: function () { return smithyClient.Command; }
|
|
@@ -1722,7 +2028,22 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1722
2028
|
get: function () { return smithyClient.Client; }
|
|
1723
2029
|
});
|
|
1724
2030
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2031
|
+
exports.AnalysisType = AnalysisType;
|
|
2032
|
+
exports.AntipatternReportStatus = AntipatternReportStatus;
|
|
2033
|
+
exports.AppType = AppType;
|
|
2034
|
+
exports.AppUnitErrorCategory = AppUnitErrorCategory;
|
|
2035
|
+
exports.ApplicationComponentCriteria = ApplicationComponentCriteria;
|
|
2036
|
+
exports.ApplicationMode = ApplicationMode;
|
|
2037
|
+
exports.AssessmentDataSourceType = AssessmentDataSourceType;
|
|
2038
|
+
exports.AssessmentStatus = AssessmentStatus;
|
|
2039
|
+
exports.AuthType = AuthType;
|
|
2040
|
+
exports.AwsManagedTargetDestination = AwsManagedTargetDestination;
|
|
2041
|
+
exports.BinaryAnalyzerName = BinaryAnalyzerName;
|
|
2042
|
+
exports.CollectorHealth = CollectorHealth;
|
|
2043
|
+
exports.Condition = Condition;
|
|
1725
2044
|
exports.ConflictException = ConflictException$1;
|
|
2045
|
+
exports.DataSourceType = DataSourceType;
|
|
2046
|
+
exports.DatabaseManagementPreference = DatabaseManagementPreference;
|
|
1726
2047
|
exports.DependencyException = DependencyException$1;
|
|
1727
2048
|
exports.GetApplicationComponentDetailsCommand = GetApplicationComponentDetailsCommand;
|
|
1728
2049
|
exports.GetApplicationComponentStrategiesCommand = GetApplicationComponentStrategiesCommand;
|
|
@@ -1734,6 +2055,11 @@ exports.GetPortfolioSummaryCommand = GetPortfolioSummaryCommand;
|
|
|
1734
2055
|
exports.GetRecommendationReportDetailsCommand = GetRecommendationReportDetailsCommand;
|
|
1735
2056
|
exports.GetServerDetailsCommand = GetServerDetailsCommand;
|
|
1736
2057
|
exports.GetServerStrategiesCommand = GetServerStrategiesCommand;
|
|
2058
|
+
exports.GroupName = GroupName;
|
|
2059
|
+
exports.HeterogeneousTargetDatabaseEngine = HeterogeneousTargetDatabaseEngine;
|
|
2060
|
+
exports.HomogeneousTargetDatabaseEngine = HomogeneousTargetDatabaseEngine;
|
|
2061
|
+
exports.ImportFileTaskStatus = ImportFileTaskStatus;
|
|
2062
|
+
exports.InclusionStatus = InclusionStatus;
|
|
1737
2063
|
exports.InternalServerException = InternalServerException$1;
|
|
1738
2064
|
exports.ListAnalyzableServersCommand = ListAnalyzableServersCommand;
|
|
1739
2065
|
exports.ListApplicationComponentsCommand = ListApplicationComponentsCommand;
|
|
@@ -1743,18 +2069,42 @@ exports.ListServersCommand = ListServersCommand;
|
|
|
1743
2069
|
exports.MigrationHubStrategy = MigrationHubStrategy;
|
|
1744
2070
|
exports.MigrationHubStrategyClient = MigrationHubStrategyClient;
|
|
1745
2071
|
exports.MigrationHubStrategyServiceException = MigrationHubStrategyServiceException$1;
|
|
2072
|
+
exports.NoPreferenceTargetDestination = NoPreferenceTargetDestination;
|
|
2073
|
+
exports.OSType = OSType;
|
|
2074
|
+
exports.OutputFormat = OutputFormat;
|
|
2075
|
+
exports.PipelineType = PipelineType;
|
|
1746
2076
|
exports.PutPortfolioPreferencesCommand = PutPortfolioPreferencesCommand;
|
|
2077
|
+
exports.RecommendationReportStatus = RecommendationReportStatus;
|
|
1747
2078
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2079
|
+
exports.ResourceSubType = ResourceSubType;
|
|
2080
|
+
exports.RunTimeAnalyzerName = RunTimeAnalyzerName;
|
|
2081
|
+
exports.RunTimeAssessmentStatus = RunTimeAssessmentStatus;
|
|
2082
|
+
exports.RuntimeAnalysisStatus = RuntimeAnalysisStatus;
|
|
2083
|
+
exports.SelfManageTargetDestination = SelfManageTargetDestination;
|
|
2084
|
+
exports.ServerCriteria = ServerCriteria;
|
|
2085
|
+
exports.ServerErrorCategory = ServerErrorCategory;
|
|
2086
|
+
exports.ServerOsType = ServerOsType;
|
|
1748
2087
|
exports.ServiceLinkedRoleLockClientException = ServiceLinkedRoleLockClientException$1;
|
|
1749
2088
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2089
|
+
exports.Severity = Severity;
|
|
2090
|
+
exports.SortOrder = SortOrder;
|
|
2091
|
+
exports.SourceCodeAnalyzerName = SourceCodeAnalyzerName;
|
|
2092
|
+
exports.SrcCodeOrDbAnalysisStatus = SrcCodeOrDbAnalysisStatus;
|
|
1750
2093
|
exports.StartAssessmentCommand = StartAssessmentCommand;
|
|
1751
2094
|
exports.StartImportFileTaskCommand = StartImportFileTaskCommand;
|
|
1752
2095
|
exports.StartRecommendationReportGenerationCommand = StartRecommendationReportGenerationCommand;
|
|
1753
2096
|
exports.StopAssessmentCommand = StopAssessmentCommand;
|
|
2097
|
+
exports.Strategy = Strategy;
|
|
2098
|
+
exports.StrategyRecommendation = StrategyRecommendation;
|
|
2099
|
+
exports.TargetDatabaseEngine = TargetDatabaseEngine;
|
|
2100
|
+
exports.TargetDestination = TargetDestination;
|
|
1754
2101
|
exports.ThrottlingException = ThrottlingException$1;
|
|
2102
|
+
exports.TransformationToolName = TransformationToolName;
|
|
1755
2103
|
exports.UpdateApplicationComponentConfigCommand = UpdateApplicationComponentConfigCommand;
|
|
1756
2104
|
exports.UpdateServerConfigCommand = UpdateServerConfigCommand;
|
|
1757
2105
|
exports.ValidationException = ValidationException$1;
|
|
2106
|
+
exports.VersionControl = VersionControl;
|
|
2107
|
+
exports.VersionControlType = VersionControlType;
|
|
1758
2108
|
exports.paginateGetServerDetails = paginateGetServerDetails;
|
|
1759
2109
|
exports.paginateListAnalyzableServers = paginateListAnalyzableServers;
|
|
1760
2110
|
exports.paginateListApplicationComponents = paginateListApplicationComponents;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./MigrationHubStrategyClient";
|
|
|
2
2
|
export * from "./MigrationHubStrategy";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { MigrationHubStrategyServiceException } from "./models/MigrationHubStrategyServiceException";
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
export const RuntimeAnalysisStatus = {
|
|
2
|
+
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
3
|
+
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
4
|
+
ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS",
|
|
5
|
+
ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED",
|
|
6
|
+
};
|
|
7
|
+
export const SrcCodeOrDbAnalysisStatus = {
|
|
8
|
+
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
9
|
+
ANALYSIS_PARTIAL_SUCCESS: "ANALYSIS_PARTIAL_SUCCESS",
|
|
10
|
+
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
11
|
+
ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS",
|
|
12
|
+
ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED",
|
|
13
|
+
CONFIGURED: "CONFIGURED",
|
|
14
|
+
UNCONFIGURED: "UNCONFIGURED",
|
|
15
|
+
};
|
|
16
|
+
export const AnalysisType = {
|
|
17
|
+
BINARY_ANALYSIS: "BINARY_ANALYSIS",
|
|
18
|
+
DATABASE_ANALYSIS: "DATABASE_ANALYSIS",
|
|
19
|
+
RUNTIME_ANALYSIS: "RUNTIME_ANALYSIS",
|
|
20
|
+
SOURCE_CODE_ANALYSIS: "SOURCE_CODE_ANALYSIS",
|
|
21
|
+
};
|
|
22
|
+
export const BinaryAnalyzerName = {
|
|
23
|
+
BYTECODE_ANALYZER: "BYTECODE_ANALYZER",
|
|
24
|
+
DLL_ANALYZER: "DLL_ANALYZER",
|
|
25
|
+
};
|
|
26
|
+
export const RunTimeAnalyzerName = {
|
|
27
|
+
A2C_ANALYZER: "A2C_ANALYZER",
|
|
28
|
+
DATABASE_ANALYZER: "DATABASE_ANALYZER",
|
|
29
|
+
EMP_PA_ANALYZER: "EMP_PA_ANALYZER",
|
|
30
|
+
REHOST_ANALYZER: "REHOST_ANALYZER",
|
|
31
|
+
SCT_ANALYZER: "SCT_ANALYZER",
|
|
32
|
+
};
|
|
33
|
+
export const SourceCodeAnalyzerName = {
|
|
34
|
+
BYTECODE_ANALYZER: "BYTECODE_ANALYZER",
|
|
35
|
+
CSHARP_ANALYZER: "CSHARP_ANALYZER",
|
|
36
|
+
JAVA_ANALYZER: "JAVA_ANALYZER",
|
|
37
|
+
PORTING_ASSISTANT: "PORTING_ASSISTANT",
|
|
38
|
+
};
|
|
39
|
+
export const AntipatternReportStatus = {
|
|
40
|
+
FAILED: "FAILED",
|
|
41
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
42
|
+
SUCCESS: "SUCCESS",
|
|
43
|
+
};
|
|
44
|
+
export const Severity = {
|
|
45
|
+
HIGH: "HIGH",
|
|
46
|
+
LOW: "LOW",
|
|
47
|
+
MEDIUM: "MEDIUM",
|
|
48
|
+
};
|
|
49
|
+
export const ApplicationComponentCriteria = {
|
|
50
|
+
ANALYSIS_STATUS: "ANALYSIS_STATUS",
|
|
51
|
+
APP_NAME: "APP_NAME",
|
|
52
|
+
APP_TYPE: "APP_TYPE",
|
|
53
|
+
DESTINATION: "DESTINATION",
|
|
54
|
+
ERROR_CATEGORY: "ERROR_CATEGORY",
|
|
55
|
+
NOT_DEFINED: "NOT_DEFINED",
|
|
56
|
+
SERVER_ID: "SERVER_ID",
|
|
57
|
+
STRATEGY: "STRATEGY",
|
|
58
|
+
};
|
|
59
|
+
export const AppType = {
|
|
60
|
+
IIS: "IIS",
|
|
61
|
+
cassandra: "Cassandra",
|
|
62
|
+
db2: "DB2",
|
|
63
|
+
dotNetFramework: "DotNetFramework",
|
|
64
|
+
dotnet: "Dotnet",
|
|
65
|
+
dotnetcore: "DotnetCore",
|
|
66
|
+
java: "Java",
|
|
67
|
+
jboss: "JBoss",
|
|
68
|
+
mariadb: "Maria DB",
|
|
69
|
+
mongodb: "Mongo DB",
|
|
70
|
+
mysql: "MySQL",
|
|
71
|
+
oracle: "Oracle",
|
|
72
|
+
other: "Other",
|
|
73
|
+
postgresqlserver: "PostgreSQLServer",
|
|
74
|
+
spring: "Spring",
|
|
75
|
+
sqlServer: "SQLServer",
|
|
76
|
+
sybase: "Sybase",
|
|
77
|
+
tomcat: "Tomcat",
|
|
78
|
+
unknown: "Unknown",
|
|
79
|
+
visualbasic: "Visual Basic",
|
|
80
|
+
weblogic: "Oracle WebLogic",
|
|
81
|
+
websphere: "IBM WebSphere",
|
|
82
|
+
};
|
|
83
|
+
export const AppUnitErrorCategory = {
|
|
84
|
+
CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR",
|
|
85
|
+
CREDENTIAL_ERROR: "CREDENTIAL_ERROR",
|
|
86
|
+
OTHER_ERROR: "OTHER_ERROR",
|
|
87
|
+
PERMISSION_ERROR: "PERMISSION_ERROR",
|
|
88
|
+
UNSUPPORTED_ERROR: "UNSUPPORTED_ERROR",
|
|
89
|
+
};
|
|
90
|
+
export const InclusionStatus = {
|
|
91
|
+
EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment",
|
|
92
|
+
INCLUDE_IN_RECOMMENDATION: "includeInAssessment",
|
|
93
|
+
};
|
|
94
|
+
export const Strategy = {
|
|
95
|
+
REFACTOR: "Refactor",
|
|
96
|
+
REHOST: "Rehost",
|
|
97
|
+
RELOCATE: "Relocate",
|
|
98
|
+
REPLATFORM: "Replatform",
|
|
99
|
+
REPURCHASE: "Repurchase",
|
|
100
|
+
RETAIN: "Retain",
|
|
101
|
+
RETIREMENT: "Retirement",
|
|
102
|
+
};
|
|
103
|
+
export const TargetDestination = {
|
|
104
|
+
AMAZON_DOCUMENTDB: "Amazon DocumentDB",
|
|
105
|
+
AMAZON_DYNAMODB: "Amazon DynamoDB",
|
|
106
|
+
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
107
|
+
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
108
|
+
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
109
|
+
AMAZON_RDS: "Amazon Relational Database Service",
|
|
110
|
+
AMAZON_RDS_MYSQL: "Amazon Relational Database Service on MySQL",
|
|
111
|
+
AMAZON_RDS_POSTGRESQL: "Amazon Relational Database Service on PostgreSQL",
|
|
112
|
+
AURORA_MYSQL: "Aurora MySQL",
|
|
113
|
+
AURORA_POSTGRESQL: "Aurora PostgreSQL",
|
|
114
|
+
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
115
|
+
AWS_FARGATE: "AWS Fargate",
|
|
116
|
+
BABELFISH_AURORA_POSTGRESQL: "Babelfish for Aurora PostgreSQL",
|
|
117
|
+
NONE_SPECIFIED: "None specified",
|
|
118
|
+
};
|
|
119
|
+
export const TransformationToolName = {
|
|
120
|
+
APP2CONTAINER: "App2Container",
|
|
121
|
+
DMS: "Database Migration Service",
|
|
122
|
+
EMP: "End of Support Migration",
|
|
123
|
+
IN_PLACE_OS_UPGRADE: "In Place Operating System Upgrade",
|
|
124
|
+
MGN: "Application Migration Service",
|
|
125
|
+
NATIVE_SQL: "Native SQL Server Backup/Restore",
|
|
126
|
+
PORTING_ASSISTANT: "Porting Assistant For .NET",
|
|
127
|
+
SCT: "Schema Conversion Tool",
|
|
128
|
+
STRATEGY_RECOMMENDATION_SUPPORT: "Strategy Recommendation Support",
|
|
129
|
+
WWAMA: "Windows Web Application Migration Assistant",
|
|
130
|
+
};
|
|
131
|
+
export const ResourceSubType = {
|
|
132
|
+
DATABASE: "Database",
|
|
133
|
+
DATABASE_PROCESS: "DatabaseProcess",
|
|
134
|
+
PROCESS: "Process",
|
|
135
|
+
};
|
|
136
|
+
export const StrategyRecommendation = {
|
|
137
|
+
NOT_RECOMMENDED: "notRecommended",
|
|
138
|
+
POTENTIAL: "potential",
|
|
139
|
+
RECOMMENDED: "recommended",
|
|
140
|
+
VIABLE_OPTION: "viableOption",
|
|
141
|
+
};
|
|
142
|
+
export const ApplicationMode = {
|
|
143
|
+
ALL: "ALL",
|
|
144
|
+
KNOWN: "KNOWN",
|
|
145
|
+
UNKNOWN: "UNKNOWN",
|
|
146
|
+
};
|
|
147
|
+
export const AwsManagedTargetDestination = {
|
|
148
|
+
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
149
|
+
AWS_FARGATE: "AWS Fargate",
|
|
150
|
+
NONE_SPECIFIED: "None specified",
|
|
151
|
+
};
|
|
152
|
+
export const NoPreferenceTargetDestination = {
|
|
153
|
+
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
154
|
+
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
155
|
+
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
156
|
+
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
157
|
+
AWS_FARGATE: "AWS Fargate",
|
|
158
|
+
NONE_SPECIFIED: "None specified",
|
|
159
|
+
};
|
|
160
|
+
export const SelfManageTargetDestination = {
|
|
161
|
+
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
162
|
+
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
163
|
+
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
164
|
+
NONE_SPECIFIED: "None specified",
|
|
165
|
+
};
|
|
166
|
+
export const AssessmentDataSourceType = {
|
|
167
|
+
ADS: "ApplicationDiscoveryService",
|
|
168
|
+
MANUAL_IMPORT: "ManualImport",
|
|
169
|
+
SR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector",
|
|
170
|
+
};
|
|
171
|
+
export const AssessmentStatus = {
|
|
172
|
+
COMPLETE: "COMPLETE",
|
|
173
|
+
FAILED: "FAILED",
|
|
174
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
175
|
+
STOPPED: "STOPPED",
|
|
176
|
+
};
|
|
177
|
+
export const RunTimeAssessmentStatus = {
|
|
178
|
+
DC_FAILED: "dataCollectionTaskFailed",
|
|
179
|
+
DC_PARTIAL_SUCCESS: "dataCollectionTaskPartialSuccess",
|
|
180
|
+
DC_REQ_SENT: "dataCollectionTaskScheduled",
|
|
181
|
+
DC_STARTED: "dataCollectionTaskStarted",
|
|
182
|
+
DC_STOPPED: "dataCollectionTaskStopped",
|
|
183
|
+
DC_SUCCESS: "dataCollectionTaskSuccess",
|
|
184
|
+
DC_TO_BE_SCHEDULED: "dataCollectionTaskToBeScheduled",
|
|
185
|
+
};
|
|
186
|
+
export const ServerOsType = {
|
|
187
|
+
amazonLinux: "AmazonLinux",
|
|
188
|
+
endOfSupportWindowsServer: "EndOfSupportWindowsServer",
|
|
189
|
+
other: "Other",
|
|
190
|
+
redhat: "Redhat",
|
|
191
|
+
windowsServer: "WindowsServer",
|
|
192
|
+
};
|
|
193
|
+
export const Condition = {
|
|
194
|
+
CONTAINS: "CONTAINS",
|
|
195
|
+
EQUALS: "EQUALS",
|
|
196
|
+
NOT_CONTAINS: "NOT_CONTAINS",
|
|
197
|
+
NOT_EQUALS: "NOT_EQUALS",
|
|
198
|
+
};
|
|
199
|
+
export const AuthType = {
|
|
200
|
+
CERT: "CERT",
|
|
201
|
+
NTLM: "NTLM",
|
|
202
|
+
SSH: "SSH",
|
|
203
|
+
};
|
|
204
|
+
export const ImportFileTaskStatus = {
|
|
205
|
+
DELETE_FAILED: "DeleteFailed",
|
|
206
|
+
DELETE_IN_PROGRESS: "DeleteInProgress",
|
|
207
|
+
DELETE_PARTIAL_SUCCESS: "DeletePartialSuccess",
|
|
208
|
+
DELETE_SUCCESS: "DeleteSuccess",
|
|
209
|
+
IMPORT_FAILED: "ImportFailed",
|
|
210
|
+
IMPORT_IN_PROGRESS: "ImportInProgress",
|
|
211
|
+
IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess",
|
|
212
|
+
IMPORT_SUCCESS: "ImportSuccess",
|
|
213
|
+
};
|
|
214
|
+
export const DatabaseManagementPreference = {
|
|
215
|
+
AWS_MANAGED: "AWS-managed",
|
|
216
|
+
NO_PREFERENCE: "No preference",
|
|
217
|
+
SELF_MANAGE: "Self-manage",
|
|
218
|
+
};
|
|
219
|
+
export const HeterogeneousTargetDatabaseEngine = {
|
|
220
|
+
AMAZON_AURORA: "Amazon Aurora",
|
|
221
|
+
AWS_POSTGRESQL: "AWS PostgreSQL",
|
|
222
|
+
DB2_LUW: "Db2 LUW",
|
|
223
|
+
MARIA_DB: "MariaDB",
|
|
224
|
+
MICROSOFT_SQL_SERVER: "Microsoft SQL Server",
|
|
225
|
+
MONGO_DB: "MongoDB",
|
|
226
|
+
MYSQL: "MySQL",
|
|
227
|
+
NONE_SPECIFIED: "None specified",
|
|
228
|
+
ORACLE_DATABASE: "Oracle Database",
|
|
229
|
+
SAP: "SAP",
|
|
230
|
+
};
|
|
231
|
+
export const HomogeneousTargetDatabaseEngine = {
|
|
232
|
+
NONE_SPECIFIED: "None specified",
|
|
233
|
+
};
|
|
234
|
+
export const TargetDatabaseEngine = {
|
|
235
|
+
AMAZON_AURORA: "Amazon Aurora",
|
|
236
|
+
AWS_POSTGRESQL: "AWS PostgreSQL",
|
|
237
|
+
DB2_LUW: "Db2 LUW",
|
|
238
|
+
MARIA_DB: "MariaDB",
|
|
239
|
+
MICROSOFT_SQL_SERVER: "Microsoft SQL Server",
|
|
240
|
+
MONGO_DB: "MongoDB",
|
|
241
|
+
MYSQL: "MySQL",
|
|
242
|
+
NONE_SPECIFIED: "None specified",
|
|
243
|
+
ORACLE_DATABASE: "Oracle Database",
|
|
244
|
+
SAP: "SAP",
|
|
245
|
+
};
|
|
246
|
+
export const RecommendationReportStatus = {
|
|
247
|
+
FAILED: "FAILED",
|
|
248
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
249
|
+
SUCCESS: "SUCCESS",
|
|
250
|
+
};
|
|
251
|
+
export const ServerErrorCategory = {
|
|
252
|
+
ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR",
|
|
253
|
+
CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR",
|
|
254
|
+
CREDENTIAL_ERROR: "CREDENTIAL_ERROR",
|
|
255
|
+
OTHER_ERROR: "OTHER_ERROR",
|
|
256
|
+
PERMISSION_ERROR: "PERMISSION_ERROR",
|
|
257
|
+
};
|
|
258
|
+
export const OSType = {
|
|
259
|
+
LINUX: "LINUX",
|
|
260
|
+
WINDOWS: "WINDOWS",
|
|
261
|
+
};
|
|
262
|
+
export const SortOrder = {
|
|
263
|
+
ASC: "ASC",
|
|
264
|
+
DESC: "DESC",
|
|
265
|
+
};
|
|
266
|
+
export const GroupName = {
|
|
267
|
+
EXTERNAL_ID: "ExternalId",
|
|
268
|
+
EXTERNAL_SOURCE_TYPE: "ExternalSourceType",
|
|
269
|
+
};
|
|
270
|
+
export const CollectorHealth = {
|
|
271
|
+
COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY",
|
|
272
|
+
COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY",
|
|
273
|
+
};
|
|
274
|
+
export const PipelineType = {
|
|
275
|
+
AZURE_DEVOPS: "AZURE_DEVOPS",
|
|
276
|
+
};
|
|
277
|
+
export const VersionControlType = {
|
|
278
|
+
AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT",
|
|
279
|
+
GITHUB: "GITHUB",
|
|
280
|
+
GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
|
|
281
|
+
};
|
|
282
|
+
export const ServerCriteria = {
|
|
283
|
+
ANALYSIS_STATUS: "ANALYSIS_STATUS",
|
|
284
|
+
DESTINATION: "DESTINATION",
|
|
285
|
+
ERROR_CATEGORY: "ERROR_CATEGORY",
|
|
286
|
+
NOT_DEFINED: "NOT_DEFINED",
|
|
287
|
+
OS_NAME: "OS_NAME",
|
|
288
|
+
SERVER_ID: "SERVER_ID",
|
|
289
|
+
STRATEGY: "STRATEGY",
|
|
290
|
+
};
|
|
291
|
+
export const DataSourceType = {
|
|
292
|
+
ADS: "ApplicationDiscoveryService",
|
|
293
|
+
IMPORT: "Import",
|
|
294
|
+
MHSR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector",
|
|
295
|
+
MPA: "MPA",
|
|
296
|
+
};
|
|
297
|
+
export const OutputFormat = {
|
|
298
|
+
Excel: "Excel",
|
|
299
|
+
Json: "Json",
|
|
300
|
+
};
|
|
301
|
+
export const VersionControl = {
|
|
302
|
+
AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT",
|
|
303
|
+
GITHUB: "GITHUB",
|
|
304
|
+
GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
|
|
305
|
+
};
|