pub struct MigrateSqlServerSqlDbSyncDatabaseInput {
pub id: Option<String>,
pub name: Option<String>,
pub target_database_name: Option<String>,
pub schema_name: Option<String>,
pub table_map: Option<Value>,
pub migration_setting: Option<Value>,
pub source_setting: Option<Value>,
pub target_setting: Option<Value>,
}
Expand description
Database specific information for SQL to Azure SQL DB sync migration task inputs
Fields§
§id: Option<String>
Unique identifier for database
name: Option<String>
Name of database
target_database_name: Option<String>
Target database name
schema_name: Option<String>
Schema name to be migrated
table_map: Option<Value>
Mapping of source to target tables
migration_setting: Option<Value>
Migration settings which tune the migration behavior
source_setting: Option<Value>
Source settings to tune source endpoint migration behavior
target_setting: Option<Value>
Target settings to tune target endpoint migration behavior
Implementations§
Trait Implementations§
Source§impl Clone for MigrateSqlServerSqlDbSyncDatabaseInput
impl Clone for MigrateSqlServerSqlDbSyncDatabaseInput
Source§fn clone(&self) -> MigrateSqlServerSqlDbSyncDatabaseInput
fn clone(&self) -> MigrateSqlServerSqlDbSyncDatabaseInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for MigrateSqlServerSqlDbSyncDatabaseInput
impl Default for MigrateSqlServerSqlDbSyncDatabaseInput
Source§fn default() -> MigrateSqlServerSqlDbSyncDatabaseInput
fn default() -> MigrateSqlServerSqlDbSyncDatabaseInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MigrateSqlServerSqlDbSyncDatabaseInput
impl<'de> Deserialize<'de> for MigrateSqlServerSqlDbSyncDatabaseInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MigrateSqlServerSqlDbSyncDatabaseInput
impl PartialEq for MigrateSqlServerSqlDbSyncDatabaseInput
Source§fn eq(&self, other: &MigrateSqlServerSqlDbSyncDatabaseInput) -> bool
fn eq(&self, other: &MigrateSqlServerSqlDbSyncDatabaseInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSqlServerSqlDbSyncDatabaseInput
Auto Trait Implementations§
impl Freeze for MigrateSqlServerSqlDbSyncDatabaseInput
impl RefUnwindSafe for MigrateSqlServerSqlDbSyncDatabaseInput
impl Send for MigrateSqlServerSqlDbSyncDatabaseInput
impl Sync for MigrateSqlServerSqlDbSyncDatabaseInput
impl Unpin for MigrateSqlServerSqlDbSyncDatabaseInput
impl UnwindSafe for MigrateSqlServerSqlDbSyncDatabaseInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more