class IDRAC::Client

def initialize(host:, username:, password:, port: 443, use_ssl: true, verify_ssl: true)

def initialize(host:, username:, password:, port: 443, use_ssl: true, verify_ssl: true)
  @host = host
  @username = username
  @password = password
  @port = port
  @use_ssl = use_ssl
  @verify_ssl = verify_ssl
  @session_id = nil
  @cookies = nil
end