Class: Fog::Ecloud::Model

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/compute/ecloud.rb

Instance Attribute Summary collapse

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #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 Attribute Details

#loadedObject Also known as: loaded?

Returns the value of attribute loaded.



806
807
808
# File 'lib/fog/compute/ecloud.rb', line 806

def loaded
  @loaded
end

Instance Method Details

#load_unless_loaded!Object



815
816
817
818
819
# File 'lib/fog/compute/ecloud.rb', line 815

def load_unless_loaded!
  unless @loaded
    reload
  end
end

#reloadObject



809
810
811
812
813
# File 'lib/fog/compute/ecloud.rb', line 809

def reload
  instance = super
  @loaded = true
  instance
end