Class: Fog::Compute::OpenStack::Snapshots

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/openstack/models/compute/snapshots.rb

Instance Method Summary collapse

Instance Method Details

#all(detailed = true) ⇒ Object



11
12
13
# File 'lib/fog/openstack/models/compute/snapshots.rb', line 11

def all(detailed=true)
  load(service.list_snapshots(detailed).body['snapshots'])
end

#get(snapshot_id) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/fog/openstack/models/compute/snapshots.rb', line 15

def get(snapshot_id)
  if snapshot = service.get_snapshot_details(snapshot_id).body['snapshot']
    new(snapshot)
  end
rescue Fog::Compute::OpenStack::NotFound
  nil
end