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