1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/joyent/models/compute/snapshots.rb
Kevin Chan e403854446 GH-690 Joyent Cloud Provider
Squashed from fog/joyent
2012-02-27 17:33:20 -06:00

37 lines
902 B
Ruby

require 'fog/joyent/models/compute/snapshot'
module Fog
module Compute
class Joyent
class Snapshots < Fog::Collection
model Fog::Compute::Joyent::Snapshot
def create(machine_id, snapshot_name)
data = self.connection.create_machine_snapshot(machine_id, snapshot_name).body
data['machine_id'] = machine_id
new(data)
end
def all(machine_id)
data = self.connection.list_machine_snapshots(machine_id).body.map do |m|
m["machine_id"] = machine_id
m
end
load(data)
end
def get(machine_id, snapshot_name)
data = self.connection.get_machine_snapshot(machine_id, snapshot_name).body
if data
data["machine_id"] = machine_id
new(data)
else
nil
end
end
end
end
end
end