Class: Google::Apis::DatastoreV1::RunQueryResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::RunQueryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastore_v1/classes.rb,
lib/google/apis/datastore_v1/representations.rb,
lib/google/apis/datastore_v1/representations.rb
Overview
The response for Datastore.RunQuery.
Instance Attribute Summary collapse
-
#batch ⇒ Google::Apis::DatastoreV1::QueryResultBatch
A batch of results produced by a query.
-
#query ⇒ Google::Apis::DatastoreV1::Query
A query for entities.
-
#stats ⇒ Google::Apis::DatastoreV1::ResultSetStats
Planning and execution statistics for the query.
-
#transaction ⇒ String
The identifier of the transaction that was started as part of this RunQuery request.
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.
2566 2567 2568 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2566 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch ⇒ Google::Apis::DatastoreV1::QueryResultBatch
A batch of results produced by a query.
Corresponds to the JSON property batch
2546 2547 2548 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2546 def batch @batch end |
#query ⇒ Google::Apis::DatastoreV1::Query
A query for entities.
Corresponds to the JSON property query
2551 2552 2553 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2551 def query @query end |
#stats ⇒ Google::Apis::DatastoreV1::ResultSetStats
Planning and execution statistics for the query.
Corresponds to the JSON property stats
2556 2557 2558 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2556 def stats @stats end |
#transaction ⇒ String
The identifier of the transaction that was started as part of this RunQuery
request. Set only when ReadOptions.new_transaction was set in RunQueryRequest.
read_options.
Corresponds to the JSON property transaction
NOTE: Values are automatically base64 encoded/decoded in the client library.
2564 2565 2566 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2564 def transaction @transaction end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2571 2572 2573 2574 2575 2576 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2571 def update!(**args) @batch = args[:batch] if args.key?(:batch) @query = args[:query] if args.key?(:query) @stats = args[:stats] if args.key?(:stats) @transaction = args[:transaction] if args.key?(:transaction) end |