Class: Azure::ARM::Compute::Models::InnerError

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_compute/models/inner_error.rb

Overview

Inner error details.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#errordetailString

Returns the internal error message or exception dump.

Returns:

  • (String)

    the internal error message or exception dump.



19
20
21
# File 'lib/generated/azure_mgmt_compute/models/inner_error.rb', line 19

def errordetail
  @errordetail
end

#exceptiontypeString

Returns the exception type.

Returns:

  • (String)

    the exception type.



16
17
18
# File 'lib/generated/azure_mgmt_compute/models/inner_error.rb', line 16

def exceptiontype
  @exceptiontype
end

Class Method Details

.mapperObject

Mapper for InnerError class as Ruby Hash. This will be used for serialization/deserialization.



26
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
# File 'lib/generated/azure_mgmt_compute/models/inner_error.rb', line 26

def self.mapper()
  {
    required: false,
    serialized_name: 'InnerError',
    type: {
      name: 'Composite',
      class_name: 'InnerError',
      model_properties: {
        exceptiontype: {
          required: false,
          serialized_name: 'exceptiontype',
          type: {
            name: 'String'
          }
        },
        errordetail: {
          required: false,
          serialized_name: 'errordetail',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end