Sha256: 859a27547a81a75a3780661917fb006fab0a85f26f2b69e715fa2d6f346615e8
Contents?: true
Size: 840 Bytes
Versions: 20
Compression:
Stored size: 840 Bytes
Contents
module Fog module OpenStack class Introspection class Real def create_introspection(node_id, options = {}) if options data = { 'new_ipmi_username' => options[:new_ipmi_username], 'new_ipmi_password' => options[:new_ipmi_password] } body = Fog::JSON.encode(data) else body = "" end request( :body => body, :expects => 202, :method => "POST", :path => "introspection/#{node_id}" ) end end class Mock def create_introspection(_node_id, _options = {}) response = Excon::Response.new response.status = 202 response.body = "" response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems