Sha256: fd960793864228cca3aaec513a52c56c1b146acae1a2ea064859d33178cbea7a
Contents?: true
Size: 582 Bytes
Versions: 1
Compression:
Stored size: 582 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Dedicates a Public IP range to an account # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/dedicatePublicIpRange.html] def dedicate_public_ip_range(domainid, id, account, options={}) options.merge!( 'command' => 'dedicatePublicIpRange', 'domainid' => domainid, 'id' => id, 'account' => account ) 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/dedicate_public_ip_range.rb |