Interface AutoComplete.Options
-
- All Superinterfaces:
org.apache.beam.sdk.options.ApplicationNameOptions,ExampleBigQueryTableOptions,ExampleOptions,org.apache.beam.sdk.extensions.gcp.options.GcpOptions,org.apache.beam.sdk.extensions.gcp.options.GoogleApiDebugOptions,org.apache.beam.sdk.transforms.display.HasDisplayData,org.apache.beam.sdk.options.PipelineOptions,org.apache.beam.sdk.options.StreamingOptions
- Enclosing class:
- AutoComplete
public static interface AutoComplete.Options extends ExampleOptions, ExampleBigQueryTableOptions, org.apache.beam.sdk.options.StreamingOptions
Options supported by this class.Inherits standard Beam example configuration options.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.beam.examples.common.ExampleBigQueryTableOptions
ExampleBigQueryTableOptions.BigQueryTableFactory
-
Nested classes/interfaces inherited from interface org.apache.beam.sdk.extensions.gcp.options.GcpOptions
org.apache.beam.sdk.extensions.gcp.options.GcpOptions.DefaultProjectFactory, org.apache.beam.sdk.extensions.gcp.options.GcpOptions.EnableStreamingEngineFactory, org.apache.beam.sdk.extensions.gcp.options.GcpOptions.GcpOAuthScopesFactory, org.apache.beam.sdk.extensions.gcp.options.GcpOptions.GcpTempLocationFactory, org.apache.beam.sdk.extensions.gcp.options.GcpOptions.GcpUserCredentialsFactory
-
Nested classes/interfaces inherited from interface org.apache.beam.sdk.extensions.gcp.options.GoogleApiDebugOptions
org.apache.beam.sdk.extensions.gcp.options.GoogleApiDebugOptions.GoogleApiTracer
-
Nested classes/interfaces inherited from interface org.apache.beam.sdk.options.PipelineOptions
org.apache.beam.sdk.options.PipelineOptions.AtomicLongFactory, org.apache.beam.sdk.options.PipelineOptions.CheckEnabled, org.apache.beam.sdk.options.PipelineOptions.DirectRunner, org.apache.beam.sdk.options.PipelineOptions.JobNameFactory, org.apache.beam.sdk.options.PipelineOptions.UserAgentFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDatastoreAncestorKey()java.lang.LonggetExpectedChecksum()java.lang.StringgetInputFile()java.lang.StringgetKind()java.lang.StringgetOutputProject()java.lang.BooleangetOutputToBigQuery()java.lang.BooleangetOutputToChecksum()java.lang.BooleangetOutputToDatastore()java.lang.BooleangetRecursive()voidsetDatastoreAncestorKey(java.lang.String value)voidsetExpectedChecksum(java.lang.Long value)voidsetInputFile(java.lang.String value)voidsetKind(java.lang.String value)voidsetOutputProject(java.lang.String value)voidsetOutputToBigQuery(java.lang.Boolean value)voidsetOutputToChecksum(java.lang.Boolean value)voidsetOutputToDatastore(java.lang.Boolean value)voidsetRecursive(java.lang.Boolean value)-
Methods inherited from interface org.apache.beam.sdk.options.ApplicationNameOptions
getAppName, setAppName
-
Methods inherited from interface org.apache.beam.examples.common.ExampleBigQueryTableOptions
getBigQueryDataset, getBigQuerySchema, getBigQueryTable, setBigQueryDataset, setBigQuerySchema, setBigQueryTable
-
Methods inherited from interface org.apache.beam.examples.common.ExampleOptions
getInjectorNumWorkers, getKeepJobsRunning, setInjectorNumWorkers, setKeepJobsRunning
-
Methods inherited from interface org.apache.beam.sdk.extensions.gcp.options.GcpOptions
getCredentialFactoryClass, getDataflowKmsKey, getGcpCredential, getGcpOauthScopes, getGcpTempLocation, getImpersonateServiceAccount, getProject, getWorkerRegion, getWorkerZone, getZone, isEnableStreamingEngine, setCredentialFactoryClass, setDataflowKmsKey, setEnableStreamingEngine, setGcpCredential, setGcpOauthScopes, setGcpTempLocation, setImpersonateServiceAccount, setProject, setWorkerRegion, setWorkerZone, setZone
-
Methods inherited from interface org.apache.beam.sdk.extensions.gcp.options.GoogleApiDebugOptions
getGoogleApiTrace, setGoogleApiTrace
-
Methods inherited from interface org.apache.beam.sdk.transforms.display.HasDisplayData
populateDisplayData
-
-
-
-
Method Detail
-
getInputFile
@Required java.lang.String getInputFile()
-
setInputFile
void setInputFile(java.lang.String value)
-
getRecursive
@Boolean(true) java.lang.Boolean getRecursive()
-
setRecursive
void setRecursive(java.lang.Boolean value)
-
getKind
@String("autocomplete-demo") java.lang.String getKind()
-
setKind
void setKind(java.lang.String value)
-
getOutputToBigQuery
@Boolean(true) java.lang.Boolean getOutputToBigQuery()
-
setOutputToBigQuery
void setOutputToBigQuery(java.lang.Boolean value)
-
getOutputToChecksum
@Boolean(true) java.lang.Boolean getOutputToChecksum()
-
setOutputToChecksum
void setOutputToChecksum(java.lang.Boolean value)
-
getExpectedChecksum
java.lang.Long getExpectedChecksum()
-
setExpectedChecksum
void setExpectedChecksum(java.lang.Long value)
-
getOutputToDatastore
@Boolean(false) java.lang.Boolean getOutputToDatastore()
-
setOutputToDatastore
void setOutputToDatastore(java.lang.Boolean value)
-
getDatastoreAncestorKey
@String("root") java.lang.String getDatastoreAncestorKey()
-
setDatastoreAncestorKey
void setDatastoreAncestorKey(java.lang.String value)
-
getOutputProject
java.lang.String getOutputProject()
-
setOutputProject
void setOutputProject(java.lang.String value)
-
-