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

Version Path
fog-1.22.0 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-1.21.0 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/requests/image/list_public_images_detailed.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/requests/image/list_public_images_detailed.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-1.20.0 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-1.19.0 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/requests/image/list_public_images_detailed.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/requests/image/list_public_images_detailed.rb