Sha256: fd0818eed205c0f7ae9b47a955320030bdef3cc1d23bfef40299079dc8d63f71
Contents?: true
Size: 542 Bytes
Versions: 22
Compression:
Stored size: 542 Bytes
Contents
module Fog module OpenStack class Compute class Real def list_metadata(collection_name, parent_id) request( :expects => [200, 203], :method => 'GET', :path => "/#{collection_name}/#{parent_id}/metadata" ) end end class Mock def list_metadata(_collection_name, _parent_id) response = Excon::Response.new response.status = 200 response.body = {} response end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems