Sha256: 50b72f3b0b016a8881fe6400f43ffe4e47f898b5633856ebf493038828e4eb79

Contents?: true

Size: 1015 Bytes

Versions: 4

Compression:

Stored size: 1015 Bytes

Contents

module Fog
  module Image
    class HuaweiCloud
      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

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/image/huaweicloud/v1/requests/list_public_images.rb
fog-huaweicloud-0.0.2 lib/fog/image/huaweicloud/v1/requests/list_public_images.rb
fog-huaweicloud-0.1.3 lib/fog/image/huaweicloud/v1/requests/list_public_images.rb
fog-huaweicloud-0.1.2 lib/fog/image/huaweicloud/v1/requests/list_public_images.rb