mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
e403854446
Squashed from fog/joyent
37 lines
902 B
Ruby
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
|