Class: IControl::System::Connections
- Inherits:
-
Base
- Object
- Base
- IControl::System::Connections
- Defined in:
- lib/icontrol/system/connections.rb,
lib/icontrol/system.rb
Overview
The Connections interface enables you to get information about a device’s connections. For example, use Connection interface to get a list of all active connections or to get a list of all active connections for a specific client.
Defined Under Namespace
Classes: ActiveConnection, ActiveConnectionSequence, ConnectionID, ConnectionIDSequence
Instance Method Summary collapse
-
#active_connection ⇒ ActiveConnection
Gets the active connection in details for this connection.
-
#all_active_connections ⇒ ActiveConnection
Gets all active connection in details on the local load balancer.
-
#delete_active_connection ⇒ Object
Deletes this connection from the connection table.
-
#delete_all_active_connections ⇒ Object
Deletes all active connection from the connection table.
-
#list ⇒ ConnectionID
Gets the list of active connection.
-
#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
#active_connection ⇒ ActiveConnection
Gets the active connection in details for this connection.
40 41 42 |
# File 'lib/icontrol/system/connections.rb', line 40 def active_connection super end |
#all_active_connections ⇒ ActiveConnection
Gets all active connection in details on the local load balancer.
51 52 53 |
# File 'lib/icontrol/system/connections.rb', line 51 def all_active_connections super end |
#delete_active_connection ⇒ Object
Deletes this connection from the connection table.
19 20 21 |
# File 'lib/icontrol/system/connections.rb', line 19 def delete_active_connection super end |
#delete_all_active_connections ⇒ Object
Deletes all active connection from the connection table.
29 30 31 |
# File 'lib/icontrol/system/connections.rb', line 29 def delete_all_active_connections super end |
#list ⇒ ConnectionID
Gets the list of active connection.
62 63 64 |
# File 'lib/icontrol/system/connections.rb', line 62 def list super end |
#version ⇒ String
Gets the version information for this interface.
70 71 72 |
# File 'lib/icontrol/system/connections.rb', line 70 def version super end |