Class: Azure::DataMigration::Mgmt::V2018_03_15_preview::Models::ConnectToSourceSqlServerTaskOutputTaskLevel
- Inherits:
-
ConnectToSourceSqlServerTaskOutput
- Object
- ConnectToSourceSqlServerTaskOutput
- Azure::DataMigration::Mgmt::V2018_03_15_preview::Models::ConnectToSourceSqlServerTaskOutputTaskLevel
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb
Overview
Task level output for the task that validates connection to SQL Server and also validates source server requirements
Instance Attribute Summary collapse
-
#databases ⇒ Hash{String => String}
database name to database id.
-
#resultType ⇒ Object
Returns the value of attribute resultType.
-
#source_server_brand_version ⇒ String
Source server brand version.
-
#source_server_version ⇒ String
Source server version.
-
#validation_errors ⇒ Array<ReportableException>
Validation errors.
Attributes inherited from ConnectToSourceSqlServerTaskOutput
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToSourceSqlServerTaskOutputTaskLevel class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ ConnectToSourceSqlServerTaskOutputTaskLevel
constructor
A new instance of ConnectToSourceSqlServerTaskOutputTaskLevel.
Constructor Details
#initialize ⇒ ConnectToSourceSqlServerTaskOutputTaskLevel
Returns a new instance of ConnectToSourceSqlServerTaskOutputTaskLevel.
17 18 19 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 17 def initialize @resultType = "TaskLevelOutput" end |
Instance Attribute Details
#databases ⇒ Hash{String => String}
database name to database id
25 26 27 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 25 def databases @databases end |
#resultType ⇒ Object
Returns the value of attribute resultType.
21 22 23 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 21 def resultType @resultType end |
#source_server_brand_version ⇒ String
Returns Source server brand version.
31 32 33 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 31 def source_server_brand_version @source_server_brand_version end |
#source_server_version ⇒ String
Returns Source server version.
28 29 30 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 28 def source_server_version @source_server_version end |
#validation_errors ⇒ Array<ReportableException>
Returns Validation errors.
34 35 36 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 34 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToSourceSqlServerTaskOutputTaskLevel class as Ruby Hash. This will be used for serialization/deserialization.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/2018-03-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output_task_level.rb', line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TaskLevelOutput', type: { name: 'Composite', class_name: 'ConnectToSourceSqlServerTaskOutputTaskLevel', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, resultType: { client_side_validation: true, required: true, serialized_name: 'resultType', 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' } } } }, source_server_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sourceServerVersion', type: { name: 'String' } }, source_server_brand_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sourceServerBrandVersion', 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 |