Sha256: 8be54a53820652b61d6549399dd1130b05ef356c8998ad196230cc29280f2227

Contents?: true

Size: 529 Bytes

Versions: 1

Compression:

Stored size: 529 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.3/root_admin/releaseDedicatedGuestVlanRange.html]
        def release_dedicated_guest_vlan_range(id, options={})
          options.merge!(
            'command' => 'releaseDedicatedGuestVlanRange', 
            'id' => id  
          )
          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/release_dedicated_guest_vlan_range.rb