Class: IControl::ARX::Export

Inherits:
Base
  • Object
show all
Defined in:
lib/icontrol/arx/export.rb,
lib/icontrol/arx.rb

Overview

The Export Interface allows applications to retrieve ARX export information.

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class IControl::Base

Instance Method Details

#definition(opts) ⇒ ExportDefinition

Returns the list of export definitions for a list of exports from this virtual servic and protocol.

Parameters:

  • opts (Hash)

Options Hash (opts):

Returns:



16
17
18
19
# File 'lib/icontrol/arx/export.rb', line 16

def definition(opts)
  opts = check_params(opts,[:protocol,:exports])
  super(opts)
end

#list(opts) ⇒ String

Returns the list of exports for this virtual servic and protocol.

Parameters:

  • opts (Hash)

Options Hash (opts):

Returns:

  • (String)


27
28
29
30
# File 'lib/icontrol/arx/export.rb', line 27

def list(opts)
  opts = check_params(opts,[:protocol])
  super(opts)
end