public static final class ReadSession.TableReadOptions.Builder extends com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder> implements ReadSession.TableReadOptionsOrBuilder
Options dictating how we read a table.Protobuf type
google.cloud.bigquery.storage.v1.ReadSession.TableReadOptionsgetAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, getUnknownFieldSetBuilder, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, mergeUnknownLengthDelimitedField, mergeUnknownVarintField, newBuilderForField, onBuilt, onChanged, parseUnknownField, setUnknownFieldSetBuilder, setUnknownFieldsProto3findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toStringaddAll, addAll, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, newUninitializedMessageExceptionequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitfindInitializationErrors, getAllFields, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofpublic static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder clear()
clear in interface com.google.protobuf.Message.Builderclear in interface com.google.protobuf.MessageLite.Builderclear in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.Message.BuildergetDescriptorForType in interface com.google.protobuf.MessageOrBuildergetDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions getDefaultInstanceForType()
getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuildergetDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilderpublic ReadSession.TableReadOptions build()
build in interface com.google.protobuf.Message.Builderbuild in interface com.google.protobuf.MessageLite.Builderpublic ReadSession.TableReadOptions buildPartial()
buildPartial in interface com.google.protobuf.Message.BuilderbuildPartial in interface com.google.protobuf.MessageLite.Builderpublic ReadSession.TableReadOptions.Builder clone()
clone in interface com.google.protobuf.Message.Builderclone in interface com.google.protobuf.MessageLite.Builderclone in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
setField in interface com.google.protobuf.Message.BuildersetField in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
clearField in interface com.google.protobuf.Message.BuilderclearField in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
clearOneof in interface com.google.protobuf.Message.BuilderclearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value)
setRepeatedField in interface com.google.protobuf.Message.BuildersetRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
addRepeatedField in interface com.google.protobuf.Message.BuilderaddRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder mergeFrom(com.google.protobuf.Message other)
mergeFrom in interface com.google.protobuf.Message.BuildermergeFrom in class com.google.protobuf.AbstractMessage.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder mergeFrom(ReadSession.TableReadOptions other)
public final boolean isInitialized()
isInitialized in interface com.google.protobuf.MessageLiteOrBuilderisInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public ReadSession.TableReadOptions.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
mergeFrom in interface com.google.protobuf.Message.BuildermergeFrom in interface com.google.protobuf.MessageLite.BuildermergeFrom in class com.google.protobuf.AbstractMessage.Builder<ReadSession.TableReadOptions.Builder>IOExceptionpublic ReadSession.TableReadOptions.OutputFormatSerializationOptionsCase getOutputFormatSerializationOptionsCase()
getOutputFormatSerializationOptionsCase in interface ReadSession.TableReadOptionsOrBuilderpublic ReadSession.TableReadOptions.Builder clearOutputFormatSerializationOptions()
public com.google.protobuf.ProtocolStringList getSelectedFieldsList()
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;getSelectedFieldsList in interface ReadSession.TableReadOptionsOrBuilderpublic int getSelectedFieldsCount()
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;getSelectedFieldsCount in interface ReadSession.TableReadOptionsOrBuilderpublic String getSelectedFields(int index)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;getSelectedFields in interface ReadSession.TableReadOptionsOrBuilderindex - The index of the element to return.public com.google.protobuf.ByteString getSelectedFieldsBytes(int index)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;getSelectedFieldsBytes in interface ReadSession.TableReadOptionsOrBuilderindex - The index of the value to return.public ReadSession.TableReadOptions.Builder setSelectedFields(int index, String value)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;index - The index to set the value at.value - The selectedFields to set.public ReadSession.TableReadOptions.Builder addSelectedFields(String value)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;value - The selectedFields to add.public ReadSession.TableReadOptions.Builder addAllSelectedFields(Iterable<String> values)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;values - The selectedFields to add.public ReadSession.TableReadOptions.Builder clearSelectedFields()
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;public ReadSession.TableReadOptions.Builder addSelectedFieldsBytes(com.google.protobuf.ByteString value)
Optional. The names of the fields in the table to be returned. If no
field names are specified, then all fields in the table are returned.
Nested fields -- the child elements of a STRUCT field -- can be selected
individually using their fully-qualified names, and will be returned as
record fields containing only the selected nested fields. If a STRUCT
field is specified in the selected fields list, all of the child elements
will be returned.
As an example, consider a table with the following schema:
{
"name": "struct_field",
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "string_field1",
"type": "STRING",
. "mode": "NULLABLE"
},
{
"name": "string_field2",
"type": "STRING",
"mode": "NULLABLE"
}
]
}
Specifying "struct_field" in the selected fields list will result in a
read session schema with the following logical structure:
struct_field {
string_field1
string_field2
}
Specifying "struct_field.string_field1" in the selected fields list will
result in a read session schema with the following logical structure:
struct_field {
string_field1
}
The order of the fields in the read session schema is derived from the
table schema and does not correspond to the order in which the fields are
specified in this list.
repeated string selected_fields = 1;value - The bytes of the selectedFields to add.public String getRowRestriction()
SQL text filtering statement, similar to a WHERE clause in a query.
Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;getRowRestriction in interface ReadSession.TableReadOptionsOrBuilderpublic com.google.protobuf.ByteString getRowRestrictionBytes()
SQL text filtering statement, similar to a WHERE clause in a query.
Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;getRowRestrictionBytes in interface ReadSession.TableReadOptionsOrBuilderpublic ReadSession.TableReadOptions.Builder setRowRestriction(String value)
SQL text filtering statement, similar to a WHERE clause in a query.
Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;value - The rowRestriction to set.public ReadSession.TableReadOptions.Builder clearRowRestriction()
SQL text filtering statement, similar to a WHERE clause in a query.
Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;public ReadSession.TableReadOptions.Builder setRowRestrictionBytes(com.google.protobuf.ByteString value)
SQL text filtering statement, similar to a WHERE clause in a query.
Aggregates are not supported.
Examples: "int_field > 5"
"date_field = CAST('2014-9-27' as DATE)"
"nullable_field is not NULL"
"st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
"numeric_field BETWEEN 1.0 AND 5.0"
Restricted to a maximum length for 1 MB.
string row_restriction = 2;value - The bytes for rowRestriction to set.public boolean hasArrowSerializationOptions()
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
hasArrowSerializationOptions in interface ReadSession.TableReadOptionsOrBuilderpublic ArrowSerializationOptions getArrowSerializationOptions()
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
getArrowSerializationOptions in interface ReadSession.TableReadOptionsOrBuilderpublic ReadSession.TableReadOptions.Builder setArrowSerializationOptions(ArrowSerializationOptions value)
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
public ReadSession.TableReadOptions.Builder setArrowSerializationOptions(ArrowSerializationOptions.Builder builderForValue)
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
public ReadSession.TableReadOptions.Builder mergeArrowSerializationOptions(ArrowSerializationOptions value)
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
public ReadSession.TableReadOptions.Builder clearArrowSerializationOptions()
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
public ArrowSerializationOptions.Builder getArrowSerializationOptionsBuilder()
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
public ArrowSerializationOptionsOrBuilder getArrowSerializationOptionsOrBuilder()
Optional. Options specific to the Apache Arrow output format.
.google.cloud.bigquery.storage.v1.ArrowSerializationOptions arrow_serialization_options = 3 [(.google.api.field_behavior) = OPTIONAL];
getArrowSerializationOptionsOrBuilder in interface ReadSession.TableReadOptionsOrBuilderpublic boolean hasAvroSerializationOptions()
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
hasAvroSerializationOptions in interface ReadSession.TableReadOptionsOrBuilderpublic AvroSerializationOptions getAvroSerializationOptions()
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
getAvroSerializationOptions in interface ReadSession.TableReadOptionsOrBuilderpublic ReadSession.TableReadOptions.Builder setAvroSerializationOptions(AvroSerializationOptions value)
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
public ReadSession.TableReadOptions.Builder setAvroSerializationOptions(AvroSerializationOptions.Builder builderForValue)
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
public ReadSession.TableReadOptions.Builder mergeAvroSerializationOptions(AvroSerializationOptions value)
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
public ReadSession.TableReadOptions.Builder clearAvroSerializationOptions()
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
public AvroSerializationOptions.Builder getAvroSerializationOptionsBuilder()
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
public AvroSerializationOptionsOrBuilder getAvroSerializationOptionsOrBuilder()
Optional. Options specific to the Apache Avro output format
.google.cloud.bigquery.storage.v1.AvroSerializationOptions avro_serialization_options = 4 [(.google.api.field_behavior) = OPTIONAL];
getAvroSerializationOptionsOrBuilder in interface ReadSession.TableReadOptionsOrBuilderpublic final ReadSession.TableReadOptions.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
setUnknownFields in interface com.google.protobuf.Message.BuildersetUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>public final ReadSession.TableReadOptions.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
mergeUnknownFields in interface com.google.protobuf.Message.BuildermergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<ReadSession.TableReadOptions.Builder>Copyright © 2023 Google LLC. All rights reserved.