Uses of Class
com.azure.storage.blob.options.BlobParallelUploadOptions
-
Packages that use BlobParallelUploadOptions Package Description com.azure.storage.blob Package containing the classes for BlobServiceClient.com.azure.storage.blob.options Package containing options model classes used by Azure Storage Blobs. -
-
Uses of BlobParallelUploadOptions in com.azure.storage.blob
Methods in com.azure.storage.blob with parameters of type BlobParallelUploadOptions Modifier and Type Method Description Mono<com.azure.core.http.rest.Response<BlockBlobItem>>
BlobAsyncClient. uploadWithResponse(BlobParallelUploadOptions options)
Creates a new block blob, or updates the content of an existing block blob.com.azure.core.http.rest.Response<BlockBlobItem>
BlobClient. uploadWithResponse(BlobParallelUploadOptions options, com.azure.core.util.Context context)
com.azure.core.http.rest.Response<BlockBlobItem>
BlobClient. uploadWithResponse(BlobParallelUploadOptions options, Duration timeout, com.azure.core.util.Context context)
Creates a new blob, or updates the content of an existing blob. -
Uses of BlobParallelUploadOptions in com.azure.storage.blob.options
Methods in com.azure.storage.blob.options that return BlobParallelUploadOptions Modifier and Type Method Description BlobParallelUploadOptions
BlobParallelUploadOptions. setComputeMd5(boolean computeMd5)
Sets the computeMd5 property.BlobParallelUploadOptions
BlobParallelUploadOptions. setHeaders(BlobHttpHeaders headers)
Sets theBlobHttpHeaders
.BlobParallelUploadOptions
BlobParallelUploadOptions. setImmutabilityPolicy(BlobImmutabilityPolicy immutabilityPolicy)
Note that this parameter is only applicable to a blob within a container that has immutable storage with versioning enabled.BlobParallelUploadOptions
BlobParallelUploadOptions. setLegalHold(Boolean legalHold)
Note that this parameter is only applicable to a blob within a container that has immutable storage with versioning enabled.BlobParallelUploadOptions
BlobParallelUploadOptions. setMetadata(Map<String,String> metadata)
Sets the metadata.BlobParallelUploadOptions
BlobParallelUploadOptions. setParallelTransferOptions(ParallelTransferOptions parallelTransferOptions)
Sets theParallelTransferOptions
.BlobParallelUploadOptions
BlobParallelUploadOptions. setRequestConditions(BlobRequestConditions requestConditions)
Sets theBlobRequestConditions
.BlobParallelUploadOptions
BlobParallelUploadOptions. setTags(Map<String,String> tags)
Set the tags.BlobParallelUploadOptions
BlobParallelUploadOptions. setTier(AccessTier tier)
Sets theAccessTier
.BlobParallelUploadOptions
BlobParallelUploadOptions. setTimeout(Duration timeout)
Deprecated.UseBlobClient.uploadWithResponse(BlobParallelUploadOptions, Duration, Context)
to specify timeout.
-