Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData

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

Data that describes the result of the HTTPS latency diagnostics routine, with the HTTPS requests issued to Google websites.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1HttpsLatencyRoutineData

Returns a new instance of GoogleChromeManagementV1HttpsLatencyRoutineData.



2105
2106
2107
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2105

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#latencyString

Output only. HTTPS latency if routine succeeded or failed because of HIGH_LATENCY or VERY_HIGH_LATENCY. Corresponds to the JSON property latency

Returns:

  • (String)


2098
2099
2100
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2098

def latency
  @latency
end

#problemString

Output only. HTTPS latency routine problem if a problem occurred. Corresponds to the JSON property problem

Returns:

  • (String)


2103
2104
2105
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2103

def problem
  @problem
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2110
2111
2112
2113
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2110

def update!(**args)
  @latency = args[:latency] if args.key?(:latency)
  @problem = args[:problem] if args.key?(:problem)
end