Sha256: 8f2a17fb1efca1984c05129f955af0952d936adc9b337bf82b227c953f763c95
Contents?: true
Size: 580 Bytes
Versions: 28
Compression:
Stored size: 580 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Creates a VLAN IP range. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/createVlanIpRange.html] def create_vlan_ip_range(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'createVlanIpRange') else options.merge!('command' => 'createVlanIpRange') end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems