Uses of Class
com.azure.storage.blob.models.PageRange
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 PageRange in com.azure.storage.blob.models
Modifier and TypeMethodDescriptionPageRange.setEnd
(long end) Set the end property: The End property.PageRange.setStart
(long start) Set the start property: The Start property.Modifier and TypeMethodDescriptionPageList.getPageRange()
Get the pageRange property: The PageRange property.Modifier and TypeMethodDescriptionPageList.setPageRange
(List<PageRange> pageRange) Set the pageRange property: The PageRange property. -
Uses of PageRange in com.azure.storage.blob.options
ModifierConstructorDescriptionPageBlobUploadPagesFromUrlOptions
(PageRange range, String sourceUrl) -
Uses of PageRange in com.azure.storage.blob.specialized
Modifier and TypeMethodDescriptionPageBlobAsyncClient.clearPages
(PageRange pageRange) Frees the specified pages from the page blob.PageBlobClient.clearPages
(PageRange pageRange) Frees the specified pages from the page blob.Mono<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.PageBlobClient.getBlobOutputStream
(PageRange pageRange) Creates and opens an output stream to write data to the page blob.PageBlobClient.getBlobOutputStream
(PageRange pageRange, BlobRequestConditions requestConditions) Creates and opens an output stream to write data to the page blob.PageBlobAsyncClient.uploadPages
(PageRange pageRange, Flux<ByteBuffer> body) Writes one or more pages to the page blob.PageBlobClient.uploadPages
(PageRange pageRange, InputStream body) Writes one or more pages to the page blob.PageBlobAsyncClient.uploadPagesFromUrl
(PageRange range, String sourceUrl, Long sourceOffset) Writes one or more pages from the source page blob to this page blob.PageBlobClient.uploadPagesFromUrl
(PageRange range, String sourceUrl, Long sourceOffset) Writes one or more pages from the source page blob to this 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.