Sha256: 67f4f8e443410237246867daa24b576270b44a00fd2f05c6c6e12af0e5541151
Contents?: true
Size: 772 Bytes
Versions: 55
Compression:
Stored size: 772 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.0.0/root_admin/deleteDiskOffering.html] def delete_disk_offering(options={}) options.merge!( 'command' => 'deleteDiskOffering' ) request(options) end end # Real 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 # Cloudstack end # Compute end # Fog
Version data entries
55 entries across 55 versions & 3 rubygems