Class: Fog::Volume::OpenStack::Volumes
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Volume::OpenStack::Volumes
- Defined in:
- lib/fog/openstack/models/volume/volumes.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
- #all(options = {:detailed => true}) ⇒ Object
- #get(volume_id) ⇒ Object (also: #find_by_id)
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( = {:detailed => true}) # the parameter has been "detailed = true" before. Make sure we are # backwards compatible detailed = .is_a?(Hash) ? .delete(:detailed) : load(service.list_volumes(detailed, ).body['volumes']) end |