Sha256: a6a2d8ef805890e8b89c8e3307331c2f284a28ee3ea00b7a9f43d30cba755911
Contents?: true
Size: 721 Bytes
Versions: 28
Compression:
Stored size: 721 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Update a Storage network IP range, only allowed when no IPs in this range have been allocated. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateStorageNetworkIpRange.html] def update_storage_network_ip_range(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateStorageNetworkIpRange') else options.merge!('command' => 'updateStorageNetworkIpRange', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems