Class BigQueryExportReadSchemaTransformProvider
- java.lang.Object
-
- org.apache.beam.sdk.schemas.transforms.TypedSchemaTransformProvider<BigQueryExportReadSchemaTransformConfiguration>
-
- org.apache.beam.sdk.io.gcp.bigquery.BigQueryExportReadSchemaTransformProvider
-
- All Implemented Interfaces:
org.apache.beam.sdk.schemas.transforms.SchemaTransformProvider
@Internal @AutoService(org.apache.beam.sdk.schemas.transforms.SchemaTransformProvider.class) public class BigQueryExportReadSchemaTransformProvider extends org.apache.beam.sdk.schemas.transforms.TypedSchemaTransformProvider<BigQueryExportReadSchemaTransformConfiguration>
An implementation ofTypedSchemaTransformProviderfor BigQuery read jobs configured usingBigQueryExportReadSchemaTransformConfiguration.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 protected static classBigQueryExportReadSchemaTransformProvider.BigQueryExportSchemaTransformAn implementation ofSchemaTransformfor BigQuery read jobs configured usingBigQueryExportReadSchemaTransformConfiguration.
-
Constructor Summary
Constructors Constructor Description BigQueryExportReadSchemaTransformProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Class<BigQueryExportReadSchemaTransformConfiguration>configurationClass()Returns the expected class of the configuration.protected org.apache.beam.sdk.schemas.transforms.SchemaTransformfrom(BigQueryExportReadSchemaTransformConfiguration configuration)Returns the expectedSchemaTransformof the configuration.java.lang.Stringidentifier()Implementation of theTypedSchemaTransformProvideridentifier method.java.util.List<java.lang.String>inputCollectionNames()Implementation of theTypedSchemaTransformProviderinputCollectionNames method.java.util.List<java.lang.String>outputCollectionNames()Implementation of theTypedSchemaTransformProvideroutputCollectionNames method.-
Methods inherited from class org.apache.beam.sdk.schemas.transforms.TypedSchemaTransformProvider
configurationSchema, dependencies, from
-
-
-
-
Method Detail
-
configurationClass
protected java.lang.Class<BigQueryExportReadSchemaTransformConfiguration> configurationClass()
Returns the expected class of the configuration.- Overrides:
configurationClassin classorg.apache.beam.sdk.schemas.transforms.TypedSchemaTransformProvider<BigQueryExportReadSchemaTransformConfiguration>
-
from
protected org.apache.beam.sdk.schemas.transforms.SchemaTransform from(BigQueryExportReadSchemaTransformConfiguration configuration)
Returns the expectedSchemaTransformof the configuration.- Specified by:
fromin classorg.apache.beam.sdk.schemas.transforms.TypedSchemaTransformProvider<BigQueryExportReadSchemaTransformConfiguration>
-
identifier
public java.lang.String identifier()
Implementation of theTypedSchemaTransformProvideridentifier method.
-
inputCollectionNames
public java.util.List<java.lang.String> inputCollectionNames()
Implementation of theTypedSchemaTransformProviderinputCollectionNames method. Since no input is expected, this returns an empty list.
-
outputCollectionNames
public java.util.List<java.lang.String> outputCollectionNames()
Implementation of theTypedSchemaTransformProvideroutputCollectionNames method. Since a single output is expected, this returns a list with a single name.
-
-