Class: Fog::Rackspace::Databases::Databases

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/rackspace/models/databases/databases.rb

Instance Attribute Summary collapse

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

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::Collection

Instance Attribute Details

#instanceObject

Returns the value of attribute instance.



11
12
13
# File 'lib/fog/rackspace/models/databases/databases.rb', line 11

def instance
  @instance
end

Instance Method Details

#allObject



13
14
15
# File 'lib/fog/rackspace/models/databases/databases.rb', line 13

def all
  load(retrieve_databases)
end

#get(database_name) ⇒ Object



17
18
19
20
# File 'lib/fog/rackspace/models/databases/databases.rb', line 17

def get(database_name)
  data = retrieve_databases.find { |database| database['name'] == database_name }
  data && new(data)
end