Class: Fog::Ecloud::Model

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

Instance Attribute Summary collapse

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

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

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Attribute Details

#loadedObject Also known as: loaded?

Returns the value of attribute loaded.



5
6
7
# File 'lib/fog/ecloud/model.rb', line 5

def loaded
  @loaded
end

Instance Method Details

#load_unless_loaded!Object



14
15
16
17
18
# File 'lib/fog/ecloud/model.rb', line 14

def load_unless_loaded!
  unless @loaded
    reload
  end
end

#reloadObject



8
9
10
11
12
# File 'lib/fog/ecloud/model.rb', line 8

def reload
  instance = super
  @loaded = true
  instance
end