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/ninefold/models/compute/flavors.rb

31 lines
539 B
Ruby
Raw Normal View History

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