Sha256: bfb351edc4e33dc2dc0a3934dd6494ed657e48a7c4ccb55a2b60052434f30aa9
Contents?: true
Size: 645 Bytes
Versions: 1
Compression:
Stored size: 645 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Creates a Storage network IP range. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/createStorageNetworkIpRange.html] def create_storage_network_ip_range(netmask, gateway, startip, podid, options={}) options.merge!( 'command' => 'createStorageNetworkIpRange', 'netmask' => netmask, 'gateway' => gateway, 'startip' => startip, 'podid' => podid ) 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/create_storage_network_ip_range.rb |