Uses of Class
com.azure.storage.blob.models.AppendBlobRequestConditions
-
Packages that use AppendBlobRequestConditions Package Description com.azure.storage.blob.models Package containing classes for AzureBlobStorage.com.azure.storage.blob.options Package containing options model classes used by Azure Storage Blobs.com.azure.storage.blob.specialized Package containing specialized clients for Azure Storage Blobs. -
-
Uses of AppendBlobRequestConditions in com.azure.storage.blob.models
Methods in com.azure.storage.blob.models that return AppendBlobRequestConditions Modifier and Type Method Description AppendBlobRequestConditionsAppendBlobRequestConditions. setAppendPosition(Long appendPosition)Sets the byte offset that the append position of the append blob must match.AppendBlobRequestConditionsAppendBlobRequestConditions. setIfMatch(String ifMatch)Optionally limit requests to resources that match the passed ETag.AppendBlobRequestConditionsAppendBlobRequestConditions. setIfModifiedSince(OffsetDateTime ifModifiedSince)Optionally limit requests to resources that have only been modified since the passeddatetime.AppendBlobRequestConditionsAppendBlobRequestConditions. setIfNoneMatch(String ifNoneMatch)Optionally limit requests to resources that do not match the passed ETag.AppendBlobRequestConditionsAppendBlobRequestConditions. setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)Optionally limit requests to resources that have remained unmodified since the passeddatetime.AppendBlobRequestConditionsAppendBlobRequestConditions. setLeaseId(String leaseId)Optionally limits requests to blobs and containers that match the lease ID.AppendBlobRequestConditionsAppendBlobRequestConditions. setMaxSize(Long maxSize)Sets the max length in bytes allowed for the append blob.AppendBlobRequestConditionsAppendBlobRequestConditions. setTagsConditions(String tagsConditions)Optionally applies the SQL statement to the tags of the blob. -
Uses of AppendBlobRequestConditions in com.azure.storage.blob.options
Methods in com.azure.storage.blob.options that return AppendBlobRequestConditions Modifier and Type Method Description AppendBlobRequestConditionsAppendBlobAppendBlockFromUrlOptions. getDestinationRequestConditions()AppendBlobRequestConditionsAppendBlobSealOptions. getRequestConditions()Methods in com.azure.storage.blob.options with parameters of type AppendBlobRequestConditions Modifier and Type Method Description AppendBlobAppendBlockFromUrlOptionsAppendBlobAppendBlockFromUrlOptions. setDestinationRequestConditions(AppendBlobRequestConditions destinationRequestConditions)AppendBlobSealOptionsAppendBlobSealOptions. setRequestConditions(AppendBlobRequestConditions requestConditions) -
Uses of AppendBlobRequestConditions in com.azure.storage.blob.specialized
Methods in com.azure.storage.blob.specialized with parameters of type AppendBlobRequestConditions Modifier and Type Method Description Mono<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.BlobOutputStreamAppendBlobClient. getBlobOutputStream(AppendBlobRequestConditions requestConditions)Creates and opens an output stream to write data to the append blob.
-