Sha256: 35a90c9e1b21ad1d1d1fe04781e847145ca01f7d3eee55365d4c4363198cec29
Contents?: true
Size: 731 Bytes
Versions: 32
Compression:
Stored size: 731 Bytes
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 end end end
Version data entries
32 entries across 32 versions & 8 rubygems