Sha256: dfcf9731eb1f4fced0aa38b860745e6c5ab470dca1df6a83d8db7454e8cfe4dc
Contents?: true
Size: 475 Bytes
Versions: 39
Compression:
Stored size: 475 Bytes
Contents
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
Version data entries
39 entries across 37 versions & 3 rubygems