1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/hp/models/block_storage/volumes.rb

29 lines
541 B
Ruby
Raw Normal View History

require 'fog/core/collection'
require 'fog/hp/models/block_storage/volume'
module Fog
module BlockStorage
class HP
class Volumes < Fog::Collection
model Fog::BlockStorage::HP::Volume
def all
data = connection.list_volumes.body['volumes']
load(data)
end
def get(volume_id)
volume = connection.get_volume_details(volume_id).body['volume']
new(volume)
rescue Fog::BlockStorage::HP::NotFound
nil
end
end
end
end
end