Packages

final class BigQuery extends AnyRef

A simple BigQuery client.

Source
BigQuery.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigQuery
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val client: Client
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def createTypedTable[T <: HasAnnotation](tableSpec: String)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Unit
  8. def createTypedTable[T <: HasAnnotation](table: TableReference)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Unit
  9. def createTypedTable[T <: HasAnnotation](table: google.api.services.bigquery.model.Table)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Unit
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. val extract: ExtractOps
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def getTypedRows[T <: HasAnnotation](newSource: String = null)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Iterator[T]

    Get a typed iterator for a BigQuery SELECT query or table.

    Get a typed iterator for a BigQuery SELECT query or table.

    Note that T must be annotated with BigQueryType.fromSchema, BigQueryType.fromTable, BigQueryType.fromQuery, or BigQueryType.toTable.

    By default the source (table or query) specified in the annotation will be used, but it can be overridden with the newSource parameter. For example:

    @BigQueryType.fromTable("bigquery-public-data:samples.gsod")
    class Row
    
    // Read from [bigquery-public-data:samples.gsod] as specified in the annotation.
    bq.getTypedRows[Row]()
    
    // Read from [myproject:samples.gsod] instead.
    bq.getTypedRows[Row]("myproject:samples.gsod")
    
    // Read from a query instead.
    bq.getTypedRows[Row]("SELECT * FROM [bigquery-public-data:samples.gsod] LIMIT 1000")
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. val jobs: JobOps
  19. val load: LoadOps
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. val query: QueryOps
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. val tables: TableOps
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. def waitForJobs(bqJobs: BigQueryJob*): Unit

    Wait for all jobs to finish.

  31. def writeTypedRows[T <: HasAnnotation](tableSpec: String, rows: List[T], writeDisposition: WriteDisposition = WRITE_EMPTY, createDisposition: CreateDisposition = CREATE_IF_NEEDED)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Long

    Write a List of rows to a BigQuery table.

    Write a List of rows to a BigQuery table. Note that element type T must be annotated with BigQueryType.

  32. def writeTypedRows[T <: HasAnnotation](table: TableReference, rows: List[T], writeDisposition: WriteDisposition, createDisposition: CreateDisposition)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Long

    Write a List of rows to a BigQuery table.

    Write a List of rows to a BigQuery table. Note that element type T must be annotated with BigQueryType.

Inherited from AnyRef

Inherited from Any

Ungrouped