class WlcSnmp::ClientData
Attributes
ap[R]
ap_mac[R]
current_rate[R]
ip_address[R]
mac_address[R]
protocol[R]
ssid[R]
supported_data_rates[R]
uptime[R]
user[R]
wlan_profile[R]
Public Class Methods
new(ip_address: , mac_address: nil, wlan_profile: nil, protocol: nil, ap_mac: nil, uptime: nil, current_rate: nil, supported_data_rates: nil, user: nil, ssid: nil, ap: nil)
click to toggle source
# File lib/wlc_snmp/client_data.rb, line 3 def initialize(ip_address: , mac_address: nil, wlan_profile: nil, protocol: nil, ap_mac: nil, uptime: nil, current_rate: nil, supported_data_rates: nil, user: nil, ssid: nil, ap: nil) @ip_address = ip_address @mac_address = mac_address @wlan_profile = wlan_profile @protocol = protocol @ap_mac = ap_mac @uptime = uptime @current_rate = current_rate @supported_data_rates = supported_data_rates @user = user @ssid = ssid @ap = ap end