Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::GetUserTablesSqlSyncTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::GetUserTablesSqlSyncTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_input.rb
Overview
Input for the task that collects user tables for the given list of databases
Instance Attribute Summary collapse
-
#selected_source_databases ⇒ Array<String>
for.
-
#selected_target_databases ⇒ Array<String>
for.
-
#source_connection_info ⇒ SqlConnectionInfo
Connection information for SQL Server.
-
#target_connection_info ⇒ SqlConnectionInfo
Connection information for SQL DB.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetUserTablesSqlSyncTaskInput class as Ruby Hash.
Instance Attribute Details
#selected_source_databases ⇒ Array<String>
for
24 25 26 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_input.rb', line 24 def selected_source_databases @selected_source_databases end |
#selected_target_databases ⇒ Array<String>
for
28 29 30 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_input.rb', line 28 def selected_target_databases @selected_target_databases end |
#source_connection_info ⇒ SqlConnectionInfo
Returns Connection information for SQL Server.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_input.rb', line 17 def source_connection_info @source_connection_info end |
#target_connection_info ⇒ SqlConnectionInfo
Returns Connection information for SQL DB.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_input.rb', line 20 def target_connection_info @target_connection_info end |
Class Method Details
.mapper ⇒ Object
Mapper for GetUserTablesSqlSyncTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
35 36 37 38 39 40 41 42 43 44 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_user_tables_sql_sync_task_input.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetUserTablesSqlSyncTaskInput', type: { name: 'Composite', class_name: 'GetUserTablesSqlSyncTaskInput', model_properties: { 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: 'SqlConnectionInfo' } }, selected_source_databases: { client_side_validation: true, required: true, serialized_name: 'selectedSourceDatabases', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, selected_target_databases: { client_side_validation: true, required: true, serialized_name: 'selectedTargetDatabases', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |