Sha256: 1c8184c04cee2b5ec3dd125b5cefd7d932259570a07c29ba9852dc618d21984a
Contents?: true
Size: 476 Bytes
Versions: 40
Compression:
Stored size: 476 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
40 entries across 40 versions & 5 rubygems