1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/servers/update_server.rb

55 lines
1.2 KiB
Ruby
Raw Normal View History

2009-10-17 17:24:34 -04:00
unless Fog.mocking?
module Fog
module Rackspace
class Servers
# Update an existing server
#
# ==== Parameters
# # server_id<~Integer> - Id of server to update
2009-10-17 17:24:34 -04:00
# * options<~Hash>:
# * adminPass<~String> - New admin password for server
# * name<~String> - New name for server
def update_server(server_id, options = {})
2009-10-17 17:24:34 -04:00
request(
:body => options.to_json,
:expects => 204,
:method => 'PUT',
:path => "servers/#{id}"
)
end
end
end
end
else
module Fog
module Rackspace
class Servers
def update_server(server_id, options)
response = Fog::Response.new
if server = Fog::Rackspace::Servers.data[:servers][server_id]
if options['adminPass']
server['adminPass'] = options['adminPass']
end
if options['name']
server['name'] = options['name']
end
response.status = 204
else
response.status = 404
raise(Excon::Errors.status_error(202, 404, response))
end
response
2009-10-17 17:24:34 -04:00
end
end
end
end
end