GcsStore

class GcsStore[F[_]](storage: Storage, acls: List[Acl], defaultTrailingSlashFiles: Boolean, defaultDirectDownload: Boolean)(using `evidence$1`: Async[F]) extends Store[F, GcsBlob]
Value Params
acls

list of Access Control List objects to be set on all uploads.

defaultDirectDownload

use direct download. When enabled the whole media content is downloaded in a single request (but still streamed). Otherwise use the resumable media download protocol to download in data chunks. This controls behaviour of get method from Store trait. Use getUnderlying to control on per-invocation basis.

defaultTrailingSlashFiles

test if folders returned by list are files with trailing slashes in their names. This controls behaviour of list method from Store trait. Use listUnderlying to control on per-invocation basis.

storage

configured instance of GCS Storage

Companion
object
trait Store[F, GcsBlob]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def copy[A, B](src: Url[A], dst: Url[B]): F[Unit]

Copies bytes from srcPath to dstPath. Stores should optimize to use native copy functions to avoid data transfer.

Copies bytes from srcPath to dstPath. Stores should optimize to use native copy functions to avoid data transfer.

Value Params
dst

path

src

path

Returns

F[Unit]

Definition Classes
Store
override def get[A](url: Url[A], chunkSize: Int): Stream[F, Byte]
Definition Classes
Store
def get[A](url: Url[A], chunkSize: Int, options: List[BlobGetOption]): Stream[F, Byte]
def getUnderlying[A](url: Url[A], chunkSize: Int, direct: Boolean, options: BlobGetOption*): Stream[F, Byte]
override def list[A](url: Url[A], recursive: Boolean): Stream[F, Url[GcsBlob]]
Definition Classes
Store
def list[A](url: Url[A], recursive: Boolean, options: List[BlobListOption]): Stream[F, Url[GcsBlob]]
def listUnderlying[A](url: Url[A], expectTrailingSlashFiles: Boolean, recursive: Boolean, inputOptions: BlobListOption*): Stream[F, Url[GcsBlob]]
override def move[A, B](src: Url[A], dst: Url[B]): F[Unit]

Moves bytes from srcPath to dstPath. Stores should optimize to use native move functions to avoid data transfer.

Moves bytes from srcPath to dstPath. Stores should optimize to use native move functions to avoid data transfer.

Value Params
dst

path

src

path

Returns

F[Unit]

Definition Classes
Store
override def put[A](url: Url[A], overwrite: Boolean, size: Option[Long]): (F, Byte) => Unit
Definition Classes
Store
def put[A](url: Url[A], overwrite: Boolean, options: List[BlobWriteOption]): (F, Byte) => Unit
def put[A](path: Path[GcsBlob], options: List[BlobWriteOption]): (F, Byte) => Unit
override def putRotate[A](computeUrl: F[Url[A]], limit: Long): (F, Byte) => Unit
Definition Classes
Store
override def remove[A](url: Url[A], recursive: Boolean): F[Unit]
Definition Classes
Store
override def stat[A](url: Url[A]): Stream[F, Url[GcsBlob]]
Definition Classes
Store