Sha256: 1e47fc4fe0a56b155043c59121c65e3868627715299321a1af56d30b49e14533

Contents?: true

Size: 516 Bytes

Versions: 16

Compression:

Stored size: 516 Bytes

Contents

require 'fog/core/collection'
require 'fog/compute/models/slicehost/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

16 entries across 16 versions & 2 rubygems

Version Path
fog-0.8.2 lib/fog/compute/models/slicehost/flavors.rb
fog-0.8.1 lib/fog/compute/models/slicehost/flavors.rb
fog-0.8.0 lib/fog/compute/models/slicehost/flavors.rb
fog-0.7.2 lib/fog/compute/models/slicehost/flavors.rb
fog-0.7.1 lib/fog/compute/models/slicehost/flavors.rb
fog-0.7.0 lib/fog/compute/models/slicehost/flavors.rb
fog-0.6.0 lib/fog/compute/models/slicehost/flavors.rb
fog-0.5.3 lib/fog/compute/models/slicehost/flavors.rb
fog-0.5.2 lib/fog/compute/models/slicehost/flavors.rb
fog-0.5.1 lib/fog/compute/models/slicehost/flavors.rb
fog-0.5.0 lib/fog/compute/models/slicehost/flavors.rb
phpfog-fog-0.4.1.3 lib/fog/compute/models/slicehost/flavors.rb
phpfog-fog-0.4.1.2 lib/fog/compute/models/slicehost/flavors.rb
phpfog-fog-0.4.1.1 lib/fog/compute/models/slicehost/flavors.rb
phpfog-fog-0.4.1 lib/fog/compute/models/slicehost/flavors.rb
fog-0.4.1 lib/fog/compute/models/slicehost/flavors.rb