Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::DataMigrationError
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::DataMigrationError
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_error.rb
Overview
Migration Task errors
Instance Attribute Summary collapse
-
#message ⇒ String
Error description.
-
#type ⇒ ErrorType
‘Warning’, ‘Error’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataMigrationError class as Ruby Hash.
Instance Attribute Details
#message ⇒ String
Returns Error description.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_error.rb', line 16 def @message end |
#type ⇒ ErrorType
‘Warning’, ‘Error’
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_error.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for DataMigrationError class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_error.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DataMigrationError', type: { name: 'Composite', class_name: 'DataMigrationError', model_properties: { message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'message', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |