Sha256: f0ec2103001602cc9b690142ce6c6af6833ee740ff076549d4920b0ae94d0ef3

Contents?: true

Size: 1013 Bytes

Versions: 25

Compression:

Stored size: 1013 Bytes

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 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
        end
      end
    end
  end
end

Version data entries

25 entries across 23 versions & 3 rubygems

Version Path
fog-openstack-0.1.31 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.10 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.30 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.29 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.9 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.1.28 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.8 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.7 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.6 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.5 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.4 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.3 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.2 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.3.0 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.2.4 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.2.3 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.2.2 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.2.1 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-openstack-0.2.0 lib/fog/image/openstack/v1/requests/list_public_images.rb
fog-zj-0.1.28 lib/fog/image/openstack/v1/requests/list_public_images.rb