Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlDbTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlDbTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_output.rb
Overview
Output for the task that validates connection to SQL DB and target server requirements
Instance Attribute Summary collapse
-
#databases ⇒ Hash{String => String}
database name to database id.
-
#id ⇒ String
Result identifier.
-
#target_server_brand_version ⇒ String
Target server brand version.
-
#target_server_version ⇒ String
Version of the target server.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToTargetSqlDbTaskOutput class as Ruby Hash.
Instance Attribute Details
#databases ⇒ Hash{String => String}
database name to database id
21 22 23 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_output.rb', line 21 def databases @databases end |
#id ⇒ String
Returns Result identifier.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_output.rb', line 17 def id @id end |
#target_server_brand_version ⇒ String
Returns Target server brand version.
27 28 29 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_output.rb', line 27 def target_server_brand_version @target_server_brand_version end |
#target_server_version ⇒ String
Returns Version of the target server.
24 25 26 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_output.rb', line 24 def target_server_version @target_server_version end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToTargetSqlDbTaskOutput class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_db_task_output.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToTargetSqlDbTaskOutput', type: { name: 'Composite', class_name: 'ConnectToTargetSqlDbTaskOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, databases: { client_side_validation: true, required: false, read_only: true, serialized_name: 'databases', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, target_server_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'targetServerVersion', type: { name: 'String' } }, target_server_brand_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'targetServerBrandVersion', type: { name: 'String' } } } } } end |