Class: Azure::DataMigration::Mgmt::V2017_11_15_preview::Models::ConnectToSourceSqlServerTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2017_11_15_preview::Models::ConnectToSourceSqlServerTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-11-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output.rb
Overview
Output for the task that validates connection to SQL Server and also validates source server requirements
Direct Known Subclasses
ConnectToSourceSqlServerTaskOutputDatabaseLevel, ConnectToSourceSqlServerTaskOutputTaskLevel
Constant Summary collapse
- @@discriminatorMap =
Hash.new
Instance Attribute Summary collapse
-
#id ⇒ String
Result identifier.
-
#resultType ⇒ Object
Returns the value of attribute resultType.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToSourceSqlServerTaskOutput class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ ConnectToSourceSqlServerTaskOutput
constructor
A new instance of ConnectToSourceSqlServerTaskOutput.
Constructor Details
#initialize ⇒ ConnectToSourceSqlServerTaskOutput
Returns a new instance of ConnectToSourceSqlServerTaskOutput.
20 21 22 |
# File 'lib/2017-11-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output.rb', line 20 def initialize @resultType = "ConnectToSourceSqlServerTaskOutput" end |
Instance Attribute Details
#id ⇒ String
Returns Result identifier.
27 28 29 |
# File 'lib/2017-11-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output.rb', line 27 def id @id end |
#resultType ⇒ Object
Returns the value of attribute resultType.
24 25 26 |
# File 'lib/2017-11-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output.rb', line 24 def resultType @resultType end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToSourceSqlServerTaskOutput 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 |
# File 'lib/2017-11-15-preview/generated/azure_mgmt_data_migration/models/connect_to_source_sql_server_task_output.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToSourceSqlServerTaskOutput', type: { name: 'Composite', polymorphic_discriminator: 'resultType', uber_parent: 'ConnectToSourceSqlServerTaskOutput', class_name: 'ConnectToSourceSqlServerTaskOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } } } } } end |