Class: F5::Icontrol::Configuration
- Inherits:
-
Object
- Object
- F5::Icontrol::Configuration
- Defined in:
- lib/f5/icontrol.rb
Instance Attribute Summary collapse
-
#host ⇒ Object
Returns the value of attribute host.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
31 32 33 34 35 |
# File 'lib/f5/icontrol.rb', line 31 def initialize @host = "set_me_in_configure_block" @username = "" @password = "" end |
Instance Attribute Details
#host ⇒ Object
Returns the value of attribute host.
29 30 31 |
# File 'lib/f5/icontrol.rb', line 29 def host @host end |
#password ⇒ Object
Returns the value of attribute password.
29 30 31 |
# File 'lib/f5/icontrol.rb', line 29 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
29 30 31 |
# File 'lib/f5/icontrol.rb', line 29 def username @username end |