Class BigQueryExportReadSchemaTransformConfiguration
- java.lang.Object
-
- org.apache.beam.sdk.io.gcp.bigquery.BigQueryExportReadSchemaTransformConfiguration
-
@DefaultSchema(org.apache.beam.sdk.schemas.AutoValueSchema.class) public abstract class BigQueryExportReadSchemaTransformConfiguration extends java.lang.ObjectConfiguration for reading from BigQuery.This class is meant to be used with
BigQueryExportReadSchemaTransformProvider.Internal only: This class is actively being worked on, and it will likely change. We provide no backwards compatibility guarantees, and it should not be implemented outside the Beam repository.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBigQueryExportReadSchemaTransformConfiguration.Builder
-
Constructor Summary
Constructors Constructor Description BigQueryExportReadSchemaTransformConfiguration()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static BigQueryExportReadSchemaTransformConfiguration.Builderbuilder()Instantiates aBigQueryExportReadSchemaTransformConfiguration.Builder.abstract java.lang.StringgetQuery()Configures the BigQuery read job with the SQL query.abstract java.lang.StringgetQueryLocation()BigQuery geographic location where the query job will be executed.abstract java.lang.StringgetTableSpec()Specifies a table for a BigQuery read job.abstract java.lang.BooleangetUseStandardSql()Enables BigQuery's Standard SQL dialect when reading from a query.
-
-
-
Method Detail
-
builder
public static BigQueryExportReadSchemaTransformConfiguration.Builder builder()
Instantiates aBigQueryExportReadSchemaTransformConfiguration.Builder.
-
getQuery
@Nullable public abstract java.lang.String getQuery()
Configures the BigQuery read job with the SQL query.
-
getTableSpec
@Nullable public abstract java.lang.String getTableSpec()
Specifies a table for a BigQuery read job. SeeBigQueryIO.TypedRead.from(String)for more details on the expected format.
-
getQueryLocation
@Nullable public abstract java.lang.String getQueryLocation()
BigQuery geographic location where the query job will be executed.
-
getUseStandardSql
@Nullable public abstract java.lang.Boolean getUseStandardSql()
Enables BigQuery's Standard SQL dialect when reading from a query.
-
-