Packages

package model

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait BigQueryModel extends AnyRef
  2. case class BqExtractJob(jobConfig: BqExtractJobConfig) extends BigQueryModel with Product with Serializable
  3. case class BqExtractJobConfig(sourceTable: BqTableReference, destinationUri: String, printHeader: Boolean = false, fieldDelimiter: String = ",", destinationFormat: FileFormat = CsvFormat, compression: String = "NONE") extends BigQueryModel with Product with Serializable
  4. case class BqLoadJob(jobConfig: BqLoadJobConfig) extends BigQueryModel with Product with Serializable
  5. case class BqLoadJobConfig(destinationTable: BqTableReference, schema: BqTableSchema, sourceFormat: FileFormat = CsvFormat, disposition: CreateDisposition = CreateDisposition.CREATE_IF_NEEDED) extends BigQueryModel with Product with Serializable
  6. case class BqQueryJob(jobConfig: BqQueryJobConfig) extends BigQueryModel with Product with Serializable
  7. case class BqQueryJobConfig(query: Query, destinationTable: Option[BqTableReference], disposition: Option[WriteDisposition]) extends BigQueryModel with Product with Serializable
  8. case class BqTableData(rows: BqTableRow*) extends BigQueryModel with Product with Serializable
  9. case class BqTableFieldSchema(fieldName: String, fieldType: String) extends BigQueryModel with Product with Serializable
  10. case class BqTableReference(project: String, dataSet: String, table: String) extends BigQueryModel with Product with Serializable
  11. case class BqTableRow(elem: (String, Any)*) extends BigQueryModel with Product with Serializable
  12. case class BqTableSchema(fields: List[BqTableFieldSchema]) extends BigQueryModel with Product with Serializable
  13. sealed trait FileFormat extends AnyRef

Value Members

  1. object AvroFormat extends FileFormat with Product with Serializable
  2. object BigQueryJobModel
  3. object CsvFormat extends FileFormat with Product with Serializable
  4. object JsonFormat extends FileFormat with Product with Serializable

Ungrouped