Package | Description |
---|---|
com.microsoft.azure.storage.blob |
This package contains the classes for StorageClient.
|
Modifier and Type | Method and Description |
---|---|
BlobAccessConditions |
TransferManagerDownloadFromBlobOptions.accessConditions()
|
BlobAccessConditions |
TransferManagerUploadToBlockBlobOptions.accessConditions()
|
BlobAccessConditions |
BlobAccessConditions.withLeaseAccessConditions(LeaseAccessConditions leaseAccessConditions)
By setting lease access conditions, requests will fail if the provided lease does not match the active lease on
the blob.
|
BlobAccessConditions |
BlobAccessConditions.withModifiedAccessConditions(ModifiedAccessConditions modifiedAccessConditions)
Standard HTTP Access conditions related to the modification of data.
|
Modifier and Type | Method and Description |
---|---|
io.reactivex.Single<BlockBlobCommitBlockListResponse> |
BlockBlobURL.commitBlockList(List<String> base64BlockIDs,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
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,
com.microsoft.rest.v2.Context context)
Creates a 0-length append blob.
|
io.reactivex.Single<PageBlobCreateResponse> |
PageBlobURL.create(long size,
Long sequenceNumber,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Creates a page blob of the specified length.
|
io.reactivex.Single<BlobCreateSnapshotResponse> |
BlobURL.createSnapshot(Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Creates a read-only snapshot of a blob.
|
io.reactivex.Single<BlobDeleteResponse> |
BlobURL.delete(DeleteSnapshotsOptionType deleteBlobSnapshotOptions,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Deletes the specified blob or snapshot.
|
io.reactivex.Single<DownloadResponse> |
BlobURL.download(BlobRange range,
BlobAccessConditions accessConditions,
boolean rangeGetContentMD5,
com.microsoft.rest.v2.Context context)
Reads a range of bytes from a blob.
|
io.reactivex.Single<PageBlobGetPageRangesResponse> |
PageBlobURL.getPageRanges(BlobRange blobRange,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
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,
com.microsoft.rest.v2.Context context)
Gets the collection of page ranges that differ between a specified snapshot and this page blob.
|
io.reactivex.Single<BlobGetPropertiesResponse> |
BlobURL.getProperties(BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Returns the blob's metadata and properties.
|
io.reactivex.Single<PageBlobResizeResponse> |
PageBlobURL.resize(long size,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
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,
com.microsoft.rest.v2.Context context)
Changes a blob's HTTP header properties.
|
io.reactivex.Single<BlobSetMetadataResponse> |
BlobURL.setMetadata(Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Changes a blob's metadata.
|
io.reactivex.Single<BlobStartCopyFromURLResponse> |
BlobURL.startCopyFromURL(URL sourceURL,
Metadata metadata,
ModifiedAccessConditions sourceModifiedAccessConditions,
BlobAccessConditions destAccessConditions,
com.microsoft.rest.v2.Context context)
Copies the data at the source URL to a blob.
|
io.reactivex.Single<BlobCopyFromURLResponse> |
BlobURL.syncCopyFromURL(URL copySource,
Metadata metadata,
ModifiedAccessConditions sourceModifiedAccessConditions,
BlobAccessConditions destAccessConditions,
com.microsoft.rest.v2.Context context)
Copies the data at the source URL to a blob and waits for the copy to complete before returning a response.
|
io.reactivex.Single<PageBlobUpdateSequenceNumberResponse> |
PageBlobURL.updateSequenceNumber(SequenceNumberActionType action,
Long sequenceNumber,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
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,
com.microsoft.rest.v2.Context context)
Creates a new block blob, or updates the content of an existing block blob.
|
Constructor and Description |
---|
TransferManagerDownloadFromBlobOptions(Long chunkSize,
IProgressReceiver progressReceiver,
BlobAccessConditions accessConditions,
ReliableDownloadOptions reliableDownloadOptions,
Integer parallelism)
Returns an object that configures the parallel download behavior for methods on the
TransferManager . |
TransferManagerUploadToBlockBlobOptions(IProgressReceiver progressReceiver,
BlobHTTPHeaders httpHeaders,
Metadata metadata,
BlobAccessConditions accessConditions,
Integer parallelism)
Creates a new object that configures the parallel upload behavior.
|
Copyright © 2019 Microsoft Corporation. All rights reserved.