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



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

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

#get(snapshot_id) ⇒ Object



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

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