Sha256: 79eb0959d86aabeaf1e99c4d27e62a4be14ad23bf7e69777eb455bce84ab33e8

Contents?: true

Size: 456 Bytes

Versions: 1

Compression:

Stored size: 456 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Deletes VPC offering
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/deleteVPCOffering.html]
        def delete_vpcoffering(id, options={})
          options.merge!(
            'command' => 'deleteVPCOffering', 
            'id' => id  
          )
          request(options)
        end
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-1.23.0 lib/fog/cloudstack/requests/compute/delete_vpcoffering.rb