Class: Azure::Billing::Mgmt::V2017_02_27_preview::Models::ErrorDetails

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-02-27-preview/generated/azure_mgmt_billing/models/error_details.rb

Overview

The details of the error.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#codeString

Returns Error code.

Returns:

  • (String)

    Error code.



16
17
18
# File 'lib/2017-02-27-preview/generated/azure_mgmt_billing/models/error_details.rb', line 16

def code
  @code
end

#messageString

Returns Error message indicating why the operation failed.

Returns:

  • (String)

    Error message indicating why the operation failed.



19
20
21
# File 'lib/2017-02-27-preview/generated/azure_mgmt_billing/models/error_details.rb', line 19

def message
  @message
end

#targetString

Returns The target of the particular error.

Returns:

  • (String)

    The target of the particular error.



22
23
24
# File 'lib/2017-02-27-preview/generated/azure_mgmt_billing/models/error_details.rb', line 22

def target
  @target
end

Class Method Details

.mapperObject

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



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
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/2017-02-27-preview/generated/azure_mgmt_billing/models/error_details.rb', line 29

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,
          read_only: true,
          serialized_name: 'code',
          type: {
            name: 'String'
          }
        },
        message: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'message',
          type: {
            name: 'String'
          }
        },
        target: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'target',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end