Class: Google::Apis::CloudsearchV1::ResponseDebugInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ResponseDebugInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Debugging information about the response.
Instance Attribute Summary collapse
-
#enabled_experiments ⇒ Array<Fixnum>
Experiments enabled in QAPI.
-
#formatted_debug_info ⇒ String
General debug info formatted for display.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResponseDebugInfo
constructor
A new instance of ResponseDebugInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResponseDebugInfo
Returns a new instance of ResponseDebugInfo.
14162 14163 14164 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled_experiments ⇒ Array<Fixnum>
Experiments enabled in QAPI.
Corresponds to the JSON property enabledExperiments
14155 14156 14157 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14155 def enabled_experiments @enabled_experiments end |
#formatted_debug_info ⇒ String
General debug info formatted for display.
Corresponds to the JSON property formattedDebugInfo
14160 14161 14162 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14160 def formatted_debug_info @formatted_debug_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14167 14168 14169 14170 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14167 def update!(**args) @enabled_experiments = args[:enabled_experiments] if args.key?(:enabled_experiments) @formatted_debug_info = args[:formatted_debug_info] if args.key?(:formatted_debug_info) end |