Interface ImportedDataInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportedDataInfo,ImportedDataInfo.Builder
public interface ImportedDataInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDestinationTableDescription()The description of a destination table.com.google.protobuf.ByteStringgetDestinationTableDescriptionBytes()The description of a destination table.StringgetDestinationTableId()Table where results should be written.com.google.protobuf.ByteStringgetDestinationTableIdBytes()Table where results should be written.StringgetSql()SQL query to run.com.google.protobuf.ByteStringgetSqlBytes()SQL query to run.ImportedDataInfo.TableDefinitiongetTableDefs(int index)When used WITHOUT the "sql" parameter, describes the schema of the destination table.intgetTableDefsCount()When used WITHOUT the "sql" parameter, describes the schema of the destination table.List<ImportedDataInfo.TableDefinition>getTableDefsList()When used WITHOUT the "sql" parameter, describes the schema of the destination table.ImportedDataInfo.TableDefinitionOrBuildergetTableDefsOrBuilder(int index)When used WITHOUT the "sql" parameter, describes the schema of the destination table.List<? extends ImportedDataInfo.TableDefinitionOrBuilder>getTableDefsOrBuilderList()When used WITHOUT the "sql" parameter, describes the schema of the destination table.StringgetUserDefinedFunctions(int index)Inline code for User-defined function resources.com.google.protobuf.ByteStringgetUserDefinedFunctionsBytes(int index)Inline code for User-defined function resources.intgetUserDefinedFunctionsCount()Inline code for User-defined function resources.List<String>getUserDefinedFunctionsList()Inline code for User-defined function resources.WriteDispositiongetWriteDisposition()Specifies the action if the destination table already exists.intgetWriteDispositionValue()Specifies the action if the destination table already exists.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSql
String getSql()
SQL query to run. When empty, API checks that there is only one table_def specified and loads this table. Only Standard SQL queries are accepted. Legacy SQL is not allowed.
string sql = 1;
-
getSqlBytes
com.google.protobuf.ByteString getSqlBytes()
SQL query to run. When empty, API checks that there is only one table_def specified and loads this table. Only Standard SQL queries are accepted. Legacy SQL is not allowed.
string sql = 1;
-
getDestinationTableId
String getDestinationTableId()
Table where results should be written.
string destination_table_id = 2;
-
getDestinationTableIdBytes
com.google.protobuf.ByteString getDestinationTableIdBytes()
Table where results should be written.
string destination_table_id = 2;
-
getDestinationTableDescription
String getDestinationTableDescription()
The description of a destination table. This can be several sentences or paragraphs describing the table contents in detail.
string destination_table_description = 10;
-
getDestinationTableDescriptionBytes
com.google.protobuf.ByteString getDestinationTableDescriptionBytes()
The description of a destination table. This can be several sentences or paragraphs describing the table contents in detail.
string destination_table_description = 10;
-
getTableDefsList
List<ImportedDataInfo.TableDefinition> getTableDefsList()
When used WITHOUT the "sql" parameter, describes the schema of the destination table. When used WITH the "sql" parameter, describes tables with data stored outside of BigQuery.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition table_defs = 3;
-
getTableDefs
ImportedDataInfo.TableDefinition getTableDefs(int index)
When used WITHOUT the "sql" parameter, describes the schema of the destination table. When used WITH the "sql" parameter, describes tables with data stored outside of BigQuery.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition table_defs = 3;
-
getTableDefsCount
int getTableDefsCount()
When used WITHOUT the "sql" parameter, describes the schema of the destination table. When used WITH the "sql" parameter, describes tables with data stored outside of BigQuery.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition table_defs = 3;
-
getTableDefsOrBuilderList
List<? extends ImportedDataInfo.TableDefinitionOrBuilder> getTableDefsOrBuilderList()
When used WITHOUT the "sql" parameter, describes the schema of the destination table. When used WITH the "sql" parameter, describes tables with data stored outside of BigQuery.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition table_defs = 3;
-
getTableDefsOrBuilder
ImportedDataInfo.TableDefinitionOrBuilder getTableDefsOrBuilder(int index)
When used WITHOUT the "sql" parameter, describes the schema of the destination table. When used WITH the "sql" parameter, describes tables with data stored outside of BigQuery.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.TableDefinition table_defs = 3;
-
getUserDefinedFunctionsList
List<String> getUserDefinedFunctionsList()
Inline code for User-defined function resources. Ignored when "sql" parameter is empty.
repeated string user_defined_functions = 4;
-
getUserDefinedFunctionsCount
int getUserDefinedFunctionsCount()
Inline code for User-defined function resources. Ignored when "sql" parameter is empty.
repeated string user_defined_functions = 4;
-
getUserDefinedFunctions
String getUserDefinedFunctions(int index)
Inline code for User-defined function resources. Ignored when "sql" parameter is empty.
repeated string user_defined_functions = 4;
-
getUserDefinedFunctionsBytes
com.google.protobuf.ByteString getUserDefinedFunctionsBytes(int index)
Inline code for User-defined function resources. Ignored when "sql" parameter is empty.
repeated string user_defined_functions = 4;
-
getWriteDispositionValue
int getWriteDispositionValue()
Specifies the action if the destination table already exists.
.google.cloud.bigquery.datatransfer.v1.WriteDisposition write_disposition = 6;
-
getWriteDisposition
WriteDisposition getWriteDisposition()
Specifies the action if the destination table already exists.
.google.cloud.bigquery.datatransfer.v1.WriteDisposition write_disposition = 6;
-
-