mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
470 B
Ruby
20 lines
470 B
Ruby
|
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
|
||
|
end # Cloudstack
|
||
|
end # Compute
|
||
|
end # Fog
|