Class: Google::Apis::DatastoreV1::RunAggregationQueryResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunAggregationQueryResponse

Returns a new instance of RunAggregationQueryResponse.



2648
2649
2650
# File 'lib/google/apis/datastore_v1/classes.rb', line 2648

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

Instance Attribute Details

#batchGoogle::Apis::DatastoreV1::AggregationResultBatch

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



2628
2629
2630
# File 'lib/google/apis/datastore_v1/classes.rb', line 2628

def batch
  @batch
end

#explain_metricsGoogle::Apis::DatastoreV1::ExplainMetrics

Explain metrics for the query. Corresponds to the JSON property explainMetrics



2633
2634
2635
# File 'lib/google/apis/datastore_v1/classes.rb', line 2633

def explain_metrics
  @explain_metrics
end

#queryGoogle::Apis::DatastoreV1::AggregationQuery

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



2638
2639
2640
# File 'lib/google/apis/datastore_v1/classes.rb', line 2638

def query
  @query
end

#transactionString

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.

Returns:

  • (String)


2646
2647
2648
# File 'lib/google/apis/datastore_v1/classes.rb', line 2646

def transaction
  @transaction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2653
2654
2655
2656
2657
2658
# File 'lib/google/apis/datastore_v1/classes.rb', line 2653

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