Package | Description |
---|---|
com.microsoft.azure.storage.blob |
Modifier and Type | Field and Description |
---|---|
static BlobHTTPHeaders |
BlobHTTPHeaders.NONE
An object representing no blob properties.
|
Modifier and Type | Method and Description |
---|---|
io.reactivex.Single<BlockBlobCommitBlockListResponse> |
BlockBlobURL.commitBlockList(List<String> base64BlockIDs,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions)
Writes a blob by specifying the list of block IDs that are to make up the blob.
|
io.reactivex.Single<AppendBlobCreateResponse> |
AppendBlobURL.create(BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions)
Creates a 0-length append blob.
|
io.reactivex.Single<PageBlobCreateResponse> |
PageBlobURL.create(long size,
Long sequenceNumber,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions)
Creates a page blob of the specified length.
|
io.reactivex.Single<BlobSetHTTPHeadersResponse> |
BlobURL.setHTTPHeaders(BlobHTTPHeaders headers,
BlobAccessConditions accessConditions)
Changes a blob's HTTP header properties.
|
io.reactivex.Single<BlockBlobUploadResponse> |
BlockBlobURL.upload(io.reactivex.Flowable<ByteBuffer> data,
long length,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions)
Creates a new block blob, or updates the content of an existing block blob.
|
Constructor and Description |
---|
UploadToBlockBlobOptions(IProgressReceiver progressReceiver,
BlobHTTPHeaders httpHeaders,
Metadata metadata,
BlobAccessConditions accessConditions,
Integer parallelism)
Creates a new object that configures the parallel upload behavior.
|
This documentation was released into the public domain.