mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
518 B
Ruby
28 lines
518 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/bluebox/models/compute/flavor'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Bluebox
|
|
|
|
class Flavors < Fog::Collection
|
|
|
|
model Fog::Compute::Bluebox::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::Compute::Bluebox::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|