Sha256: 4855eaf86ea0a801c30c36acb22dc44fd40f1319b2041acc599b55798481e8eb
Contents?: true
Size: 480 Bytes
Versions: 23
Compression:
Stored size: 480 Bytes
Contents
module Fog module Compute class OpenStack class Real def change_password_server(server_id, admin_password) body = { 'changePassword' => { 'adminPass' => admin_password }} server_action(server_id, body) end end class Mock def change_password_server(server_id, admin_password) response = Excon::Response.new response.status = 202 response end end end end end
Version data entries
23 entries across 23 versions & 7 rubygems