Method: Fog::Compute::Joyent::Snapshot#start

Defined in:
lib/fog/joyent/models/compute/snapshot.rb

#startObject

[View source]

20
21
22
23
24
25
26
# File 'lib/fog/joyent/models/compute/snapshot.rb', line 20

def start
  requires :name
  requires :machine_id

  self.connection.start_machine_from_snapshot(self.machine_id, self.name)
  true
end