Uses of Class
com.azure.storage.blob.models.PageBlobRequestConditions
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 PageBlobRequestConditions in com.azure.storage.blob.models
Modifier and TypeMethodDescriptionPageBlobRequestConditions.setIfMatch
(String ifMatch) Optionally limit requests to resources that match the passed ETag.PageBlobRequestConditions.setIfModifiedSince
(OffsetDateTime ifModifiedSince) Optionally limit requests to resources that have only been modified since the passeddatetime
.PageBlobRequestConditions.setIfNoneMatch
(String ifNoneMatch) Optionally limit requests to resources that do not match the passed ETag.PageBlobRequestConditions.setIfSequenceNumberEqualTo
(Long ifSequenceNumberEqualTo) Sets the value that the page blob's sequence number must be less equal to.PageBlobRequestConditions.setIfSequenceNumberLessThan
(Long ifSequenceNumberLessThan) Sets the value that the page blob's sequence number must be less than.PageBlobRequestConditions.setIfSequenceNumberLessThanOrEqualTo
(Long ifSequenceNumberLessThanOrEqualTo) Sets the value that the page blob's sequence number must be less than or equal to.PageBlobRequestConditions.setIfUnmodifiedSince
(OffsetDateTime ifUnmodifiedSince) Optionally limit requests to resources that have remained unmodified since the passeddatetime
.PageBlobRequestConditions.setLeaseId
(String leaseId) Optionally limits requests to blobs and containers that match the lease ID.PageBlobRequestConditions.setTagsConditions
(String tagsConditions) Optionally applies the SQL statement to the tags of the blob. -
Uses of PageBlobRequestConditions in com.azure.storage.blob.options
Modifier and TypeMethodDescriptionPageBlobUploadPagesFromUrlOptions.getDestinationRequestConditions()
Modifier and TypeMethodDescriptionPageBlobUploadPagesFromUrlOptions.setDestinationRequestConditions
(PageBlobRequestConditions destinationRequestConditions) -
Uses of PageBlobRequestConditions in com.azure.storage.blob.specialized
Modifier and TypeMethodDescriptionMono<com.azure.core.http.rest.Response<PageBlobItem>>
PageBlobAsyncClient.clearPagesWithResponse
(PageRange pageRange, PageBlobRequestConditions pageBlobRequestConditions) Frees the specified pages from the page blob.com.azure.core.http.rest.Response<PageBlobItem>
PageBlobClient.clearPagesWithResponse
(PageRange pageRange, PageBlobRequestConditions pageBlobRequestConditions, Duration timeout, com.azure.core.util.Context context) Frees the specified pages from the page blob.Mono<com.azure.core.http.rest.Response<PageBlobItem>>
PageBlobAsyncClient.uploadPagesFromUrlWithResponse
(PageRange range, String sourceUrl, Long sourceOffset, byte[] sourceContentMd5, PageBlobRequestConditions destRequestConditions, BlobRequestConditions sourceRequestConditions) Writes one or more pages from the source page blob to this page blob.com.azure.core.http.rest.Response<PageBlobItem>
PageBlobClient.uploadPagesFromUrlWithResponse
(PageRange range, String sourceUrl, Long sourceOffset, byte[] sourceContentMd5, PageBlobRequestConditions destRequestConditions, BlobRequestConditions sourceRequestConditions, Duration timeout, com.azure.core.util.Context context) Writes one or more pages from the source page blob to this page blob.Mono<com.azure.core.http.rest.Response<PageBlobItem>>
PageBlobAsyncClient.uploadPagesWithResponse
(PageRange pageRange, Flux<ByteBuffer> body, byte[] contentMd5, PageBlobRequestConditions pageBlobRequestConditions) Writes one or more pages to the page blob.com.azure.core.http.rest.Response<PageBlobItem>
PageBlobClient.uploadPagesWithResponse
(PageRange pageRange, InputStream body, byte[] contentMd5, PageBlobRequestConditions pageBlobRequestConditions, Duration timeout, com.azure.core.util.Context context) Writes one or more pages to the page blob.