Sha256: 4497780908e19e2fa55a8b3d031edd84ed36df92fd0158cc29b82391b5305e90
Contents?: true
Size: 723 Bytes
Versions: 8
Compression:
Stored size: 723 Bytes
Contents
module Fog module Linode class Compute 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
8 entries across 8 versions & 1 rubygems