Class MigrateMySqlRequest
- java.lang.Object
-
- com.microsoft.azure.ProxyResource
-
- com.microsoft.azure.management.appservice.ProxyOnlyResource
-
- com.microsoft.azure.management.appservice.MigrateMySqlRequest
-
public class MigrateMySqlRequest extends ProxyOnlyResource
MySQL migration request.
-
-
Constructor Summary
Constructors Constructor Description MigrateMySqlRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringconnectionString()Get connection string to the remote MySQL database.MySqlMigrationTypemigrationType()Get the type of migration operation to be done.MigrateMySqlRequestwithConnectionString(String connectionString)Set connection string to the remote MySQL database.MigrateMySqlRequestwithMigrationType(MySqlMigrationType migrationType)Set the type of migration operation to be done.-
Methods inherited from class com.microsoft.azure.management.appservice.ProxyOnlyResource
kind, withKind
-
-
-
-
Method Detail
-
connectionString
public String connectionString()
Get connection string to the remote MySQL database.- Returns:
- the connectionString value
-
withConnectionString
public MigrateMySqlRequest withConnectionString(String connectionString)
Set connection string to the remote MySQL database.- Parameters:
connectionString- the connectionString value to set- Returns:
- the MigrateMySqlRequest object itself.
-
migrationType
public MySqlMigrationType migrationType()
Get the type of migration operation to be done. Possible values include: 'LocalToRemote', 'RemoteToLocal'.- Returns:
- the migrationType value
-
withMigrationType
public MigrateMySqlRequest withMigrationType(MySqlMigrationType migrationType)
Set the type of migration operation to be done. Possible values include: 'LocalToRemote', 'RemoteToLocal'.- Parameters:
migrationType- the migrationType value to set- Returns:
- the MigrateMySqlRequest object itself.
-
-