Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

State of visible/configured networks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1NetworkStatusReport

Returns a new instance of GoogleChromeManagementV1NetworkStatusReport.



1323
1324
1325
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1323

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#gateway_ip_addressString

Output only. Gateway IP address. Corresponds to the JSON property gatewayIpAddress

Returns:

  • (String)


1301
1302
1303
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1301

def gateway_ip_address
  @gateway_ip_address
end

#lan_ip_addressString

Output only. LAN IP address. Corresponds to the JSON property lanIpAddress

Returns:

  • (String)


1306
1307
1308
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1306

def lan_ip_address
  @lan_ip_address
end

#report_timeString

Output only. Time at which the network state was reported. Corresponds to the JSON property reportTime

Returns:

  • (String)


1311
1312
1313
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1311

def report_time
  @report_time
end

#sample_frequencyString

Output only. Frequency the report is sampled. Corresponds to the JSON property sampleFrequency

Returns:

  • (String)


1316
1317
1318
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1316

def sample_frequency
  @sample_frequency
end

#signal_strength_dbmFixnum

Output only. Signal strength for wireless networks measured in decibels. Corresponds to the JSON property signalStrengthDbm

Returns:

  • (Fixnum)


1321
1322
1323
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1321

def signal_strength_dbm
  @signal_strength_dbm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1328
1329
1330
1331
1332
1333
1334
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1328

def update!(**args)
  @gateway_ip_address = args[:gateway_ip_address] if args.key?(:gateway_ip_address)
  @lan_ip_address = args[:lan_ip_address] if args.key?(:lan_ip_address)
  @report_time = args[:report_time] if args.key?(:report_time)
  @sample_frequency = args[:sample_frequency] if args.key?(:sample_frequency)
  @signal_strength_dbm = args[:signal_strength_dbm] if args.key?(:signal_strength_dbm)
end