Class: Google::Apis::DatastoreV1::RunAggregationQueryResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::RunAggregationQueryResponse
- 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.RunAggregationQuery.
Instance Attribute Summary collapse
-
#batch ⇒ Google::Apis::DatastoreV1::AggregationResultBatch
A batch of aggregation results produced by an aggregation query.
-
#query ⇒ Google::Apis::DatastoreV1::AggregationQuery
Datastore query for running an aggregation over a Query.
-
#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 RunAggregationQuery request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RunAggregationQueryResponse
constructor
A new instance of RunAggregationQueryResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RunAggregationQueryResponse
Returns a new instance of RunAggregationQueryResponse.
2465 2466 2467 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2465 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch ⇒ Google::Apis::DatastoreV1::AggregationResultBatch
A batch of aggregation results produced by an aggregation query.
Corresponds to the JSON property batch
2445 2446 2447 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2445 def batch @batch end |
#query ⇒ Google::Apis::DatastoreV1::AggregationQuery
Datastore query for running an aggregation over a Query.
Corresponds to the JSON property query
2450 2451 2452 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2450 def query @query end |
#stats ⇒ Google::Apis::DatastoreV1::ResultSetStats
Planning and execution statistics for the query.
Corresponds to the JSON property stats
2455 2456 2457 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2455 def stats @stats end |
#transaction ⇒ String
The identifier of the transaction that was started as part of this
RunAggregationQuery request. Set only when ReadOptions.new_transaction was set
in RunAggregationQueryRequest.read_options.
Corresponds to the JSON property transaction
NOTE: Values are automatically base64 encoded/decoded in the client library.
2463 2464 2465 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2463 def transaction @transaction end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2470 2471 2472 2473 2474 2475 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2470 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 |