Package | Description |
---|---|
com.microsoft.azure.storage.blob |
Modifier and Type | Field and Description |
---|---|
static BlobAccessConditions |
BlobAccessConditions.NONE
An object representing no access conditions.
|
Modifier and Type | Method and Description |
---|---|
io.reactivex.Single<AppendBlobAppendBlockResponse> |
AppendBlobURL.appendBlock(io.reactivex.Flowable<ByteBuffer> data,
long length,
BlobAccessConditions accessConditions)
Commits a new block of data to the end of the existing append blob.
|
io.reactivex.Single<PageBlobClearPagesResponse> |
PageBlobURL.clearPages(PageRange pageRange,
BlobAccessConditions accessConditions)
Frees the specified pages from the page blob.
|
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<BlobCreateSnapshotResponse> |
BlobURL.createSnapshot(Metadata metadata,
BlobAccessConditions accessConditions)
Creates a read-only snapshot of a blob.
|
io.reactivex.Single<BlobDeleteResponse> |
BlobURL.delete(DeleteSnapshotsOptionType deleteBlobSnapshotOptions,
BlobAccessConditions accessConditions)
Deletes the specified blob or snapshot.
|
io.reactivex.Single<DownloadResponse> |
BlobURL.download(BlobRange range,
BlobAccessConditions accessConditions,
boolean rangeGetContentMD5)
Reads a range of bytes from a blob.
|
io.reactivex.Single<PageBlobGetPageRangesResponse> |
PageBlobURL.getPageRanges(BlobRange blobRange,
BlobAccessConditions accessConditions)
Returns the list of valid page ranges for a page blob or snapshot of a page blob.
|
io.reactivex.Single<PageBlobGetPageRangesDiffResponse> |
PageBlobURL.getPageRangesDiff(BlobRange blobRange,
String prevSnapshot,
BlobAccessConditions accessConditions)
Gets the collection of page ranges that differ between a specified snapshot and this page blob.
|
io.reactivex.Single<BlobGetPropertiesResponse> |
BlobURL.getProperties(BlobAccessConditions accessConditions)
Returns the blob's metadata and properties.
|
io.reactivex.Single<PageBlobResizeResponse> |
PageBlobURL.resize(long size,
BlobAccessConditions accessConditions)
Resizes the page blob to the specified size (which must be a multiple of 512).
|
io.reactivex.Single<BlobSetHTTPHeadersResponse> |
BlobURL.setHTTPHeaders(BlobHTTPHeaders headers,
BlobAccessConditions accessConditions)
Changes a blob's HTTP header properties.
|
io.reactivex.Single<BlobSetMetadataResponse> |
BlobURL.setMetadata(Metadata metadata,
BlobAccessConditions accessConditions)
Changes a blob's metadata.
|
io.reactivex.Single<BlobStartCopyFromURLResponse> |
BlobURL.startCopyFromURL(URL sourceURL,
Metadata metadata,
HTTPAccessConditions sourceHttpAccessConditions,
BlobAccessConditions destAccessConditions)
Copies the data at the source URL to a blob.
|
io.reactivex.Single<PageBlobUpdateSequenceNumberResponse> |
PageBlobURL.updateSequenceNumber(SequenceNumberActionType action,
Long sequenceNumber,
BlobAccessConditions accessConditions)
Sets the page blob's sequence number.
|
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.
|
io.reactivex.Single<PageBlobUploadPagesResponse> |
PageBlobURL.uploadPages(PageRange pageRange,
io.reactivex.Flowable<ByteBuffer> body,
BlobAccessConditions accessConditions)
Writes 1 or more pages to the page blob.
|
Constructor and Description |
---|
DownloadFromBlobOptions(Long chunkSize,
IProgressReceiver progressReceiver,
BlobAccessConditions accessConditions,
Integer parallelism,
RetryReaderOptions retryReaderOptions)
Returns an object that configures the parallel download behavior for methods on the
TransferManager . |
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.