Sha256: bbd832d149eb30eccab1d26e6100d7a1e2399938c3083f28945459b7fa0d9d34

Contents?: true

Size: 518 Bytes

Versions: 29

Compression:

Stored size: 518 Bytes

Contents

require 'fog/core/collection'
require 'fog/bluebox/models/compute/flavor'

module Fog
  module Bluebox
    class Compute

      class Flavors < Fog::Collection

        model Fog::Bluebox::Compute::Flavor

        def all
          data = connection.get_products.body
          load(data)
        end

        def get(product_id)
          response = connection.get_product(product_id)
          new(response.body)
        rescue Fog::Bluebox::Compute::NotFound
          nil
        end

      end

    end
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
fog-0.3.16 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.15 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.14 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.13 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.12 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.11 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.10 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.9 lib/fog/bluebox/models/compute/flavors.rb
fog-0.3.8 lib/fog/bluebox/models/compute/flavors.rb