Sha256: 14681137632a9f13e22fad50a208690a49278703f1b4d8713a9e29d2bd5f0460
Contents?: true
Size: 475 Bytes
Versions: 20
Compression:
Stored size: 475 Bytes
Contents
module Fog module OpenStack class Compute 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
20 entries across 20 versions & 3 rubygems