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_v2/snapshots.rb

43 lines
1 KiB
Ruby

require 'fog/core/collection'
require 'fog/hp/models/block_storage_v2/snapshot'
module Fog
module HP
class BlockStorageV2
class Snapshots < Fog::Collection
attribute :filters
model Fog::HP::BlockStorageV2::Snapshot
def initialize(attributes)
self.filters ||= {}
super
end
def all(filters = filters)
details = filters.delete(:details)
self.filters = filters
non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters)
if details
data = service.list_snapshots_detail(non_aliased_filters).body['snapshots']
else
data = service.list_snapshots(non_aliased_filters).body['snapshots']
end
load(data)
end
def get(snapshot_id)
if snapshot = service.get_snapshot_details(snapshot_id).body['snapshot']
new(snapshot)
end
rescue Fog::HP::BlockStorageV2::NotFound
nil
end
end
end
end
end