Class: IControl::ARX::Share
- Inherits:
-
Base
- Object
- Base
- IControl::ARX::Share
- Defined in:
- lib/icontrol/arx/share.rb,
lib/icontrol/arx.rb
Overview
The Share Interface lets applications retrieve ARX share information.
Instance Method Summary collapse
-
#definition(opts) ⇒ ShareDefinition
Returns a list of share definitions for this shares.
-
#list(opts) ⇒ String
Returns the list of shares.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class IControl::Base
Instance Method Details
#definition(opts) ⇒ ShareDefinition
Returns a list of share definitions for this shares.
15 16 17 18 |
# File 'lib/icontrol/arx/share.rb', line 15 def definition(opts) opts = check_params(opts,[:volume,:shares]) super(opts) end |
#list(opts) ⇒ String
Returns the list of shares.
26 27 28 29 |
# File 'lib/icontrol/arx/share.rb', line 26 def list(opts) opts = check_params(opts,[:volume]) super(opts) end |