Sha256: 8cd8381984b24c259abef3848fc87a67032f02a176858477b0344df14070d030
Contents?: true
Size: 480 Bytes
Versions: 85
Compression:
Stored size: 480 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
85 entries across 85 versions & 13 rubygems