Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport
- 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
-
#gateway_ip_address ⇒ String
Output only.
-
#lan_ip_address ⇒ String
Output only.
-
#report_time ⇒ String
Output only.
-
#sample_frequency ⇒ String
Output only.
-
#signal_strength_dbm ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1NetworkStatusReport
constructor
A new instance of GoogleChromeManagementV1NetworkStatusReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_address ⇒ String
Output only. Gateway IP address.
Corresponds to the JSON property gatewayIpAddress
1301 1302 1303 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1301 def gateway_ip_address @gateway_ip_address end |
#lan_ip_address ⇒ String
Output only. LAN IP address.
Corresponds to the JSON property lanIpAddress
1306 1307 1308 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1306 def lan_ip_address @lan_ip_address end |
#report_time ⇒ String
Output only. Time at which the network state was reported.
Corresponds to the JSON property reportTime
1311 1312 1313 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1311 def report_time @report_time end |
#sample_frequency ⇒ String
Output only. Frequency the report is sampled.
Corresponds to the JSON property sampleFrequency
1316 1317 1318 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1316 def sample_frequency @sample_frequency end |
#signal_strength_dbm ⇒ Fixnum
Output only. Signal strength for wireless networks measured in decibels.
Corresponds to the JSON property signalStrengthDbm
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 |