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.4.0 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.34 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.33 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.32 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.31 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.30 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.29 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.28 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.27 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.26 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.25 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.24 lib/fog/slicehost/models/compute/flavors.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.23 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.22 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.21 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.20 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.19 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.18 lib/fog/slicehost/models/compute/flavors.rb
fog-0.3.17 lib/fog/slicehost/models/compute/flavors.rb