Sha256: ce333987f2f6c6c393f1aa54ce8c68ba03eb5bfe7d3d0c9c6469de33b1595380
Contents?: true
Size: 677 Bytes
Versions: 13
Compression:
Stored size: 677 Bytes
Contents
require 'fog/core/collection' require 'fog/cloudstack/models/compute/flavor' module Fog module Compute class Cloudstack class Flavors < Fog::Collection model Fog::Compute::Cloudstack::Flavor def all data = connection.list_service_offerings["listserviceofferingsresponse"]["serviceoffering"] || [] load(data) end def get(flavor_id) if flavor = connection.list_service_offerings('id' => flavor_id)["listserviceofferingsresponse"]["serviceoffering"].first new(flavor) end rescue Fog::Compute::Cloudstack::BadRequest nil end end end end end
Version data entries
13 entries across 13 versions & 7 rubygems