Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlMISyncTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetSqlMISyncTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_output.rb
Overview
Output for the task that validates connection to Azure SQL Database Managed Instance.
Instance Attribute Summary collapse
-
#target_server_brand_version ⇒ String
Target server brand version.
-
#target_server_version ⇒ String
Target server version.
-
#validation_errors ⇒ Array<ReportableException>
Validation errors.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToTargetSqlMISyncTaskOutput class as Ruby Hash.
Instance Attribute Details
#target_server_brand_version ⇒ String
Returns Target server brand version.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_output.rb', line 20 def target_server_brand_version @target_server_brand_version end |
#target_server_version ⇒ String
Returns Target server version.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_output.rb', line 17 def target_server_version @target_server_version end |
#validation_errors ⇒ Array<ReportableException>
Returns Validation errors.
23 24 25 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_output.rb', line 23 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToTargetSqlMISyncTaskOutput 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_sql_misync_task_output.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToTargetSqlMISyncTaskOutput', type: { name: 'Composite', class_name: 'ConnectToTargetSqlMISyncTaskOutput', model_properties: { 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' } }, validation_errors: { client_side_validation: true, required: false, read_only: true, serialized_name: 'validationErrors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ReportableExceptionElementType', type: { name: 'Composite', class_name: 'ReportableException' } } } } } } } end |