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

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.

[View source]

2486
2487
2488
# File 'lib/google/apis/datastore_v1/classes.rb', line 2486

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


2471
2472
2473
# File 'lib/google/apis/datastore_v1/classes.rb', line 2471

def batch
  @batch
end

#queryGoogle::Apis::DatastoreV1::Query

A query for entities. Corresponds to the JSON property query


2476
2477
2478
# File 'lib/google/apis/datastore_v1/classes.rb', line 2476

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)

2484
2485
2486
# File 'lib/google/apis/datastore_v1/classes.rb', line 2484

def transaction
  @transaction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

2491
2492
2493
2494
2495
# File 'lib/google/apis/datastore_v1/classes.rb', line 2491

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