Sha256: ecc71b91ea09c83f68748b2edf3d22c490de067a4445979039794f87be79d17d

Contents?: true

Size: 577 Bytes

Versions: 33

Compression:

Stored size: 577 Bytes

Contents

require 'fog/collection'
require 'fog/slicehost/models/image'

module Fog
  module Slicehost

    module Collections
      def images(attributes = {})
        Fog::Slicehost::Images.new({
          :connection => self
        }.merge!(attributes))
      end
    end

    class Images < Fog::Collection

      model Fog::Slicehost::Image

      def all
        data = connection.get_images.body['images']
        load(data)
      end

      def get(image_id)
        connection.get_image(image_id)
      rescue Excon::Errors::Forbidden
        nil
      end

    end

  end
end

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
fog-0.2.30 lib/fog/slicehost/models/images.rb
fog-0.2.28 lib/fog/slicehost/models/images.rb
fog-0.2.27 lib/fog/slicehost/models/images.rb
fog-0.2.26 lib/fog/slicehost/models/images.rb
fog-0.2.25 lib/fog/slicehost/models/images.rb
fog-0.2.24 lib/fog/slicehost/models/images.rb
tecnh-fog-0.2.23.vpc lib/fog/slicehost/models/images.rb
fog-0.2.23 lib/fog/slicehost/models/images.rb
fog-0.2.22 lib/fog/slicehost/models/images.rb
fog-0.2.21 lib/fog/slicehost/models/images.rb
fog-0.2.20 lib/fog/slicehost/models/images.rb
fog-0.2.19 lib/fog/slicehost/models/images.rb
fog-0.2.18 lib/fog/slicehost/models/images.rb
fog-0.2.17 lib/fog/slicehost/models/images.rb
fog-0.2.16 lib/fog/slicehost/models/images.rb
fog-0.2.15 lib/fog/slicehost/models/images.rb
fog-0.2.14 lib/fog/slicehost/models/images.rb
fog-0.2.13 lib/fog/slicehost/models/images.rb
fog-0.2.12 lib/fog/slicehost/models/images.rb
fog-0.2.11 lib/fog/slicehost/models/images.rb