Sha256: 1313c24d7d47c9a96d12ebd8d6bb73675179c9d4a388a9753adba1af430c804f
Contents?: true
Size: 494 Bytes
Versions: 1
Compression:
Stored size: 494 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Disassociates an ip address from the account. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/disassociateIpAddress.html] def disassociate_ip_address(id, options={}) options.merge!( 'command' => 'disassociateIpAddress', '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/disassociate_ip_address.rb |