Class: Google::Apis::DatastoreV1beta3::RunQueryResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta3::RunQueryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastore_v1beta3/classes.rb,
lib/google/apis/datastore_v1beta3/representations.rb,
lib/google/apis/datastore_v1beta3/representations.rb
Overview
The response for Datastore.RunQuery.
Instance Attribute Summary collapse
-
#batch ⇒ Google::Apis::DatastoreV1beta3::QueryResultBatch
A batch of results produced by a query.
-
#query ⇒ Google::Apis::DatastoreV1beta3::Query
A query for entities.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RunQueryResponse
constructor
A new instance of RunQueryResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RunQueryResponse
Returns a new instance of RunQueryResponse.
2092 2093 2094 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2092 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch ⇒ Google::Apis::DatastoreV1beta3::QueryResultBatch
A batch of results produced by a query.
Corresponds to the JSON property batch
2085 2086 2087 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2085 def batch @batch end |
#query ⇒ Google::Apis::DatastoreV1beta3::Query
A query for entities.
Corresponds to the JSON property query
2090 2091 2092 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2090 def query @query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2097 2098 2099 2100 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2097 def update!(**args) @batch = args[:batch] if args.key?(:batch) @query = args[:query] if args.key?(:query) end |