Class: Google::Apis::DatastoreV1beta3::ReadOptions

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 options shared by read requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReadOptions

Returns a new instance of ReadOptions.



1497
1498
1499
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1497

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

Instance Attribute Details

#read_consistencyString

The non-transactional read consistency to use. Cannot be set to STRONG for global queries. Corresponds to the JSON property readConsistency

Returns:

  • (String)


1488
1489
1490
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1488

def read_consistency
  @read_consistency
end

#transactionString

The identifier of the transaction in which to read. A transaction identifier is returned by a call to Datastore.BeginTransaction. Corresponds to the JSON property transaction NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


1495
1496
1497
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1495

def transaction
  @transaction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1502
1503
1504
1505
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1502

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