public static final class ReadSession.TableReadOptions extends GeneratedMessageV3 implements ReadSession.TableReadOptionsOrBuilder
Options dictating how we read a table.
Protobuf type google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions
Static Fields
ARROW_SERIALIZATION_OPTIONS_FIELD_NUMBER
public static final int ARROW_SERIALIZATION_OPTIONS_FIELD_NUMBER
Field Value
AVRO_SERIALIZATION_OPTIONS_FIELD_NUMBER
public static final int AVRO_SERIALIZATION_OPTIONS_FIELD_NUMBER
Field Value
ROW_RESTRICTION_FIELD_NUMBER
public static final int ROW_RESTRICTION_FIELD_NUMBER
Field Value
SELECTED_FIELDS_FIELD_NUMBER
public static final int SELECTED_FIELDS_FIELD_NUMBER
Field Value
Static Methods
getDefaultInstance()
public static ReadSession.TableReadOptions getDefaultInstance()
Returns
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns
newBuilder()
public static ReadSession.TableReadOptions.Builder newBuilder()
Returns
newBuilder(ReadSession.TableReadOptions prototype)
public static ReadSession.TableReadOptions.Builder newBuilder(ReadSession.TableReadOptions prototype)
Parameter
Returns
public static ReadSession.TableReadOptions parseDelimitedFrom(InputStream input)
Parameter
Returns
Exceptions
public static ReadSession.TableReadOptions parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(byte[] data)
public static ReadSession.TableReadOptions parseFrom(byte[] data)
Parameter
Name | Description |
data | byte[]
|
Returns
Exceptions
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static ReadSession.TableReadOptions parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteString data)
public static ReadSession.TableReadOptions parseFrom(ByteString data)
Parameter
Returns
Exceptions
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static ReadSession.TableReadOptions parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static ReadSession.TableReadOptions parseFrom(CodedInputStream input)
Parameter
Returns
Exceptions
public static ReadSession.TableReadOptions parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static ReadSession.TableReadOptions parseFrom(InputStream input)
Parameter
Returns
Exceptions
public static ReadSession.TableReadOptions parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteBuffer data)
public static ReadSession.TableReadOptions parseFrom(ByteBuffer data)
Parameter
Returns
Exceptions
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static ReadSession.TableReadOptions parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parser()
public static Parser<ReadSession.TableReadOptions> parser()
Returns
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter
Returns
Overrides
getArrowSerializationOptions()
public 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];
Returns
getArrowSerializationOptionsOrBuilder()
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];
Returns
getAvroSerializationOptions()
public 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];
Returns
getAvroSerializationOptionsOrBuilder()
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];
Returns
getDefaultInstanceForType()
public ReadSession.TableReadOptions getDefaultInstanceForType()
Returns
public ReadSession.TableReadOptions.OutputFormatSerializationOptionsCase getOutputFormatSerializationOptionsCase()
Returns
getParserForType()
public Parser<ReadSession.TableReadOptions> getParserForType()
Returns
Overrides
getRowRestriction()
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;
Returns
Type | Description |
String | The rowRestriction.
|
getRowRestrictionBytes()
public 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;
Returns
Type | Description |
ByteString | The bytes for rowRestriction.
|
getSelectedFields(int index)
public 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;
Parameter
Name | Description |
index | int
The index of the element to return.
|
Returns
Type | Description |
String | The selectedFields at the given index.
|
getSelectedFieldsBytes(int index)
public 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;
Parameter
Name | Description |
index | int
The index of the value to return.
|
Returns
Type | Description |
ByteString | The bytes of the selectedFields at the given index.
|
getSelectedFieldsCount()
public 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;
Returns
Type | Description |
int | The count of selectedFields.
|
getSelectedFieldsList()
public 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;
Returns
getSerializedSize()
public int getSerializedSize()
Returns
Overrides
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Returns
Overrides
hasArrowSerializationOptions()
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];
Returns
Type | Description |
boolean | Whether the arrowSerializationOptions field is set.
|
hasAvroSerializationOptions()
public 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];
Returns
Type | Description |
boolean | Whether the avroSerializationOptions field is set.
|
hashCode()
Returns
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Overrides
isInitialized()
public final boolean isInitialized()
Returns
Overrides
newBuilderForType()
public ReadSession.TableReadOptions.Builder newBuilderForType()
Returns
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected ReadSession.TableReadOptions.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Returns
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Returns
Overrides
toBuilder()
public ReadSession.TableReadOptions.Builder toBuilder()
Returns
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Parameter
Overrides
Exceptions