Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datamigration/resource-manager] fix bad 'unknown' discriminator value in the rest of our datamigratio… #5547

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions profiles/latest/datamigration/mgmt/datamigration/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ const (
type CommandType = original.CommandType

const (
CommandTypeCommandProperties CommandType = original.CommandTypeCommandProperties
CommandTypeMigrateSQLServerAzureDbSQLMiComplete CommandType = original.CommandTypeMigrateSQLServerAzureDbSQLMiComplete
CommandTypeMigrateSyncCompleteDatabase CommandType = original.CommandTypeMigrateSyncCompleteDatabase
CommandTypeUnknown CommandType = original.CommandTypeUnknown
)

type DatabaseCompatLevel = original.DatabaseCompatLevel
Expand Down Expand Up @@ -486,7 +486,7 @@ const (
TaskTypeMigrateSQLServerAzureSQLDbMISyncLRS TaskType = original.TaskTypeMigrateSQLServerAzureSQLDbMISyncLRS
TaskTypeMigrateSQLServerAzureSQLDbSync TaskType = original.TaskTypeMigrateSQLServerAzureSQLDbSync
TaskTypeMigrateSQLServerSQLDb TaskType = original.TaskTypeMigrateSQLServerSQLDb
TaskTypeUnknown TaskType = original.TaskTypeUnknown
TaskTypeProjectTaskProperties TaskType = original.TaskTypeProjectTaskProperties
TaskTypeValidateMigrationInputSQLServerAzureSQLDbMI TaskType = original.TaskTypeValidateMigrationInputSQLServerAzureSQLDbMI
TaskTypeValidateMigrationInputSQLServerAzureSQLDbMISyncLRS TaskType = original.TaskTypeValidateMigrationInputSQLServerAzureSQLDbMISyncLRS
TaskTypeValidateMigrationInputSQLServerSQLDbSync TaskType = original.TaskTypeValidateMigrationInputSQLServerSQLDbSync
Expand Down
4 changes: 2 additions & 2 deletions profiles/preview/datamigration/mgmt/datamigration/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ const (
type CommandType = original.CommandType

const (
CommandTypeCommandProperties CommandType = original.CommandTypeCommandProperties
CommandTypeMigrateSQLServerAzureDbSQLMiComplete CommandType = original.CommandTypeMigrateSQLServerAzureDbSQLMiComplete
CommandTypeMigrateSyncCompleteDatabase CommandType = original.CommandTypeMigrateSyncCompleteDatabase
CommandTypeUnknown CommandType = original.CommandTypeUnknown
)

type DatabaseCompatLevel = original.DatabaseCompatLevel
Expand Down Expand Up @@ -486,7 +486,7 @@ const (
TaskTypeMigrateSQLServerAzureSQLDbMISyncLRS TaskType = original.TaskTypeMigrateSQLServerAzureSQLDbMISyncLRS
TaskTypeMigrateSQLServerAzureSQLDbSync TaskType = original.TaskTypeMigrateSQLServerAzureSQLDbSync
TaskTypeMigrateSQLServerSQLDb TaskType = original.TaskTypeMigrateSQLServerSQLDb
TaskTypeUnknown TaskType = original.TaskTypeUnknown
TaskTypeProjectTaskProperties TaskType = original.TaskTypeProjectTaskProperties
TaskTypeValidateMigrationInputSQLServerAzureSQLDbMI TaskType = original.TaskTypeValidateMigrationInputSQLServerAzureSQLDbMI
TaskTypeValidateMigrationInputSQLServerAzureSQLDbMISyncLRS TaskType = original.TaskTypeValidateMigrationInputSQLServerAzureSQLDbMISyncLRS
TaskTypeValidateMigrationInputSQLServerSQLDbSync TaskType = original.TaskTypeValidateMigrationInputSQLServerSQLDbSync
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ type CommandType = original.CommandType

const (
CommandTypeCancel CommandType = original.CommandTypeCancel
CommandTypeCommandProperties CommandType = original.CommandTypeCommandProperties
CommandTypeFinish CommandType = original.CommandTypeFinish
CommandTypeMigrateSQLServerAzureDbSQLMiComplete CommandType = original.CommandTypeMigrateSQLServerAzureDbSQLMiComplete
CommandTypeMigrateSyncCompleteDatabase CommandType = original.CommandTypeMigrateSyncCompleteDatabase
CommandTypeRestart CommandType = original.CommandTypeRestart
CommandTypeUnknown CommandType = original.CommandTypeUnknown
)

type DatabaseCompatLevel = original.DatabaseCompatLevel
Expand Down Expand Up @@ -618,10 +618,10 @@ const (
TaskTypeMigrateSQLServerAzureSQLDbSync TaskType = original.TaskTypeMigrateSQLServerAzureSQLDbSync
TaskTypeMigrateSQLServerSQLDb TaskType = original.TaskTypeMigrateSQLServerSQLDb
TaskTypeMigrateSsis TaskType = original.TaskTypeMigrateSsis
TaskTypeProjectTaskProperties TaskType = original.TaskTypeProjectTaskProperties
TaskTypeServiceCheckOCI TaskType = original.TaskTypeServiceCheckOCI
TaskTypeServiceInstallOCI TaskType = original.TaskTypeServiceInstallOCI
TaskTypeServiceUploadOCI TaskType = original.TaskTypeServiceUploadOCI
TaskTypeUnknown TaskType = original.TaskTypeUnknown
TaskTypeValidateMigrationInputSQLServerAzureSQLDbMI TaskType = original.TaskTypeValidateMigrationInputSQLServerAzureSQLDbMI
TaskTypeValidateMigrationInputSQLServerAzureSQLDbMISyncLRS TaskType = original.TaskTypeValidateMigrationInputSQLServerAzureSQLDbMISyncLRS
TaskTypeValidateMigrationInputSQLServerSQLDbSync TaskType = original.TaskTypeValidateMigrationInputSQLServerSQLDbSync
Expand Down
Loading