mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
4d33ccb7a7
- Focus on adding additional vm actions support - New request types are not fully tested
24 lines
480 B
Ruby
24 lines
480 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def change_server_password(server_id, admin_password)
|
|
body = { 'changePassword' => { 'adminPass' => admin_password }}
|
|
server_action(server_id, body)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def change_server_password(server_id, admin_password)
|
|
response = Excon::Response.new
|
|
response.status = 202
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|