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.



1251
1252
1253
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1251

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)


1229
1230
1231
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1229

def gateway_ip_address
  @gateway_ip_address
end

#lan_ip_addressString

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

Returns:

  • (String)


1234
1235
1236
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1234

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)


1239
1240
1241
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1239

def report_time
  @report_time
end

#sample_frequencyString

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

Returns:

  • (String)


1244
1245
1246
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1244

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)


1249
1250
1251
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1249

def signal_strength_dbm
  @signal_strength_dbm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1256
1257
1258
1259
1260
1261
1262
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1256

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