Class: Fog::Volume::OpenStack::Volumes

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/openstack/models/volume/volumes.rb

Instance Attribute Summary

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 Method Details

#all(options = {:detailed => true}) ⇒ Object



11
12
13
14
15
16
# File 'lib/fog/openstack/models/volume/volumes.rb', line 11

def all(options = {:detailed => true})
  # the parameter has been "detailed = true" before. Make sure we are
  # backwards compatible
  detailed = options.is_a?(Hash) ? options.delete(:detailed) : options
  load(service.list_volumes(detailed, options).body['volumes'])
end

#get(volume_id) ⇒ Object Also known as: find_by_id



18
19
20
21
22
23
24
# File 'lib/fog/openstack/models/volume/volumes.rb', line 18

def get(volume_id)
  if volume = service.get_volume_details(volume_id).body['volume']
    new(volume)
  end
rescue Fog::Volume::OpenStack::NotFound
  nil
end