2013-04-22 06:19:44 -04:00
|
|
|
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
|
2013-04-22 08:44:43 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-04-22 06:19:44 -04:00
|
|
|
end # Cloudstack
|
|
|
|
end # Compute
|
|
|
|
end # Fog
|