Class: F5::Icontrol::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/f5/icontrol.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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

#hostObject

Returns the value of attribute host.



29
30
31
# File 'lib/f5/icontrol.rb', line 29

def host
  @host
end

#passwordObject

Returns the value of attribute password.



29
30
31
# File 'lib/f5/icontrol.rb', line 29

def password
  @password
end

#usernameObject

Returns the value of attribute username.



29
30
31
# File 'lib/f5/icontrol.rb', line 29

def username
  @username
end