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