Sha256: b95c3301dfac36e5b8a83b38a99d423edb0937495407e6222207f6cd05b1087e

Contents?: true

Size: 523 Bytes

Versions: 13

Compression:

Stored size: 523 Bytes

Contents

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

module Fog
  module Compute
    class HP

      class Flavors < Fog::Collection

        model Fog::Compute::HP::Flavor

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

        def get(flavor_id)
          data = connection.get_flavor_details(flavor_id).body['flavor']
          new(data)
        rescue Fog::Compute::HP::NotFound
          nil
        end

      end

    end
  end
end

Version data entries

13 entries across 13 versions & 7 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/hp/models/compute/flavors.rb
fog-nirvanix-1.8.1 lib/fog/hp/models/compute/flavors.rb
fog-parser-fix-1.6.1 lib/fog/hp/models/compute/flavors.rb
fog-test-again-1.6.0 lib/fog/hp/models/compute/flavors.rb
fog-parser-fix-1.6.0 lib/fog/hp/models/compute/flavors.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/hp/models/compute/flavors.rb
fog-sgonyea-1.8.1 lib/fog/hp/models/compute/flavors.rb
fog-1.8.0 lib/fog/hp/models/compute/flavors.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/hp/models/compute/flavors.rb
fog-1.7.0 lib/fog/hp/models/compute/flavors.rb
fog-1.6.0 lib/fog/hp/models/compute/flavors.rb
fog-1.5.0 lib/fog/hp/models/compute/flavors.rb
fog-1.4.0 lib/fog/hp/models/compute/flavors.rb