Skip to content

Commit

Permalink
Generated from 497f37d011e45d90e7a5f190b1326ec89e2719c8
Browse files Browse the repository at this point in the history
Merge pull request #6 from Khushboo-Baheti/master

merge
  • Loading branch information
SDK Automation committed Feb 24, 2020
1 parent a25a803 commit 178fb36
Show file tree
Hide file tree
Showing 4 changed files with 207 additions and 62 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@
BackupMode,
SyncTableMigrationState,
SyncDatabaseMigrationReportingState,
ReplicateMigrationState,
ScenarioTarget,
ScenarioSource,
ValidationStatus,
Severity,
UpdateActionType,
Expand Down Expand Up @@ -866,6 +869,9 @@
'BackupMode',
'SyncTableMigrationState',
'SyncDatabaseMigrationReportingState',
'ReplicateMigrationState',
'ScenarioTarget',
'ScenarioSource',
'ValidationStatus',
'Severity',
'UpdateActionType',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,49 @@ class SyncDatabaseMigrationReportingState(str, Enum):
cancelling = "CANCELLING"
cancelled = "CANCELLED"
failed = "FAILED"
validating = "VALIDATING"
validation_complete = "VALIDATION_COMPLETE"
validation_failed = "VALIDATION_FAILED"
restore_in_progress = "RESTORE_IN_PROGRESS"
restore_completed = "RESTORE_COMPLETED"
backup_in_progress = "BACKUP_IN_PROGRESS"
backup_completed = "BACKUP_COMPLETED"


class ReplicateMigrationState(str, Enum):

undefined = "UNDEFINED"
validating = "VALIDATING"
pending = "PENDING"
complete = "COMPLETE"
action_required = "ACTION_REQUIRED"
failed = "FAILED"


class ScenarioTarget(str, Enum):

sql_server = "SQLServer"
sqldb = "SQLDB"
sqldw = "SQLDW"
sqlmi = "SQLMI"
azure_db_for_my_sql = "AzureDBForMySql"
azure_db_for_postgres_sql = "AzureDBForPostgresSQL"
mongo_db = "MongoDB"


class ScenarioSource(str, Enum):

access = "Access"
db2 = "DB2"
my_sql = "MySQL"
oracle = "Oracle"
sql = "SQL"
sybase = "Sybase"
postgre_sql = "PostgreSQL"
mongo_db = "MongoDB"
sqlrds = "SQLRDS"
my_sqlrds = "MySQLRDS"
postgre_sqlrds = "PostgreSQLRDS"


class ValidationStatus(str, Enum):
Expand Down
Loading

0 comments on commit 178fb36

Please sign in to comment.