object BigQueryTyped
- Alphabetic
- By Inheritance
- BigQueryTyped
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class BeamSchema[T](table: bigquery.Table, parseFn: (SchemaAndRecord) => T)(implicit evidence$29: Schema[T], evidence$30: Coder[T], evidence$31: ClassTag[T]) extends BigQueryIO[T] with Product with Serializable
- sealed trait IO[T <: HasAnnotation] extends AnyRef
- Annotations
- @implicitNotFound("""
Can't find annotation for type ${T}.
Make sure this class is annotated with BigQueryType.fromStorage, BigQueryType.fromTable or
BigQueryType.fromQuery.
Alternatively, use BigQueryTyped.Storage("<table>"), BigQueryTyped.Table("<table>"), or
BigQueryTyped.Query("<query>") to get a ScioIO instance.
""")
- final case class Select[T <: HasAnnotation](query: Query)(implicit evidence$16: ClassTag[T], evidence$17: scala.reflect.api.JavaUniverse.TypeTag[T], evidence$18: Coder[T]) extends BigQueryIO[T] with Product with Serializable
Get a typed SCollection for a BigQuery SELECT query.
Get a typed SCollection for a BigQuery SELECT query.
Both Legacy SQL and Standard SQL dialects are supported. By default the query dialect will be automatically detected. To override this behavior, start the query string with
#legacysqlor#standardsql. - final case class Storage[T <: HasAnnotation](table: bigquery.Table)(implicit evidence$32: ClassTag[T], evidence$33: scala.reflect.api.JavaUniverse.TypeTag[T], evidence$34: Coder[T]) extends BigQueryIO[T] with Product with Serializable
Get a typed SCollection for a BigQuery table using the storage API.
- final case class StorageQuery[T <: HasAnnotation](sqlQuery: Query)(implicit evidence$35: ClassTag[T], evidence$36: scala.reflect.api.JavaUniverse.TypeTag[T], evidence$37: Coder[T]) extends BigQueryIO[T] with Product with Serializable
- final case class Table[T <: HasAnnotation](table: bigquery.Table)(implicit evidence$22: ClassTag[T], evidence$23: scala.reflect.api.JavaUniverse.TypeTag[T], evidence$24: Coder[T]) extends BigQueryIO[T] with Product with Serializable
Get a typed SCollection for a BigQuery table.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def apply[T <: HasAnnotation](implicit arg0: ClassTag[T], arg1: scala.reflect.api.JavaUniverse.TypeTag[T], t: IO[T]): F[T]
Get a typed SCollection for a BigQuery table or a SELECT query.
Get a typed SCollection for a BigQuery table or a SELECT query.
Note that
Tmust be annotated with BigQueryType.fromStorage, BigQueryType.fromTable, or BigQueryType.fromQueryThe source (table) specified in the annotation will be used
- Annotations
- @inline()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object BeamSchema extends Serializable
- object IO
- object Select extends Serializable
- object Storage extends Serializable
- object Table extends Serializable