Class: IControl::ARX::Export
- Inherits:
-
Base
- Object
- Base
- IControl::ARX::Export
- 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
-
#definition(opts) ⇒ ExportDefinition
Returns the list of export definitions for a list of exports from this virtual servic and protocol.
-
#list(opts) ⇒ String
Returns the list of exports for this virtual servic and protocol.
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.
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.
27 28 29 30 |
# File 'lib/icontrol/arx/export.rb', line 27 def list(opts) opts = check_params(opts,[:protocol]) super(opts) end |