Class: Google::Apis::CloudtasksV2beta3::QueryOverride
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta3::QueryOverride
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2beta3/classes.rb,
lib/google/apis/cloudtasks_v2beta3/representations.rb,
lib/google/apis/cloudtasks_v2beta3/representations.rb
Overview
QueryOverride. Query message defines query override for HTTP targets.
Instance Attribute Summary collapse
-
#query_params ⇒ String
The query parameters (e.g., qparam1=123&qparam2=456).
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryOverride
constructor
A new instance of QueryOverride.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueryOverride
Returns a new instance of QueryOverride.
1243 1244 1245 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 1243 def initialize(**args) update!(**args) end |
Instance Attribute Details
#query_params ⇒ String
The query parameters (e.g., qparam1=123&qparam2=456). Default is an empty
string.
Corresponds to the JSON property queryParams
1241 1242 1243 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 1241 def query_params @query_params end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1248 1249 1250 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 1248 def update!(**args) @query_params = args[:query_params] if args.key?(:query_params) end |