Class: Fog::Cloudstack::Compute::Snapshots

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

Instance Method Summary collapse

Instance Method Details

#all(attributes = {}) ⇒ Object



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

def all(attributes = {})
  response = service.list_snapshots(attributes)
  data = response["listsnapshotsresponse"]["snapshot"] || []
  load(data)
end

#get(snapshot_id) ⇒ Object



16
17
18
19
# File 'lib/fog/cloudstack/models/compute/snapshots.rb', line 16

def get(snapshot_id)
  snapshot = service.list_snapshots('id' => snapshot_id)["listsnapshotsresponse"]["snapshot"].first
  new(snapshot) if snapshot
end