Class: Google::Apis::DatastoreV1beta3::RunAggregationQueryResponse

Inherits:
Object
  • Object
show all
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.RunAggregationQuery.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunAggregationQueryResponse

Returns a new instance of RunAggregationQueryResponse.



1976
1977
1978
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1976

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#batchGoogle::Apis::DatastoreV1beta3::AggregationResultBatch

A batch of aggregation results produced by an aggregation query. Corresponds to the JSON property batch



1969
1970
1971
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1969

def batch
  @batch
end

#queryGoogle::Apis::DatastoreV1beta3::AggregationQuery

Datastore query for running an aggregation over a Query. Corresponds to the JSON property query



1974
1975
1976
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1974

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1981
1982
1983
1984
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1981

def update!(**args)
  @batch = args[:batch] if args.key?(:batch)
  @query = args[:query] if args.key?(:query)
end