Class: Azure::ARM::Resources::Models::ResourceManagementError

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_resources/models/resource_management_error.rb

Overview

Model object.

Direct Known Subclasses

ResourceManagementErrorWithDetails

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#codeString

Returns Gets or sets the error code returned from the server.

Returns:

  • (String)

    Gets or sets the error code returned from the server.



16
17
18
# File 'lib/azure_mgmt_resources/models/resource_management_error.rb', line 16

def code
  @code
end

#messageString

server.

Returns:

  • (String)

    Gets or sets the error message returned from the



20
21
22
# File 'lib/azure_mgmt_resources/models/resource_management_error.rb', line 20

def message
  @message
end

#targetString

Returns Gets or sets the target of the error.

Returns:

  • (String)

    Gets or sets the target of the error.



23
24
25
# File 'lib/azure_mgmt_resources/models/resource_management_error.rb', line 23

def target
  @target
end

Class Method Details

.deserialize_object(object) ⇒ ResourceManagementError

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/azure_mgmt_resources/models/resource_management_error.rb', line 59

def self.deserialize_object(object)
  return if object.nil?
  output_object = ResourceManagementError.new

  deserialized_property = object['code']
  output_object.code = deserialized_property

  deserialized_property = object['message']
  output_object.message = deserialized_property

  deserialized_property = object['target']
  output_object.target = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/azure_mgmt_resources/models/resource_management_error.rb', line 38

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.code
  output_object['code'] = serialized_property unless serialized_property.nil?

  serialized_property = object.message
  output_object['message'] = serialized_property unless serialized_property.nil?

  serialized_property = object.target
  output_object['target'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



28
29
30
31
# File 'lib/azure_mgmt_resources/models/resource_management_error.rb', line 28

def validate
  fail MsRest::ValidationError, 'property code is nil' if @code.nil?
  fail MsRest::ValidationError, 'property message is nil' if @message.nil?
end