Sha256: 3c840942f3b5ba2dcc0caf00a6a232c4ad3e519d57a29dc0786f9063d05dbb89
Contents?: true
Size: 829 Bytes
Versions: 78
Compression:
Stored size: 829 Bytes
Contents
module Fog module Image class OpenStack class Real def list_public_images_detailed(attribute=nil, query=nil) if attribute path = "images/detail?#{attribute}=#{URI::encode(query)}" else path = 'images/detail' end request( :expects => [200, 204], :method => 'GET', :path => path ) end end # class Real class Mock def list_public_images_detailed(attribute=nil, query=nil) response = Excon::Response.new response.status = [200, 204][rand(1)] response.body = {'images' => self.data[:images].values} response end # def list_tenants end # class Mock end # class OpenStack end # module Identity end # module Fog
Version data entries
78 entries across 78 versions & 10 rubygems