Sha256: 651f54032654b626f880df15dbeed3188617b7e33d17902e20540298877360c8

Contents?: true

Size: 516 Bytes

Versions: 29

Compression:

Stored size: 516 Bytes

Contents

require 'fog/core/collection'
require 'fog/slicehost/models/compute/flavor'

module Fog
  module Slicehost
    class Compute

      class Flavors < Fog::Collection

        model Fog::Slicehost::Compute::Flavor

        def all
          data = connection.get_flavors.body['flavors']
          load(data)
        end

        def get(flavor_id)
          data = connection.get_flavor(flavor_id).body
          new(data)
        rescue Excon::Errors::Forbidden
          nil
        end

      end

    end
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
fog-0.3.16 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.15 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.14 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.13 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.12 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.11 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.10 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.9 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.8 lib/fog/slicehost/models/compute/flavors.rb