Class: Fog::Compute::OpenStack::Volumes

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

Instance Method Summary collapse

Instance Method Details

#all(detailed = true) ⇒ Object



10
11
12
# File 'lib/fog/openstack/models/compute/volumes.rb', line 10

def all(detailed=true)
  load(service.list_volumes(detailed).body['volumes'])
end

#get(volume_id) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/fog/openstack/models/compute/volumes.rb', line 14

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