# File lib/fog/hp/models/block_storage_v2/snapshots.rb, line 12 def initialize(attributes) self.filters ||= {} super end
# File lib/fog/hp/models/block_storage_v2/snapshots.rb, line 17 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
# File lib/fog/hp/models/block_storage_v2/snapshots.rb, line 29 def get(snapshot_id) if snapshot = service.get_snapshot_details(snapshot_id).body['snapshot'] new(snapshot) end rescue Fog::HP::BlockStorageV2::NotFound nil end