Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::SqlServerSqlMISyncTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::SqlServerSqlMISyncTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb
Overview
Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario.
Direct Known Subclasses
MigrateSqlServerSqlMISyncTaskInput, ValidateMigrationInputSqlServerSqlMISyncTaskInput
Instance Attribute Summary collapse
-
#azure_app ⇒ AzureActiveDirectoryApp
the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account.
-
#backup_file_share ⇒ FileShare
databases.
-
#selected_databases ⇒ Array<MigrateSqlServerSqlMIDatabaseInput>
migrate.
-
#source_connection_info ⇒ SqlConnectionInfo
Server.
-
#storage_resource_id ⇒ String
Fully qualified resourceId of storage.
-
#target_connection_info ⇒ MiSqlConnectionInfo
Database Managed Instance.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SqlServerSqlMISyncTaskInput class as Ruby Hash.
Instance Attribute Details
#azure_app ⇒ AzureActiveDirectoryApp
the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
38 39 40 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 38 def azure_app @azure_app end |
#backup_file_share ⇒ FileShare
databases.
22 23 24 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 22 def backup_file_share @backup_file_share end |
#selected_databases ⇒ Array<MigrateSqlServerSqlMIDatabaseInput>
migrate
18 19 20 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 18 def selected_databases @selected_databases end |
#source_connection_info ⇒ SqlConnectionInfo
Server
29 30 31 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 29 def source_connection_info @source_connection_info end |
#storage_resource_id ⇒ String
Returns Fully qualified resourceId of storage.
25 26 27 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 25 def storage_resource_id @storage_resource_id end |
#target_connection_info ⇒ MiSqlConnectionInfo
Database Managed Instance
33 34 35 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 33 def target_connection_info @target_connection_info end |
Class Method Details
.mapper ⇒ Object
Mapper for SqlServerSqlMISyncTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/models/sql_server_sql_misync_task_input.rb', line 45 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SqlServerSqlMISyncTaskInput', type: { name: 'Composite', class_name: 'SqlServerSqlMISyncTaskInput', model_properties: { selected_databases: { client_side_validation: true, required: true, serialized_name: 'selectedDatabases', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'MigrateSqlServerSqlMIDatabaseInputElementType', type: { name: 'Composite', class_name: 'MigrateSqlServerSqlMIDatabaseInput' } } } }, backup_file_share: { client_side_validation: true, required: false, serialized_name: 'backupFileShare', type: { name: 'Composite', class_name: 'FileShare' } }, storage_resource_id: { client_side_validation: true, required: true, serialized_name: 'storageResourceId', type: { name: 'String' } }, source_connection_info: { client_side_validation: true, required: true, serialized_name: 'sourceConnectionInfo', type: { name: 'Composite', class_name: 'SqlConnectionInfo' } }, target_connection_info: { client_side_validation: true, required: true, serialized_name: 'targetConnectionInfo', type: { name: 'Composite', class_name: 'MiSqlConnectionInfo' } }, azure_app: { client_side_validation: true, required: true, serialized_name: 'azureApp', type: { name: 'Composite', class_name: 'AzureActiveDirectoryApp' } } } } } end |