Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData
- 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
Data that describes the result of the HTTPS latency diagnostics routine, with the HTTPS requests issued to Google websites.
Instance Attribute Summary collapse
-
#latency ⇒ String
Output only.
-
#problem ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1HttpsLatencyRoutineData
constructor
A new instance of GoogleChromeManagementV1HttpsLatencyRoutineData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1HttpsLatencyRoutineData
Returns a new instance of GoogleChromeManagementV1HttpsLatencyRoutineData.
2144 2145 2146 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2144 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latency ⇒ String
Output only. HTTPS latency if routine succeeded or failed because of
HIGH_LATENCY or VERY_HIGH_LATENCY.
Corresponds to the JSON property latency
2137 2138 2139 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2137 def latency @latency end |
#problem ⇒ String
Output only. HTTPS latency routine problem if a problem occurred.
Corresponds to the JSON property problem
2142 2143 2144 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2142 def problem @problem end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2149 2150 2151 2152 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2149 def update!(**args) @latency = args[:latency] if args.key?(:latency) @problem = args[:problem] if args.key?(:problem) end |