akka / alpakka

Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.

Home Page:https://doc.akka.io/docs/alpakka/current/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Utility to Update ACL for Google Store Objects

sachinteotia30 opened this issue · comments

I am using the below code to upload an object in my Google Object store bucket

val gcpSink = GCStorage.resumableUpload(bucketName, objectName, ContentTypes.`text/plain(UTF-8)`, 256 * 1024 * 4)
val result: Future[StorageObject] = fileStream.runWith(gcpSink)
Once this object is uploaded, we need to manually update its ACL to make it publically available.

The request is to make the utility for updating the ACL of an object available.