Class: Google::Apis::DatastoreV1::RunQueryResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunQueryResponse

Returns a new instance of RunQueryResponse.



2831
2832
2833
# File 'lib/google/apis/datastore_v1/classes.rb', line 2831

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

Instance Attribute Details

#batchGoogle::Apis::DatastoreV1::QueryResultBatch

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



2809
2810
2811
# File 'lib/google/apis/datastore_v1/classes.rb', line 2809

def batch
  @batch
end

#explain_metricsGoogle::Apis::DatastoreV1::ExplainMetrics

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



2814
2815
2816
# File 'lib/google/apis/datastore_v1/classes.rb', line 2814

def explain_metrics
  @explain_metrics
end

#queryGoogle::Apis::DatastoreV1::Query

A query for entities. The query stages are executed in the following order: 1. kind 2. filter 3. projection 4. order + start_cursor + end_cursor 5. offset 6. limit 7. find_nearest Corresponds to the JSON property query



2821
2822
2823
# File 'lib/google/apis/datastore_v1/classes.rb', line 2821

def query
  @query
end

#transactionString

The identifier of the transaction that was started as part of this RunQuery request. Set only when ReadOptions.new_transaction was set in RunQueryRequest. read_options. Corresponds to the JSON property transaction NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


2829
2830
2831
# File 'lib/google/apis/datastore_v1/classes.rb', line 2829

def transaction
  @transaction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2836
2837
2838
2839
2840
2841
# File 'lib/google/apis/datastore_v1/classes.rb', line 2836

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