Uses of Class
com.azure.storage.blob.models.AppendBlobRequestConditions
Package
Description
Package containing the data models for AzureBlobStorage.
Package containing options model classes used by Azure Storage Blobs.
Package containing specialized clients for Azure Storage Blobs.
-
Uses of AppendBlobRequestConditions in com.azure.storage.blob.models
Modifier and TypeMethodDescriptionAppendBlobRequestConditions.setAppendPosition
(Long appendPosition) Sets the byte offset that the append position of the append blob must match.AppendBlobRequestConditions.setIfMatch
(String ifMatch) Optionally limit requests to resources that match the passed ETag.AppendBlobRequestConditions.setIfModifiedSince
(OffsetDateTime ifModifiedSince) Optionally limit requests to resources that have only been modified since the passeddatetime
.AppendBlobRequestConditions.setIfNoneMatch
(String ifNoneMatch) Optionally limit requests to resources that do not match the passed ETag.AppendBlobRequestConditions.setIfUnmodifiedSince
(OffsetDateTime ifUnmodifiedSince) Optionally limit requests to resources that have remained unmodified since the passeddatetime
.AppendBlobRequestConditions.setLeaseId
(String leaseId) Optionally limits requests to blobs and containers that match the lease ID.AppendBlobRequestConditions.setMaxSize
(Long maxSize) Sets the max length in bytes allowed for the append blob.AppendBlobRequestConditions.setTagsConditions
(String tagsConditions) Optionally applies the SQL statement to the tags of the blob. -
Uses of AppendBlobRequestConditions in com.azure.storage.blob.options
Modifier and TypeMethodDescriptionAppendBlobAppendBlockFromUrlOptions.getDestinationRequestConditions()
AppendBlobSealOptions.getRequestConditions()
Modifier and TypeMethodDescriptionAppendBlobAppendBlockFromUrlOptions.setDestinationRequestConditions
(AppendBlobRequestConditions destinationRequestConditions) AppendBlobSealOptions.setRequestConditions
(AppendBlobRequestConditions requestConditions) -
Uses of AppendBlobRequestConditions in com.azure.storage.blob.specialized
Modifier and TypeMethodDescriptionMono<com.azure.core.http.rest.Response<AppendBlobItem>>
AppendBlobAsyncClient.appendBlockFromUrlWithResponse
(String sourceUrl, BlobRange sourceRange, byte[] sourceContentMD5, AppendBlobRequestConditions destRequestConditions, BlobRequestConditions sourceRequestConditions) Commits a new block of data from another blob to the end of this append blob.com.azure.core.http.rest.Response<AppendBlobItem>
AppendBlobClient.appendBlockFromUrlWithResponse
(String sourceUrl, BlobRange sourceRange, byte[] sourceContentMd5, AppendBlobRequestConditions destRequestConditions, BlobRequestConditions sourceRequestConditions, Duration timeout, com.azure.core.util.Context context) Commits a new block of data from another blob to the end of this append blob.Mono<com.azure.core.http.rest.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.com.azure.core.http.rest.Response<AppendBlobItem>
AppendBlobClient.appendBlockWithResponse
(InputStream data, long length, byte[] contentMd5, AppendBlobRequestConditions appendBlobRequestConditions, Duration timeout, com.azure.core.util.Context context) Commits a new block of data to the end of the existing append blob.AppendBlobClient.getBlobOutputStream
(AppendBlobRequestConditions requestConditions) Creates and opens an output stream to write data to the append blob.