Sha256: 0a70806cc18b145da97da8c2122bdb945f91f6965e7f657a677277e2f803821c
Contents?: true
Size: 514 Bytes
Versions: 1
Compression:
Stored size: 514 Bytes
Contents
module Fog module Compute class Cloudstack class Real # deletes a range of portable public IP's associated with a region # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/deletePortableIpRange.html] def delete_portable_ip_range(id, options={}) options.merge!( 'command' => 'deletePortableIpRange', '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_portable_ip_range.rb |