Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport
- 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
Network testing results to determine the health of the device's network connection, for example whether the HTTPS latency is high or normal. * Granular permission needed: TELEMETRY_API_NETWORK_REPORT
Instance Attribute Summary collapse
-
#https_latency_data ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData
Data that describes the result of the HTTPS latency diagnostics routine, with the HTTPS requests issued to Google websites.
-
#report_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1NetworkDiagnosticsReport
constructor
A new instance of GoogleChromeManagementV1NetworkDiagnosticsReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1NetworkDiagnosticsReport
Returns a new instance of GoogleChromeManagementV1NetworkDiagnosticsReport.
2392 2393 2394 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2392 def initialize(**args) update!(**args) end |
Instance Attribute Details
#https_latency_data ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData
Data that describes the result of the HTTPS latency diagnostics routine, with
the HTTPS requests issued to Google websites.
Corresponds to the JSON property httpsLatencyData
2385 2386 2387 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2385 def https_latency_data @https_latency_data end |
#report_time ⇒ String
Output only. Timestamp of when the diagnostics were collected.
Corresponds to the JSON property reportTime
2390 2391 2392 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2390 def report_time @report_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2397 2398 2399 2400 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2397 def update!(**args) @https_latency_data = args[:https_latency_data] if args.key?(:https_latency_data) @report_time = args[:report_time] if args.key?(:report_time) end |