c
akka.stream.alpakka.azure.storage.requests
PutBlockBlobStreaming
Companion object PutBlockBlobStreaming
final class PutBlockBlobStreaming extends AnyRef
Request builder for streaming block blob uploads using the Put Block / Put Block List API. Unlike PutBlockBlob, this does not require knowing the content length upfront.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PutBlockBlobStreaming
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PutBlockBlobStreaming(contentType: ContentType, blockSize: Int = 4 * 1024 * 1024, leaseId: Option[String] = None, sse: Option[ServerSideEncryption] = None, additionalHeaders: Seq[HttpHeader] = Seq.empty)
- contentType
content type of the blob
- blockSize
size of each block in bytes (default 4 MB, max 100 MB with API version 2024-11-04). Azure limits a block blob to 50,000 blocks, so the block size determines the maximum blob size.
- leaseId
optional lease ID
- sse
optional server-side encryption
- additionalHeaders
optional additional headers
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addHeader(httpHeader: HttpHeader): PutBlockBlobStreaming
- val additionalHeaders: Seq[HttpHeader]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val blockSize: Int
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val contentType: ContentType
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val leaseId: Option[String]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val sse: Option[ServerSideEncryption]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withBlockSize(blockSize: Int): PutBlockBlobStreaming
- def withLeaseId(leaseId: String): PutBlockBlobStreaming
- def withServerSideEncryption(sse: ServerSideEncryption): PutBlockBlobStreaming