Parent

Methods

Class/Module Index [+]

Quicksearch

Fog::HP::BlockStorageV2::Snapshots

Public Class Methods

new(attributes) click to toggle source
# File lib/fog/hp/models/block_storage_v2/snapshots.rb, line 12
def initialize(attributes)
  self.filters ||= {}
  super
end

Public Instance Methods

all(filters = filters) click to toggle source
# 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
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

[Validate]

Generated with the Darkfish Rdoc Generator 2.