Uses of Class
com.azure.storage.blob.models.PageRange
Packages that use 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
Methods in com.azure.storage.blob.models that return PageRangeModifier and TypeMethodDescriptionstatic PageRange
PageRange.fromXml
(com.azure.xml.XmlReader xmlReader) Reads an instance of PageRange from the XmlReader.static PageRange
Reads an instance of PageRange from the XmlReader.PageRange.setEnd
(long end) Set the end property: The End property.PageRange.setStart
(long start) Set the start property: The Start property.Methods in com.azure.storage.blob.models that return types with arguments of type PageRangeModifier and TypeMethodDescriptionPageList.getPageRange()
Get the pageRange property: The PageRange property.Method parameters in com.azure.storage.blob.models with type arguments of type PageRangeModifier and TypeMethodDescriptionPageList.setPageRange
(List<PageRange> pageRange) Set the pageRange property: The PageRange property. -
Uses of PageRange in com.azure.storage.blob.options
Methods in com.azure.storage.blob.options that return PageRangeModifier and TypeMethodDescriptionPageBlobUploadPagesFromUrlOptions.getRange()
Gets the destination page range.Constructors in com.azure.storage.blob.options with parameters of type PageRangeModifierConstructorDescriptionPageBlobUploadPagesFromUrlOptions
(PageRange range, String sourceUrl) Creates a new instance ofPageBlobUploadPagesFromUrlOptions
. -
Uses of PageRange in com.azure.storage.blob.specialized
Methods in com.azure.storage.blob.specialized with parameters of type PageRangeModifier 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.