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