Sha256: 946ee97d7b54ceb1e6623adde514679329e50cddb4acf5355d71f84b8aaa50bb

Contents?: true

Size: 492 Bytes

Versions: 19

Compression:

Stored size: 492 Bytes

Contents

require 'fog/core/collection'
require 'fog/compute/models/brightbox/image'

module Fog
  module Brightbox
    class Compute

      class Images < Fog::Collection

        model Fog::Brightbox::Compute::Image

        def all
          data = connection.list_images
          load(data)
        end

        def get(identifier)
          data = connection.get_image(identifier)
          new(data)
        rescue Excon::Errors::NotFound
          nil
        end

      end

    end
  end
end

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
fog-0.8.2 lib/fog/compute/models/brightbox/images.rb
fog-0.8.1 lib/fog/compute/models/brightbox/images.rb
fog-0.8.0 lib/fog/compute/models/brightbox/images.rb
fog-0.7.2 lib/fog/compute/models/brightbox/images.rb
fog-0.7.1 lib/fog/compute/models/brightbox/images.rb
fog-0.7.0 lib/fog/compute/models/brightbox/images.rb
bbcloud-0.11.2 lib/bbcloud/vendor/fog/lib/fog/compute/models/brightbox/images.rb
bbcloud-0.11.1 lib/bbcloud/vendor/fog/lib/fog/compute/models/brightbox/images.rb
bbcloud-0.11.0 lib/bbcloud/vendor/fog/lib/fog/compute/models/brightbox/images.rb
fog-0.6.0 lib/fog/compute/models/brightbox/images.rb
fog-0.5.3 lib/fog/compute/models/brightbox/images.rb
fog-0.5.2 lib/fog/compute/models/brightbox/images.rb
fog-0.5.1 lib/fog/compute/models/brightbox/images.rb
fog-0.5.0 lib/fog/compute/models/brightbox/images.rb
phpfog-fog-0.4.1.3 lib/fog/compute/models/brightbox/images.rb
phpfog-fog-0.4.1.2 lib/fog/compute/models/brightbox/images.rb
phpfog-fog-0.4.1.1 lib/fog/compute/models/brightbox/images.rb
phpfog-fog-0.4.1 lib/fog/compute/models/brightbox/images.rb
fog-0.4.1 lib/fog/compute/models/brightbox/images.rb