Sha256: ac9def26798cca30147b535c7d5969df194b66a089f88a36712f1e7e5df0cafd
Contents?: true
Size: 771 Bytes
Versions: 28
Compression:
Stored size: 771 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Dedicates a guest vlan range to an account # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/dedicateGuestVlanRange.html] def dedicate_guest_vlan_range(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'dedicateGuestVlanRange') else options.merge!('command' => 'dedicateGuestVlanRange', 'account' => args[0], 'domainid' => args[1], 'vlanrange' => args[2], 'physicalnetworkid' => args[3]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems