Package | Description |
---|---|
com.microsoft.azure.storage.blob |
This package contains the core types for interacting with Azure Storage; start here.
|
Modifier and Type | Field and Description |
---|---|
static Metadata |
Metadata.NONE |
Modifier and Type | Method and Description |
---|---|
Metadata |
TransferManagerUploadToBlockBlobOptions.metadata()
|
Modifier and Type | Method and Description |
---|---|
io.reactivex.Single<BlockBlobCommitBlockListResponse> |
BlockBlobURL.commitBlockList(List<String> base64BlockIDs,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Writes a blob by specifying the list of block IDs that are to make up the blob.
|
io.reactivex.Single<AppendBlobCreateResponse> |
AppendBlobURL.create(BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Creates a 0-length append blob.
|
io.reactivex.Single<PageBlobCreateResponse> |
PageBlobURL.create(long size,
Long sequenceNumber,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Creates a page blob of the specified length.
|
io.reactivex.Single<ContainerCreateResponse> |
ContainerURL.create(Metadata metadata,
PublicAccessType accessType,
com.microsoft.rest.v2.Context context)
Creates a new container within a storage account.
|
io.reactivex.Single<BlobCreateSnapshotResponse> |
BlobURL.createSnapshot(Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Creates a read-only snapshot of a blob.
|
io.reactivex.Single<ContainerSetMetadataResponse> |
ContainerURL.setMetadata(Metadata metadata)
Sets the container's metadata.
|
io.reactivex.Single<BlobSetMetadataResponse> |
BlobURL.setMetadata(Metadata metadata)
Changes a blob's metadata.
|
io.reactivex.Single<BlobSetMetadataResponse> |
BlobURL.setMetadata(Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Changes a blob's metadata.
|
io.reactivex.Single<ContainerSetMetadataResponse> |
ContainerURL.setMetadata(Metadata metadata,
ContainerAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Sets the container's metadata.
|
io.reactivex.Single<BlobStartCopyFromURLResponse> |
BlobURL.startCopyFromURL(URL sourceURL,
Metadata metadata,
ModifiedAccessConditions sourceModifiedAccessConditions,
BlobAccessConditions destAccessConditions,
com.microsoft.rest.v2.Context context)
Copies the data at the source URL to a blob.
|
io.reactivex.Single<BlobCopyFromURLResponse> |
BlobURL.syncCopyFromURL(URL copySource,
Metadata metadata,
ModifiedAccessConditions sourceModifiedAccessConditions,
BlobAccessConditions destAccessConditions,
com.microsoft.rest.v2.Context context)
Copies the data at the source URL to a blob and waits for the copy to complete before returning a response.
|
io.reactivex.Single<BlockBlobUploadResponse> |
BlockBlobURL.upload(io.reactivex.Flowable<ByteBuffer> data,
long length,
BlobHTTPHeaders headers,
Metadata metadata,
BlobAccessConditions accessConditions,
com.microsoft.rest.v2.Context context)
Creates a new block blob, or updates the content of an existing block blob.
|
Constructor and Description |
---|
TransferManagerUploadToBlockBlobOptions(IProgressReceiver progressReceiver,
BlobHTTPHeaders httpHeaders,
Metadata metadata,
BlobAccessConditions accessConditions,
Integer parallelism)
Creates a new object that configures the parallel upload behavior.
|
This documentation was released into the public domain.