Reference documentation and code samples for the Cloud Spanner V1 API class Google::Cloud::Spanner::V1::ReadRequest.
The request for Read and StreamingRead.
Inherits
- Object
Extended By
- Google::Protobuf::MessageExts::ClassMethods
Includes
- Google::Protobuf::MessageExts
Methods
#columns
def columns() -> ::Array<::String>
- (::Array<::String>) — Required. The columns of table to be returned for each row matching this request.
#columns=
def columns=(value) -> ::Array<::String>
- value (::Array<::String>) — Required. The columns of table to be returned for each row matching this request.
- (::Array<::String>) — Required. The columns of table to be returned for each row matching this request.
#data_boost_enabled
def data_boost_enabled() -> ::Boolean
-
(::Boolean) — If this is for a partitioned read and this field is set to
true
, the request is executed with Spanner Data Boost independent compute resources.If the field is set to
true
but the request does not setpartition_token
, the API returns anINVALID_ARGUMENT
error.
#data_boost_enabled=
def data_boost_enabled=(value) -> ::Boolean
-
value (::Boolean) — If this is for a partitioned read and this field is set to
true
, the request is executed with Spanner Data Boost independent compute resources.If the field is set to
true
but the request does not setpartition_token
, the API returns anINVALID_ARGUMENT
error.
-
(::Boolean) — If this is for a partitioned read and this field is set to
true
, the request is executed with Spanner Data Boost independent compute resources.If the field is set to
true
but the request does not setpartition_token
, the API returns anINVALID_ARGUMENT
error.
#directed_read_options
def directed_read_options() -> ::Google::Cloud::Spanner::V1::DirectedReadOptions
- (::Google::Cloud::Spanner::V1::DirectedReadOptions) — Directed read options for this request.
#directed_read_options=
def directed_read_options=(value) -> ::Google::Cloud::Spanner::V1::DirectedReadOptions
- value (::Google::Cloud::Spanner::V1::DirectedReadOptions) — Directed read options for this request.
- (::Google::Cloud::Spanner::V1::DirectedReadOptions) — Directed read options for this request.
#index
def index() -> ::String
#index=
def index=(value) -> ::String
#key_set
def key_set() -> ::Google::Cloud::Spanner::V1::KeySet
-
(::Google::Cloud::Spanner::V1::KeySet) — Required.
key_set
identifies the rows to be yielded.key_set
names the primary keys of the rows in table to be yielded, unless index is present. If index is present, then key_set instead names index keys in index.If the partition_token field is empty, rows are yielded in table primary key order (if index is empty) or index key order (if index is non-empty). If the partition_token field is not empty, rows will be yielded in an unspecified order.
It is not an error for the
key_set
to name rows that do not exist in the database. Read yields nothing for nonexistent rows.
#key_set=
def key_set=(value) -> ::Google::Cloud::Spanner::V1::KeySet
-
value (::Google::Cloud::Spanner::V1::KeySet) — Required.
key_set
identifies the rows to be yielded.key_set
names the primary keys of the rows in table to be yielded, unless index is present. If index is present, then key_set instead names index keys in index.If the partition_token field is empty, rows are yielded in table primary key order (if index is empty) or index key order (if index is non-empty). If the partition_token field is not empty, rows will be yielded in an unspecified order.
It is not an error for the
key_set
to name rows that do not exist in the database. Read yields nothing for nonexistent rows.
-
(::Google::Cloud::Spanner::V1::KeySet) — Required.
key_set
identifies the rows to be yielded.key_set
names the primary keys of the rows in table to be yielded, unless index is present. If index is present, then key_set instead names index keys in index.If the partition_token field is empty, rows are yielded in table primary key order (if index is empty) or index key order (if index is non-empty). If the partition_token field is not empty, rows will be yielded in an unspecified order.
It is not an error for the
key_set
to name rows that do not exist in the database. Read yields nothing for nonexistent rows.
#limit
def limit() -> ::Integer
-
(::Integer) — If greater than zero, only the first
limit
rows are yielded. Iflimit
is zero, the default is no limit. A limit cannot be specified ifpartition_token
is set.
#limit=
def limit=(value) -> ::Integer
-
value (::Integer) — If greater than zero, only the first
limit
rows are yielded. Iflimit
is zero, the default is no limit. A limit cannot be specified ifpartition_token
is set.
-
(::Integer) — If greater than zero, only the first
limit
rows are yielded. Iflimit
is zero, the default is no limit. A limit cannot be specified ifpartition_token
is set.
#lock_hint
def lock_hint() -> ::Google::Cloud::Spanner::V1::ReadRequest::LockHint
- (::Google::Cloud::Spanner::V1::ReadRequest::LockHint) — Optional. Lock Hint for the request, it can only be used with read-write transactions.
#lock_hint=
def lock_hint=(value) -> ::Google::Cloud::Spanner::V1::ReadRequest::LockHint
- value (::Google::Cloud::Spanner::V1::ReadRequest::LockHint) — Optional. Lock Hint for the request, it can only be used with read-write transactions.
- (::Google::Cloud::Spanner::V1::ReadRequest::LockHint) — Optional. Lock Hint for the request, it can only be used with read-write transactions.
#order_by
def order_by() -> ::Google::Cloud::Spanner::V1::ReadRequest::OrderBy
-
(::Google::Cloud::Spanner::V1::ReadRequest::OrderBy) — Optional. Order for the returned rows.
By default, Spanner will return result rows in primary key order except for PartitionRead requests. For applications that do not require rows to be returned in primary key (
ORDER_BY_PRIMARY_KEY
) order, settingORDER_BY_NO_ORDER
option allows Spanner to optimize row retrieval, resulting in lower latencies in certain cases (e.g. bulk point lookups).
#order_by=
def order_by=(value) -> ::Google::Cloud::Spanner::V1::ReadRequest::OrderBy
-
value (::Google::Cloud::Spanner::V1::ReadRequest::OrderBy) — Optional. Order for the returned rows.
By default, Spanner will return result rows in primary key order except for PartitionRead requests. For applications that do not require rows to be returned in primary key (
ORDER_BY_PRIMARY_KEY
) order, settingORDER_BY_NO_ORDER
option allows Spanner to optimize row retrieval, resulting in lower latencies in certain cases (e.g. bulk point lookups).
-
(::Google::Cloud::Spanner::V1::ReadRequest::OrderBy) — Optional. Order for the returned rows.
By default, Spanner will return result rows in primary key order except for PartitionRead requests. For applications that do not require rows to be returned in primary key (
ORDER_BY_PRIMARY_KEY
) order, settingORDER_BY_NO_ORDER
option allows Spanner to optimize row retrieval, resulting in lower latencies in certain cases (e.g. bulk point lookups).
#partition_token
def partition_token() -> ::String
- (::String) — If present, results will be restricted to the specified partition previously created using PartitionRead(). There must be an exact match for the values of fields common to this message and the PartitionReadRequest message used to create this partition_token.
#partition_token=
def partition_token=(value) -> ::String
- value (::String) — If present, results will be restricted to the specified partition previously created using PartitionRead(). There must be an exact match for the values of fields common to this message and the PartitionReadRequest message used to create this partition_token.
- (::String) — If present, results will be restricted to the specified partition previously created using PartitionRead(). There must be an exact match for the values of fields common to this message and the PartitionReadRequest message used to create this partition_token.
#request_options
def request_options() -> ::Google::Cloud::Spanner::V1::RequestOptions
- (::Google::Cloud::Spanner::V1::RequestOptions) — Common options for this request.
#request_options=
def request_options=(value) -> ::Google::Cloud::Spanner::V1::RequestOptions
- value (::Google::Cloud::Spanner::V1::RequestOptions) — Common options for this request.
- (::Google::Cloud::Spanner::V1::RequestOptions) — Common options for this request.
#resume_token
def resume_token() -> ::String
-
(::String) — If this request is resuming a previously interrupted read,
resume_token
should be copied from the last PartialResultSet yielded before the interruption. Doing this enables the new read to resume where the last read left off. The rest of the request parameters must exactly match the request that yielded this token.
#resume_token=
def resume_token=(value) -> ::String
-
value (::String) — If this request is resuming a previously interrupted read,
resume_token
should be copied from the last PartialResultSet yielded before the interruption. Doing this enables the new read to resume where the last read left off. The rest of the request parameters must exactly match the request that yielded this token.
-
(::String) — If this request is resuming a previously interrupted read,
resume_token
should be copied from the last PartialResultSet yielded before the interruption. Doing this enables the new read to resume where the last read left off. The rest of the request parameters must exactly match the request that yielded this token.
#session
def session() -> ::String
- (::String) — Required. The session in which the read should be performed.
#session=
def session=(value) -> ::String
- value (::String) — Required. The session in which the read should be performed.
- (::String) — Required. The session in which the read should be performed.
#table
def table() -> ::String
- (::String) — Required. The name of the table in the database to be read.
#table=
def table=(value) -> ::String
- value (::String) — Required. The name of the table in the database to be read.
- (::String) — Required. The name of the table in the database to be read.
#transaction
def transaction() -> ::Google::Cloud::Spanner::V1::TransactionSelector
- (::Google::Cloud::Spanner::V1::TransactionSelector) — The transaction to use. If none is provided, the default is a temporary read-only transaction with strong concurrency.
#transaction=
def transaction=(value) -> ::Google::Cloud::Spanner::V1::TransactionSelector
- value (::Google::Cloud::Spanner::V1::TransactionSelector) — The transaction to use. If none is provided, the default is a temporary read-only transaction with strong concurrency.
- (::Google::Cloud::Spanner::V1::TransactionSelector) — The transaction to use. If none is provided, the default is a temporary read-only transaction with strong concurrency.