Struct azure_mgmt_datamigration::package_preview_2022_01::models::ValidateMigrationInputSqlServerSqlMiTaskInput
source · pub struct ValidateMigrationInputSqlServerSqlMiTaskInput {
pub source_connection_info: SqlConnectionInfo,
pub target_connection_info: SqlConnectionInfo,
pub selected_databases: Vec<MigrateSqlServerSqlMiDatabaseInput>,
pub selected_logins: Vec<String>,
pub backup_file_share: Option<FileShare>,
pub backup_blob_share: BlobShare,
pub backup_mode: Option<BackupMode>,
}
Expand description
Input for task that validates migration input for SQL to Azure SQL Managed Instance
Fields§
§source_connection_info: SqlConnectionInfo
Information for connecting to SQL database server
target_connection_info: SqlConnectionInfo
Information for connecting to SQL database server
selected_databases: Vec<MigrateSqlServerSqlMiDatabaseInput>
Databases to migrate
selected_logins: Vec<String>
Logins to migrate
File share information with Path, Username, and Password.
Blob container storage information.
backup_mode: Option<BackupMode>
An enumeration of backup modes
Implementations§
source§impl ValidateMigrationInputSqlServerSqlMiTaskInput
impl ValidateMigrationInputSqlServerSqlMiTaskInput
pub fn new( source_connection_info: SqlConnectionInfo, target_connection_info: SqlConnectionInfo, selected_databases: Vec<MigrateSqlServerSqlMiDatabaseInput>, backup_blob_share: BlobShare ) -> Self
Trait Implementations§
source§impl Clone for ValidateMigrationInputSqlServerSqlMiTaskInput
impl Clone for ValidateMigrationInputSqlServerSqlMiTaskInput
source§fn clone(&self) -> ValidateMigrationInputSqlServerSqlMiTaskInput
fn clone(&self) -> ValidateMigrationInputSqlServerSqlMiTaskInput
Returns a copy 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<'de> Deserialize<'de> for ValidateMigrationInputSqlServerSqlMiTaskInput
impl<'de> Deserialize<'de> for ValidateMigrationInputSqlServerSqlMiTaskInput
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<ValidateMigrationInputSqlServerSqlMiTaskInput> for ValidateMigrationInputSqlServerSqlMiTaskInput
impl PartialEq<ValidateMigrationInputSqlServerSqlMiTaskInput> for ValidateMigrationInputSqlServerSqlMiTaskInput
source§fn eq(&self, other: &ValidateMigrationInputSqlServerSqlMiTaskInput) -> bool
fn eq(&self, other: &ValidateMigrationInputSqlServerSqlMiTaskInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ValidateMigrationInputSqlServerSqlMiTaskInput
Auto Trait Implementations§
impl RefUnwindSafe for ValidateMigrationInputSqlServerSqlMiTaskInput
impl Send for ValidateMigrationInputSqlServerSqlMiTaskInput
impl Sync for ValidateMigrationInputSqlServerSqlMiTaskInput
impl Unpin for ValidateMigrationInputSqlServerSqlMiTaskInput
impl UnwindSafe for ValidateMigrationInputSqlServerSqlMiTaskInput
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