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