class Fog::Compute::Cloudstack::Snapshots
Public Instance Methods
all(attributes = {})
click to toggle source
# 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)
click to toggle source
# 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