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.
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.
2322 2323 2324 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2322 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
2315 2316 2317 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2315 def batch @batch end |
#query ⇒ Google::Apis::DatastoreV1::AggregationQuery
Datastore query for running an aggregation over a Query.
Corresponds to the JSON property query
2320 2321 2322 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2320 def query @query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2327 2328 2329 2330 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2327 def update!(**args) @batch = args[:batch] if args.key?(:batch) @query = args[:query] if args.key?(:query) end |