Interface ImportedDataInfo.TableDefinitionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportedDataInfo.TableDefinition,ImportedDataInfo.TableDefinition.Builder
- Enclosing class:
- ImportedDataInfo
public static interface ImportedDataInfo.TableDefinitionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportedDataInfo.TableDefinition.CsvOptionsgetCsvOptions()CSV specific options.ImportedDataInfo.TableDefinition.CsvOptionsOrBuildergetCsvOptionsOrBuilder()CSV specific options.ImportedDataInfo.EncodinggetEncoding()Character encoding of the input when applicable (CSV, JSON).intgetEncodingValue()Character encoding of the input when applicable (CSV, JSON).ImportedDataInfo.FormatgetFormat()Describes the format of the data in source_uri.intgetFormatValue()Describes the format of the data in source_uri.com.google.protobuf.BoolValuegetIgnoreUnknownValues()Indicates if extra values that are not represented in the table schema is allowed.com.google.protobuf.BoolValueOrBuildergetIgnoreUnknownValuesOrBuilder()Indicates if extra values that are not represented in the table schema is allowed.intgetMaxBadRecords()Specify the maximum number of bad records that can be ignored.ImportedDataInfo.RecordSchemagetSchema()Optional schema for the data.ImportedDataInfo.RecordSchemaOrBuildergetSchemaOrBuilder()Optional schema for the data.StringgetSourceUris(int index)URIs for the data to be imported.com.google.protobuf.ByteStringgetSourceUrisBytes(int index)URIs for the data to be imported.intgetSourceUrisCount()URIs for the data to be imported.List<String>getSourceUrisList()URIs for the data to be imported.StringgetTableId()BigQuery table_id (required).com.google.protobuf.ByteStringgetTableIdBytes()BigQuery table_id (required).booleanhasCsvOptions()CSV specific options.booleanhasIgnoreUnknownValues()Indicates if extra values that are not represented in the table schema is allowed.booleanhasSchema()Optional schema for the data.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTableId
String getTableId()
BigQuery table_id (required). This will be used to reference this table in the query.
string table_id = 1;
-
getTableIdBytes
com.google.protobuf.ByteString getTableIdBytes()
BigQuery table_id (required). This will be used to reference this table in the query.
string table_id = 1;
-
getSourceUrisList
List<String> getSourceUrisList()
URIs for the data to be imported. All URIs must be from the same storage system.
repeated string source_uris = 2;
-
getSourceUrisCount
int getSourceUrisCount()
URIs for the data to be imported. All URIs must be from the same storage system.
repeated string source_uris = 2;
-
getSourceUris
String getSourceUris(int index)
URIs for the data to be imported. All URIs must be from the same storage system.
repeated string source_uris = 2;
-
getSourceUrisBytes
com.google.protobuf.ByteString getSourceUrisBytes(int index)
URIs for the data to be imported. All URIs must be from the same storage system.
repeated string source_uris = 2;
-
getFormatValue
int getFormatValue()
Describes the format of the data in source_uri.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.Format format = 3;
-
getFormat
ImportedDataInfo.Format getFormat()
Describes the format of the data in source_uri.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.Format format = 3;
-
getMaxBadRecords
int getMaxBadRecords()
Specify the maximum number of bad records that can be ignored. If bad records exceed this threshold the query is aborted.
int32 max_bad_records = 4;
-
getEncodingValue
int getEncodingValue()
Character encoding of the input when applicable (CSV, JSON). Defaults to UTF8.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.Encoding encoding = 5;
-
getEncoding
ImportedDataInfo.Encoding getEncoding()
Character encoding of the input when applicable (CSV, JSON). Defaults to UTF8.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.Encoding encoding = 5;
-
hasCsvOptions
boolean hasCsvOptions()
CSV specific options.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition.CsvOptions csv_options = 6;
-
getCsvOptions
ImportedDataInfo.TableDefinition.CsvOptions getCsvOptions()
CSV specific options.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition.CsvOptions csv_options = 6;
-
getCsvOptionsOrBuilder
ImportedDataInfo.TableDefinition.CsvOptionsOrBuilder getCsvOptionsOrBuilder()
CSV specific options.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition.CsvOptions csv_options = 6;
-
hasSchema
boolean hasSchema()
Optional schema for the data. When not specified for JSON and CSV formats we will try to detect it automatically.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.RecordSchema schema = 7;
-
getSchema
ImportedDataInfo.RecordSchema getSchema()
Optional schema for the data. When not specified for JSON and CSV formats we will try to detect it automatically.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.RecordSchema schema = 7;
-
getSchemaOrBuilder
ImportedDataInfo.RecordSchemaOrBuilder getSchemaOrBuilder()
Optional schema for the data. When not specified for JSON and CSV formats we will try to detect it automatically.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.RecordSchema schema = 7;
-
hasIgnoreUnknownValues
boolean hasIgnoreUnknownValues()
Indicates if extra values that are not represented in the table schema is allowed.
.google.protobuf.BoolValue ignore_unknown_values = 10;
-
getIgnoreUnknownValues
com.google.protobuf.BoolValue getIgnoreUnknownValues()
Indicates if extra values that are not represented in the table schema is allowed.
.google.protobuf.BoolValue ignore_unknown_values = 10;
-
getIgnoreUnknownValuesOrBuilder
com.google.protobuf.BoolValueOrBuilder getIgnoreUnknownValuesOrBuilder()
Indicates if extra values that are not represented in the table schema is allowed.
.google.protobuf.BoolValue ignore_unknown_values = 10;
-
-