Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::DataMigrationError

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#messageString

Returns Error description.

Returns:

  • (String)

    Error description



16
17
18
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_error.rb', line 16

def message
  @message
end

#typeErrorType

‘Warning’, ‘Error’

Returns:

  • (ErrorType)

    Type of error. Possible values include: ‘Default’,



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

.mapperObject

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