Sha256: 6715f6f866b46e0fd1a7755f03b7e3159260aab71845a17583a878ddc5fc6b7e
Contents?: true
Size: 425 Bytes
Versions: 1
Compression:
Stored size: 425 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Deletes a VPC # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/deleteVPC.html] def delete_vpc(id, options={}) options.merge!( 'command' => 'deleteVPC', '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_vpc.rb |