Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToSourceNonSqlTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToSourceNonSqlTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb
Overview
Output for connect to Oracle, MySQL type source
Instance Attribute Summary collapse
-
#databases ⇒ Array<String>
List of databases on the server.
-
#id ⇒ String
Result identifier.
-
#server_properties ⇒ ServerProperties
Server properties.
-
#source_server_brand_version ⇒ String
Server brand version.
-
#validation_errors ⇒ Array<ReportableException>
the task.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToSourceNonSqlTaskOutput class as Ruby Hash.
Instance Attribute Details
#databases ⇒ Array<String>
Returns List of databases on the server.
25 26 27 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb', line 25 def databases @databases end |
#id ⇒ String
Returns Result identifier.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb', line 16 def id @id end |
#server_properties ⇒ ServerProperties
Returns Server properties.
22 23 24 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb', line 22 def server_properties @server_properties end |
#source_server_brand_version ⇒ String
Returns Server brand version.
19 20 21 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb', line 19 def source_server_brand_version @source_server_brand_version end |
#validation_errors ⇒ Array<ReportableException>
the task
29 30 31 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb', line 29 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToSourceNonSqlTaskOutput class as Ruby Hash. This will be used for serialization/deserialization.
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_source_non_sql_task_output.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToSourceNonSqlTaskOutput', type: { name: 'Composite', class_name: 'ConnectToSourceNonSqlTaskOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, source_server_brand_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sourceServerBrandVersion', type: { name: 'String' } }, server_properties: { client_side_validation: true, required: false, read_only: true, serialized_name: 'serverProperties', type: { name: 'Composite', class_name: 'ServerProperties' } }, databases: { client_side_validation: true, required: false, read_only: true, serialized_name: 'databases', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', 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 |