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/ninefold/flavors.rb
2011-06-04 20:02:13 +10:00

30 lines
545 B
Ruby

require 'fog/core/collection'
require 'fog/compute/models/ninefold/flavor'
module Fog
module Ninefold
class Compute
class Flavors < Fog::Collection
model Fog::Ninefold::Compute::Flavor
def all
data = connection.list_service_offerings
load(data)
end
def get(identifier)
data = connection.list_service_offerings(:id => identifier)
if data.empty?
nil
else
new(data[0])
end
end
end
end
end
end