2012-02-10 10:10:49 -05:00
|
|
|
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)
|
2012-12-22 18:25:50 -05:00
|
|
|
data = self.service.create_machine_snapshot(machine_id, snapshot_name).body
|
2012-02-10 10:10:49 -05:00
|
|
|
data['machine_id'] = machine_id
|
|
|
|
new(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def all(machine_id)
|
2012-12-22 18:25:50 -05:00
|
|
|
data = service.list_machine_snapshots(machine_id).body.map do |m|
|
2012-02-10 10:10:49 -05:00
|
|
|
m["machine_id"] = machine_id
|
|
|
|
m
|
|
|
|
end
|
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(machine_id, snapshot_name)
|
2012-12-22 18:25:50 -05:00
|
|
|
data = service.get_machine_snapshot(machine_id, snapshot_name).body
|
2012-02-10 10:10:49 -05:00
|
|
|
if data
|
|
|
|
data["machine_id"] = machine_id
|
|
|
|
new(data)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|