1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/models/bluebox/flavors.rb

29 lines
518 B
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
require 'fog/compute/models/bluebox/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