Class: Fog::Vcloud::Terremark::Ecloud::Node

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/vcloud/terremark/ecloud/models/node.rb

Instance Attribute Summary

Attributes inherited from Model

#loaded

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#load_unless_loaded!, #reload

Methods inherited from Model

#initialize, #inspect, #reload, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#deleteObject



18
19
20
21
22
# File 'lib/fog/vcloud/terremark/ecloud/models/node.rb', line 18

def delete
  requires :href

  connection.delete_node( href )
end

#saveObject



24
25
26
27
28
29
30
31
# File 'lib/fog/vcloud/terremark/ecloud/models/node.rb', line 24

def save
  if new_record?
    result = connection.add_node( collection.href, _compose_node_data )
    merge_attributes(result.body)
  else
    connection.configure_node( href, _compose_node_data )
  end
end