BigQuery API v2 (revision 80)



Uses of Class
com.google.api.services.bigquery.model.JobConfigurationLoad

Packages that use JobConfigurationLoad
com.google.api.services.bigquery.model   
 

Uses of JobConfigurationLoad in com.google.api.services.bigquery.model
 

Methods in com.google.api.services.bigquery.model that return JobConfigurationLoad
 JobConfigurationLoad JobConfiguration.getLoad()
          [Pick one] Configures a load job.
 JobConfigurationLoad JobConfigurationLoad.setAllowQuotedNewlines(Boolean allowQuotedNewlines)
          Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file.
 JobConfigurationLoad JobConfigurationLoad.setCreateDisposition(String createDisposition)
          [Optional] Specifies whether the job is allowed to create new tables.
 JobConfigurationLoad JobConfigurationLoad.setDestinationTable(TableReference destinationTable)
          [Required] The destination table to load the data into.
 JobConfigurationLoad JobConfigurationLoad.setEncoding(String encoding)
          [Optional] The character encoding of the data.
 JobConfigurationLoad JobConfigurationLoad.setFieldDelimiter(String fieldDelimiter)
          [Optional] The separator for fields in a CSV file.
 JobConfigurationLoad JobConfigurationLoad.setMaxBadRecords(Integer maxBadRecords)
          [Optional] The maximum number of bad records that BigQuery can ignore when running the job.
 JobConfigurationLoad JobConfigurationLoad.setQuote(String quote)
          [Optional] The value that is used to quote data sections in a CSV file.
 JobConfigurationLoad JobConfigurationLoad.setSchema(TableSchema schema)
          [Optional] The schema for the destination table.
 JobConfigurationLoad JobConfigurationLoad.setSchemaInline(String schemaInline)
          [Deprecated] The inline schema.
 JobConfigurationLoad JobConfigurationLoad.setSchemaInlineFormat(String schemaInlineFormat)
          [Deprecated] The format of the schemaInline property.
 JobConfigurationLoad JobConfigurationLoad.setSkipLeadingRows(Integer skipLeadingRows)
          [Optional] The number of rows at the top of a CSV file that BigQuery will skip when loading the data.
 JobConfigurationLoad JobConfigurationLoad.setSourceFormat(String sourceFormat)
          [Optional] The format of the data files.
 JobConfigurationLoad JobConfigurationLoad.setSourceUris(List<String> sourceUris)
          [Required] The fully-qualified URIs that point to your data on Google Cloud Storage.
 JobConfigurationLoad JobConfigurationLoad.setWriteDisposition(String writeDisposition)
          [Optional] Specifies the action that occurs if the destination table already exists.
 

Methods in com.google.api.services.bigquery.model with parameters of type JobConfigurationLoad
 JobConfiguration JobConfiguration.setLoad(JobConfigurationLoad load)
          [Pick one] Configures a load job.