Sha256: 90cf6d18a07ca3783961d968e8630d335cb0156b233ba26f001b5154fe9bca5b

Contents?: true

Size: 462 Bytes

Versions: 1

Compression:

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