Class: Fog::HP::BlockStorageV2::Snapshots

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/hp/models/block_storage_v2/snapshots.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Snapshots

Returns a new instance of Snapshots.



12
13
14
15
# File 'lib/fog/hp/models/block_storage_v2/snapshots.rb', line 12

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters_arg = filters) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
# 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) ⇒ Object



29
30
31
32
33
34
35
# 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