Sha256: 058677e1d88e626e60cc28478d1ead88a4d3d54a956a7741017364632abf43f1
Contents?: true
Size: 1.05 KB
Versions: 43
Compression:
Stored size: 1.05 KB
Contents
module Fog module Compute class Linode class Real # Issues a shutdown, and then a boot job for a given linode # # ==== Parameters # * linode_id<~Integer>: id of linode to reboot # * options<~Hash>: # * configId<~Boolean>: id of config to boot server with # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def linode_reboot(linode_id, options={}) request( :expects => 200, :method => 'GET', :query => { :api_action => 'linode.reboot', :linodeId => linode_id }.merge!(options) ) end end class Mock def linode_reboot(linode_id, options={}) response = Excon::Response.new response.status = 200 response.body = { "ERRORARRAY" => [], "ACTION" => "linode.reboot", "DATA" => { "JobID" => rand(1000..9999) } } response end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems