pub struct MigrateSqlServerSqlMiTaskInput {
pub sql_migration_task_input: SqlMigrationTaskInput,
pub selected_databases: Vec<MigrateSqlServerSqlMiDatabaseInput>,
pub selected_logins: Vec<String>,
pub selected_agent_jobs: Vec<String>,
pub backup_file_share: Option<FileShare>,
pub backup_blob_share: BlobShare,
pub backup_mode: Option<BackupMode>,
pub aad_domain_name: Option<String>,
}
Expand description
Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance.
Fields§
§sql_migration_task_input: SqlMigrationTaskInput
§selected_databases: Vec<MigrateSqlServerSqlMiDatabaseInput>
Databases to migrate
selected_logins: Vec<String>
Logins to migrate.
selected_agent_jobs: Vec<String>
Agent Jobs to migrate.
File share information with Path, Username, and Password.
Blob container storage information.
backup_mode: Option<BackupMode>
An enumeration of backup modes
aad_domain_name: Option<String>
Azure Active Directory domain name in the format of ‘contoso.com’ for federated Azure AD or ‘contoso.onmicrosoft.com’ for managed domain, required if and only if Windows logins are selected
Implementations§
source§impl MigrateSqlServerSqlMiTaskInput
impl MigrateSqlServerSqlMiTaskInput
pub fn new( sql_migration_task_input: SqlMigrationTaskInput, selected_databases: Vec<MigrateSqlServerSqlMiDatabaseInput>, backup_blob_share: BlobShare ) -> Self
Trait Implementations§
source§impl Clone for MigrateSqlServerSqlMiTaskInput
impl Clone for MigrateSqlServerSqlMiTaskInput
source§fn clone(&self) -> MigrateSqlServerSqlMiTaskInput
fn clone(&self) -> MigrateSqlServerSqlMiTaskInput
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 MigrateSqlServerSqlMiTaskInput
impl<'de> Deserialize<'de> for MigrateSqlServerSqlMiTaskInput
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<MigrateSqlServerSqlMiTaskInput> for MigrateSqlServerSqlMiTaskInput
impl PartialEq<MigrateSqlServerSqlMiTaskInput> for MigrateSqlServerSqlMiTaskInput
source§fn eq(&self, other: &MigrateSqlServerSqlMiTaskInput) -> bool
fn eq(&self, other: &MigrateSqlServerSqlMiTaskInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MigrateSqlServerSqlMiTaskInput
Auto Trait Implementations§
impl RefUnwindSafe for MigrateSqlServerSqlMiTaskInput
impl Send for MigrateSqlServerSqlMiTaskInput
impl Sync for MigrateSqlServerSqlMiTaskInput
impl Unpin for MigrateSqlServerSqlMiTaskInput
impl UnwindSafe for MigrateSqlServerSqlMiTaskInput
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