Package | Description |
---|---|
com.azure.storage.blob.models |
Package containing classes for AzureBlobStorage.
|
com.azure.storage.blob.specialized |
Package containing specialized clients for Azure Storage Blobs.
|
Modifier and Type | Method and Description |
---|---|
PageRange |
PageRange.setEnd(long end)
Set the end property: The end property.
|
PageRange |
PageRange.setStart(long start)
Set the start property: The start property.
|
Modifier and Type | Method and Description |
---|---|
Mono<PageBlobItem> |
PageBlobAsyncClient.clearPages(PageRange pageRange)
Frees the specified pages from the page blob.
|
PageBlobItem |
PageBlobClient.clearPages(PageRange pageRange)
Frees the specified pages from the page blob.
|
Mono<Response<PageBlobItem>> |
PageBlobAsyncClient.clearPagesWithResponse(PageRange pageRange,
PageBlobRequestConditions pageBlobRequestConditions)
Frees the specified pages from the page blob.
|
Response<PageBlobItem> |
PageBlobClient.clearPagesWithResponse(PageRange pageRange,
PageBlobRequestConditions pageBlobRequestConditions,
Duration timeout,
Context context)
Frees the specified pages from the page blob.
|
BlobOutputStream |
PageBlobClient.getBlobOutputStream(PageRange pageRange)
Creates and opens an output stream to write data to the page blob.
|
BlobOutputStream |
PageBlobClient.getBlobOutputStream(PageRange pageRange,
BlobRequestConditions accessConditions)
Creates and opens an output stream to write data to the page blob.
|
Mono<PageBlobItem> |
PageBlobAsyncClient.uploadPages(PageRange pageRange,
Flux<ByteBuffer> body)
Writes one or more pages to the page blob.
|
PageBlobItem |
PageBlobClient.uploadPages(PageRange pageRange,
InputStream body)
Writes one or more pages to the page blob.
|
Mono<PageBlobItem> |
PageBlobAsyncClient.uploadPagesFromUrl(PageRange range,
String sourceUrl,
Long sourceOffset)
Writes one or more pages from the source page blob to this page blob.
|
PageBlobItem |
PageBlobClient.uploadPagesFromUrl(PageRange range,
String sourceUrl,
Long sourceOffset)
Writes one or more pages from the source page blob to this page blob.
|
Mono<Response<PageBlobItem>> |
PageBlobAsyncClient.uploadPagesFromUrlWithResponse(PageRange range,
String sourceUrl,
Long sourceOffset,
byte[] sourceContentMd5,
PageBlobRequestConditions destAccessConditions,
BlobRequestConditions sourceRequestConditions)
Writes one or more pages from the source page blob to this page blob.
|
Response<PageBlobItem> |
PageBlobClient.uploadPagesFromUrlWithResponse(PageRange range,
String sourceUrl,
Long sourceOffset,
byte[] sourceContentMd5,
PageBlobRequestConditions destAccessConditions,
BlobRequestConditions sourceRequestConditions,
Duration timeout,
Context context)
Writes one or more pages from the source page blob to this page blob.
|
Mono<Response<PageBlobItem>> |
PageBlobAsyncClient.uploadPagesWithResponse(PageRange pageRange,
Flux<ByteBuffer> body,
byte[] contentMd5,
PageBlobRequestConditions pageBlobRequestConditions)
Writes one or more pages to the page blob.
|
Response<PageBlobItem> |
PageBlobClient.uploadPagesWithResponse(PageRange pageRange,
InputStream body,
byte[] contentMd5,
PageBlobRequestConditions pageBlobRequestConditions,
Duration timeout,
Context context)
Writes one or more pages to the page blob.
|
Copyright © 2019 Microsoft Corporation. All rights reserved.