Package | Description |
---|---|
com.microsoft.azure.storage.blob |
Modifier and Type | Field and Description |
---|---|
static LeaseAccessConditions |
LeaseAccessConditions.NONE
An object representing no lease access conditions.
|
Modifier and Type | Method and Description |
---|---|
LeaseAccessConditions |
ContainerAccessConditions.getLeaseAccessConditions() |
Modifier and Type | Method and Description |
---|---|
io.reactivex.Single<BlobAbortCopyFromURLResponse> |
BlobURL.abortCopyFromURL(String copyId,
LeaseAccessConditions leaseAccessConditions)
Stops a pending copy that was previously started and leaves a destination blob with 0 length and metadata.
|
io.reactivex.Single<ContainerGetAccessPolicyResponse> |
ContainerURL.getAccessPolicy(LeaseAccessConditions leaseAccessConditions)
Returns the container's permissions.
|
io.reactivex.Single<BlockBlobGetBlockListResponse> |
BlockBlobURL.getBlockList(BlockListType listType,
LeaseAccessConditions leaseAccessConditions)
Returns the list of blocks that have been uploaded as part of a block blob using the specified block list filter.
|
io.reactivex.Single<ContainerGetPropertiesResponse> |
ContainerURL.getProperties(LeaseAccessConditions leaseAccessConditions)
Returns the container's metadata and system properties.
|
io.reactivex.Single<BlockBlobStageBlockResponse> |
BlockBlobURL.stageBlock(String base64BlockID,
io.reactivex.Flowable<ByteBuffer> data,
long length,
LeaseAccessConditions leaseAccessConditions)
Uploads the specified block to the block blob's "staging area" to be later committed by a call to
commitBlockList.
|
io.reactivex.Single<BlockBlobStageBlockFromURLResponse> |
BlockBlobURL.stageBlockFromURL(String base64BlockID,
URL sourceURL,
BlobRange sourceRange,
byte[] sourceContentMD5,
LeaseAccessConditions leaseAccessConditions)
Creates a new block to be committed as part of a blob where the contents are read from a URL.
|
Constructor and Description |
---|
BlobAccessConditions(HTTPAccessConditions httpAccessConditions,
LeaseAccessConditions leaseAccessConditions,
AppendBlobAccessConditions appendBlobAccessConditions,
PageBlobAccessConditions pageBlobAccessConditions)
Access conditions which are specific to blobs.
|
ContainerAccessConditions(HTTPAccessConditions httpAccessConditions,
LeaseAccessConditions leaseID)
Creates a
ContainerAccessConditions object. |
This documentation was released into the public domain.