Sha256: 7fe1608ab00b2748918409ca8a6134a1723914f32d1f78f91d376389c37cc76e
Contents?: true
Size: 690 Bytes
Versions: 28
Compression:
Stored size: 690 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Releases a dedicated guest vlan range to the system # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/releaseDedicatedGuestVlanRange.html] def release_dedicated_guest_vlan_range(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'releaseDedicatedGuestVlanRange') else options.merge!('command' => 'releaseDedicatedGuestVlanRange', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems