Sha256: d998ce0e25f06045d9191f0734f3afffc2db644c7ccdcf269c597748bf7eb9f9
Contents?: true
Size: 1.19 KB
Versions: 53
Compression:
Stored size: 1.19 KB
Contents
module Fog module Compute class RackspaceV2 class Real # Reboots server # @param [String] server_id # @param [String<SOFT,HARD>] type type of reboot # @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404 # @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400 # @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500 # @raise [Fog::Compute::RackspaceV2::ServiceError] # @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/Reboot_Server-d1e3371.html def reboot_server(server_id, type) data = { 'reboot' => { 'type' => type } } request( :body => Fog::JSON.encode(data), :expects => [202], :method => 'POST', :path => "servers/#{server_id}/action" ) end end class Mock def reboot_server(server_id, type) body = { "reboot" => { "type" => type.upcase } } response( :body => body, :status => 202 ) end end end end end
Version data entries
53 entries across 53 versions & 3 rubygems