mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
ec8b940b2c
Done with `rubocop --auto-correct --only CollectionMethods`
38 lines
1 KiB
Ruby
38 lines
1 KiB
Ruby
module Fog
|
|
module Compute
|
|
class HP
|
|
class Real
|
|
# Update an existing server
|
|
#
|
|
# ==== Parameters
|
|
# # server_id<~Integer> - Id of server to update
|
|
# * options<~Hash>:
|
|
# * adminPass<~String> - New admin password for server
|
|
# * name<~String> - New name for server
|
|
def update_server(server_id, options = {})
|
|
request(
|
|
:body => Fog::JSON.encode({ 'server' => options }),
|
|
:expects => 200,
|
|
:method => 'PUT',
|
|
:path => "servers/#{server_id}.json"
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def update_server(server_id, options)
|
|
response = Excon::Response.new
|
|
if server = list_servers_detail.body['servers'].find {|_| _['id'] == server_id}
|
|
if options['name']
|
|
server['name'] = options['name']
|
|
end
|
|
response.status = 200
|
|
response
|
|
else
|
|
raise Fog::Compute::HP::NotFound
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|