Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlDbTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlDbTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_input.rb
Overview
Input for the task that validates connection to SQL DB and target server requirements
Instance Attribute Summary collapse
-
#target_connection_info ⇒ SqlConnectionInfo
Connection information for target SQL DB.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToTargetSqlDbTaskInput class as Ruby Hash.
Instance Attribute Details
#target_connection_info ⇒ SqlConnectionInfo
Returns Connection information for target SQL DB.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_input.rb', line 17 def target_connection_info @target_connection_info end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToTargetSqlDbTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_input.rb', line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToTargetSqlDbTaskInput', type: { name: 'Composite', class_name: 'ConnectToTargetSqlDbTaskInput', model_properties: { target_connection_info: { client_side_validation: true, required: true, serialized_name: 'targetConnectionInfo', type: { name: 'Composite', class_name: 'SqlConnectionInfo' } } } } } end |