class Fog::HP::BlockStorageV2::Snapshots
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
# File lib/fog/hp/models/block_storage_v2/snapshots.rb, line 12 def initialize(attributes) self.filters ||= {} super end
Public Instance Methods
all(filters_arg = filters)
click to toggle source
# File lib/fog/hp/models/block_storage_v2/snapshots.rb, line 17 def all(filters_arg = filters) details = filters_arg.delete(:details) self.filters = filters_arg 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
get(snapshot_id)
click to toggle source
# 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