Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlMISyncTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlMISyncTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_input.rb
Overview
Input for the task that validates connection to Azure SQL Database Managed Instance online scenario.
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.
-
#target_connection_info ⇒ MiSqlConnectionInfo
Database Managed Instance.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToTargetSqlMISyncTaskInput 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
23 24 25 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_input.rb', line 23 def azure_app @azure_app end |
#target_connection_info ⇒ MiSqlConnectionInfo
Database Managed Instance
18 19 20 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_input.rb', line 18 def target_connection_info @target_connection_info end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToTargetSqlMISyncTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 33 34 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_input.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToTargetSqlMISyncTaskInput', type: { name: 'Composite', class_name: 'ConnectToTargetSqlMISyncTaskInput', model_properties: { 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 |