Class: IControl::Management::TMOSModule
- Inherits:
-
Base
- Object
- Base
- IControl::Management::TMOSModule
- Defined in:
- lib/icontrol/management/tmos_module.rb,
lib/icontrol/management.rb
Overview
The Module interface enables you to manage the system’s TMOS modules (e.g. LTM, GTM, ASM). The methods and types here focus on the modules themselves; some of the specific questions you might ask about modules are broken out in other places, such as the Provision or LicenseAdministration interface.
Instance Method Summary collapse
-
#descriptive_name ⇒ String
Gets a list of descriptive names for the module given.
-
#known_module_list ⇒ TMOSModule
Gets a list of all known module Caution! The list returned gives all module known, even if they are not licensed or provisionable on this system.
-
#version ⇒ String
Gets the version information for this interface.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class IControl::Base
Instance Method Details
#descriptive_name ⇒ String
Gets a list of descriptive names for the module given
18 19 20 |
# File 'lib/icontrol/management/tmos_module.rb', line 18 def descriptive_name super end |
#known_module_list ⇒ TMOSModule
Gets a list of all known module Caution! The list returned gives all module known, even if they are not licensed or provisionable on this system. You could use this to get a general picture of what module are possible, but this list is not specific to the system you have. To determine the licensing status of the module on your system, see the LicenseAdministration interface. To determine which module are supported (i.e., provisionable) under your system or currently provisioned to run on your system, see the Provision interface.
35 36 37 |
# File 'lib/icontrol/management/tmos_module.rb', line 35 def known_module_list super end |
#version ⇒ String
Gets the version information for this interface.
43 44 45 |
# File 'lib/icontrol/management/tmos_module.rb', line 43 def version super end |