Class: Azure::ResourcesManagement::Mgmt::V2018_01_01_preview::Models::ErrorDetails

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/error_details.rb

Overview

The details of the error.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#codeString

Returns One of a server-defined set of error codes.

Returns:

  • (String)

    One of a server-defined set of error codes.



16
17
18
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/error_details.rb', line 16

def code
  @code
end

#detailsString

details.

Returns:

  • (String)

    A human-readable representation of the error’s



23
24
25
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/error_details.rb', line 23

def details
  @details
end

#messageString

Returns A human-readable representation of the error.

Returns:

  • (String)

    A human-readable representation of the error.



19
20
21
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/error_details.rb', line 19

def message
  @message
end

Class Method Details

.mapperObject

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



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
57
58
59
60
61
62
63
64
65
66
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/error_details.rb', line 30

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ErrorDetails',
    type: {
      name: 'Composite',
      class_name: 'ErrorDetails',
      model_properties: {
        code: {
          client_side_validation: true,
          required: false,
          serialized_name: 'code',
          type: {
            name: 'String'
          }
        },
        message: {
          client_side_validation: true,
          required: false,
          serialized_name: 'message',
          type: {
            name: 'String'
          }
        },
        details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'details',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end