package connectors
Type Members
- case class BigQueryDataConnector(tempWriteBucket: String, name: String, credentialName: Option[String], credential: Option[Credential]) extends BatchDataConnector with Product with Serializable
- trait GCSConnector extends Connector
- case class GCSDataConnector(name: String, credentialName: Option[String], credential: Option[Credential]) extends BatchDataConnector with GCSConnector with Product with Serializable
-
case class
GCSFileConnector(projectId: String, bucket: String, name: String, credentialName: Option[String], credential: Option[Credential]) extends FileConnector with GCSConnector with Product with Serializable
Provides an implementation of FileConnector that works with GCS.
Provides an implementation of FileConnector that works with GCS.
- projectId
The project id of the GCS project
- bucket
The name of the GCS bucket
- name
The name of this connector
- credentialName
The optional name of the credential to provide the CredentialProvider
- credential
The optional credential to use. credentialName takes precedence if provided.