# File lib/fog/joyent/models/compute/snapshot.rb, line 28 def destroy requires :name requires :machine_id service.delete_machine_snapshot(self.machine_id, self.name) true end
# File lib/fog/joyent/models/compute/snapshot.rb, line 36 def machine requires :machine_id service.servers.get(self.machine_id) end
# File lib/fog/joyent/models/compute/snapshot.rb, line 13 def reload requires :name requires :machine_id service.snapshots.get(self.machine_id, self.name) end
# File lib/fog/joyent/models/compute/snapshot.rb, line 20 def start requires :name requires :machine_id service.start_machine_from_snapshot(self.machine_id, self.name) true end