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

27 lines
462 B
Ruby

require 'fog/collection'
require 'fog/slicehost/models/flavor'
module Fog
module Slicehost
class Compute
class Flavors < Fog::Collection
model Fog::Slicehost::Flavor
def all
data = connection.get_flavors.body['flavors']
load(data)
end
def get(flavor_id)
connection.get_flavor(flavor_id)
rescue Excon::Errors::Forbidden
nil
end
end
end
end
end