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.
1251 1252 1253 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1251 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gateway_ip_address ⇒ String
Output only. Gateway IP address.
Corresponds to the JSON property gatewayIpAddress
1229 1230 1231 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1229 def gateway_ip_address @gateway_ip_address end |
#lan_ip_address ⇒ String
Output only. LAN IP address.
Corresponds to the JSON property lanIpAddress
1234 1235 1236 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1234 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
1239 1240 1241 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1239 def report_time @report_time end |
#sample_frequency ⇒ String
Output only. Frequency the report is sampled.
Corresponds to the JSON property sampleFrequency
1244 1245 1246 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1244 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
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 |