Package | Description |
---|---|
com.azure.storage.blob |
Package containing the classes for BlobServiceClient.
|
com.azure.storage.blob.specialized |
Package containing specialized clients for Azure Storage Blobs.
|
Modifier and Type | Method and Description |
---|---|
Mono<BlockBlobItem> |
BlobAsyncClient.upload(Flux<ByteBuffer> data,
ParallelTransferOptions parallelTransferOptions)
Creates a new block blob.
|
Mono<BlockBlobItem> |
BlobAsyncClient.upload(Flux<ByteBuffer> data,
ParallelTransferOptions parallelTransferOptions,
boolean overwrite)
Creates a new block blob, or updates the content of an existing block blob.
|
Mono<Void> |
BlobAsyncClient.uploadFromFile(String filePath,
ParallelTransferOptions parallelTransferOptions,
BlobHttpHeaders headers,
Map<String,String> metadata,
AccessTier tier,
BlobRequestConditions accessConditions)
Creates a new block blob, or updates the content of an existing block blob, with the content of the specified
file.
|
void |
BlobClient.uploadFromFile(String filePath,
ParallelTransferOptions parallelTransferOptions,
BlobHttpHeaders headers,
Map<String,String> metadata,
AccessTier tier,
BlobRequestConditions accessConditions,
Duration timeout)
Creates a new block blob, or updates the content of an existing block blob.
|
Mono<Response<BlockBlobItem>> |
BlobAsyncClient.uploadWithResponse(Flux<ByteBuffer> data,
ParallelTransferOptions parallelTransferOptions,
BlobHttpHeaders headers,
Map<String,String> metadata,
AccessTier tier,
BlobRequestConditions accessConditions)
Creates a new block blob, or updates the content of an existing block blob.
|
Modifier and Type | Method and Description |
---|---|
Mono<Response<BlobProperties>> |
BlobAsyncClientBase.downloadToFileWithResponse(String filePath,
BlobRange range,
ParallelTransferOptions parallelTransferOptions,
DownloadRetryOptions options,
BlobRequestConditions accessConditions,
boolean rangeGetContentMD5)
Downloads the entire blob into a file specified by the path.
|
Response<BlobProperties> |
BlobClientBase.downloadToFileWithResponse(String filePath,
BlobRange range,
ParallelTransferOptions parallelTransferOptions,
DownloadRetryOptions options,
BlobRequestConditions accessConditions,
boolean rangeGetContentMD5,
Duration timeout,
Context context)
Downloads the entire blob into a file specified by the path.
|
Copyright © 2019 Microsoft Corporation. All rights reserved.