Sha256: a0f9c07463b2b058fb096633d7ff56c7b79afbe6fe4b8dac310deb557848effe
Contents?: true
Size: 628 Bytes
Versions: 28
Compression:
Stored size: 628 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Updates a service offering. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateServiceOffering.html] def update_service_offering(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateServiceOffering') else options.merge!('command' => 'updateServiceOffering', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems