Package | Description |
---|---|
com.azure.storage.blob.models |
Package containing classes for AzureBlobStorage.
|
com.azure.storage.blob.specialized |
Package containing specialized clients for Azure Storage Blobs.
|
Modifier and Type | Method and Description |
---|---|
AppendBlobRequestConditions |
AppendBlobRequestConditions.setAppendPosition(Long appendPosition)
Sets the byte offset that the append position of the append blob must match.
|
AppendBlobRequestConditions |
AppendBlobRequestConditions.setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.
|
AppendBlobRequestConditions |
AppendBlobRequestConditions.setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed
datetime . |
AppendBlobRequestConditions |
AppendBlobRequestConditions.setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.
|
AppendBlobRequestConditions |
AppendBlobRequestConditions.setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed
datetime . |
AppendBlobRequestConditions |
AppendBlobRequestConditions.setLeaseId(String leaseId)
Optionally limits requests to blobs and containers that match the lease ID.
|
AppendBlobRequestConditions |
AppendBlobRequestConditions.setMaxSize(Long maxSize)
Sets the max length in bytes allowed for the append blob.
|
Modifier and Type | Method and Description |
---|---|
Mono<Response<AppendBlobItem>> |
AppendBlobAsyncClient.appendBlockFromUrlWithResponse(String sourceUrl,
BlobRange sourceRange,
byte[] sourceContentMD5,
AppendBlobRequestConditions destAccessConditions,
BlobRequestConditions sourceAccessConditions)
Commits a new block of data from another blob to the end of this append blob.
|
Response<AppendBlobItem> |
AppendBlobClient.appendBlockFromUrlWithResponse(String sourceUrl,
BlobRange sourceRange,
byte[] sourceContentMd5,
AppendBlobRequestConditions destAccessConditions,
BlobRequestConditions sourceAccessConditions,
Duration timeout,
Context context)
Commits a new block of data from another blob to the end of this append blob.
|
Mono<Response<AppendBlobItem>> |
AppendBlobAsyncClient.appendBlockWithResponse(Flux<ByteBuffer> data,
long length,
byte[] contentMd5,
AppendBlobRequestConditions appendBlobRequestConditions)
Commits a new block of data to the end of the existing append blob.
|
Response<AppendBlobItem> |
AppendBlobClient.appendBlockWithResponse(InputStream data,
long length,
byte[] contentMd5,
AppendBlobRequestConditions appendBlobRequestConditions,
Duration timeout,
Context context)
Commits a new block of data to the end of the existing append blob.
|
BlobOutputStream |
AppendBlobClient.getBlobOutputStream(AppendBlobRequestConditions accessConditions)
Creates and opens an output stream to write data to the append blob.
|
Copyright © 2019 Microsoft Corporation. All rights reserved.