Sha256: 307de119b8cd0072f73ec58d3df9f42c56b0bd63aba623a101c6a68259291c43

Contents?: true

Size: 1.08 KB

Versions: 14

Compression:

Stored size: 1.08 KB

Contents

module Fog
  module Image
    class OpenStack
      class V1
        class Real
          def list_public_images(options = {})
            request(
              :expects => [200, 204],
              :method  => 'GET',
              :path    => 'images',
              :query   => options
            )
          end
        end # class Real

        class Mock
          def list_public_images(_options = {})
            response = Excon::Response.new
            response.status = [200, 204][rand(2)]
            response.body = {
              "images" => [{
                "name"             => Fog::Mock.random_letters(10),
                "size"             => Fog::Mock.random_numbers(8).to_i,
                "disk_format"      => "iso",
                "container_format" => "bare",
                "id"               => Fog::Mock.random_hex(36),
                "checksum"         => Fog::Mock.random_hex(32)
              }]
            }
            response
          end # def list_tenants
        end # class Mock
      end # class OpenStack
    end
  end # module Identity
end # module Fog

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-openstack-0.1.25 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.24 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.23 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.22 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.21 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.20 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.19 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.18 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.17 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.15 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.14 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.13 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.12 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.11 lib/fog/image/openstack/v1/requests/list_public_images.rb