Package | Description |
---|---|
com.microsoft.azure.storage.blob |
This package contains the classes for StorageClient.
|
Modifier and Type | Method and Description |
---|---|
PageBlobAccessConditions |
PageBlobAccessConditions.withLeaseAccessConditions(LeaseAccessConditions leaseAccessConditions)
By setting lease access conditions, requests will fail if the provided lease does not match the active lease on
the blob.
|
PageBlobAccessConditions |
PageBlobAccessConditions.withModifiedAccessConditions(ModifiedAccessConditions modifiedAccessConditions)
Standard HTTP Access conditions related to the modification of data.
|
PageBlobAccessConditions |
PageBlobAccessConditions.withSequenceNumberAccessConditions(SequenceNumberAccessConditions sequenceNumberAccessConditions)
Access conditions that will fail the request if the sequence number does not meet the provided condition.
|
Modifier and Type | Method and Description |
---|---|
io.reactivex.Single<PageBlobClearPagesResponse> |
PageBlobURL.clearPages(PageRange pageRange,
PageBlobAccessConditions pageBlobAccessConditions,
com.microsoft.rest.v2.Context context)
Frees the specified pages from the page blob.
|
io.reactivex.Single<PageBlobUploadPagesResponse> |
PageBlobURL.uploadPages(PageRange pageRange,
io.reactivex.Flowable<ByteBuffer> body,
PageBlobAccessConditions pageBlobAccessConditions,
com.microsoft.rest.v2.Context context)
Writes 1 or more pages to the page blob.
|
io.reactivex.Single<PageBlobUploadPagesFromURLResponse> |
PageBlobURL.uploadPagesFromURL(PageRange range,
URL sourceURL,
Long sourceOffset,
byte[] sourceContentMD5,
PageBlobAccessConditions destAccessConditions,
SourceModifiedAccessConditions sourceAccessConditions,
com.microsoft.rest.v2.Context context)
Writes 1 or more pages from the source page blob to this page blob.
|
This documentation was released into the public domain.