Sha256: 3f869bd768897e2d9812738d6ce7f9b5d5d6256e171d385ed30a5110896c19ec
Contents?: true
Size: 551 Bytes
Versions: 4
Compression:
Stored size: 551 Bytes
Contents
module Fog module Introspection class HuaweiCloud class Real def get_introspection_details(node_id) request( :expects => 200, :method => 'GET', :path => "introspection/#{node_id}/data" ) end end class Mock def get_introspection_details(_node_id) response = Excon::Response.new response.status = 200 response.body = {"data" => data[:introspection_data]} response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems