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)
-
- (ActiveConnection) active_connection
Gets the active connection in details for this connection.
-
- (ActiveConnection) all_active_connections
Gets all active connection in details on the local load balancer.
-
- (Object) delete_active_connection
Deletes this connection from the connection table.
-
- (Object) delete_all_active_connections
Deletes all active connection from the connection table.
-
- (ConnectionID) list
Gets the list of active connection.
-
- (String) version
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
- (ActiveConnection) active_connection
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 |
- (ActiveConnection) all_active_connections
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 |
- (Object) delete_active_connection
Deletes this connection from the connection table.
19 20 21 |
# File 'lib/icontrol/system/connections.rb', line 19 def delete_active_connection super end |
- (Object) delete_all_active_connections
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 |
- (ConnectionID) list
Gets the list of active connection.
62 63 64 |
# File 'lib/icontrol/system/connections.rb', line 62 def list super end |
- (String) version
Gets the version information for this interface.
70 71 72 |
# File 'lib/icontrol/system/connections.rb', line 70 def version super end |