Class: Google::Apis::DatastoreV1beta3::RunQueryResponse

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.RunQuery.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunQueryResponse

Returns a new instance of RunQueryResponse.



2272
2273
2274
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2272

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

Instance Attribute Details

#batchGoogle::Apis::DatastoreV1beta3::QueryResultBatch

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



2260
2261
2262
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2260

def batch
  @batch
end

#explain_metricsGoogle::Apis::DatastoreV1beta3::ExplainMetrics

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



2265
2266
2267
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2265

def explain_metrics
  @explain_metrics
end

#queryGoogle::Apis::DatastoreV1beta3::Query

A query for entities. Corresponds to the JSON property query



2270
2271
2272
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2270

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2277
2278
2279
2280
2281
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2277

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)
end