| Package | Description |
|---|---|
| com.microsoft.azure.storage.blob |
This package contains the storage service blob classes.
|
| Modifier and Type | Method and Description |
|---|---|
StandardBlobTier |
BlobProperties.getStandardBlobTier()
If using a standard account and the blob is a block blob, gets the tier of the blob.
|
static StandardBlobTier |
StandardBlobTier.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardBlobTier[] |
StandardBlobTier.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BlobSetTierBatchOperation.addSubOperation(CloudBlockBlob blockBlob,
StandardBlobTier tier) |
void |
BlobSetTierBatchOperation.addSubOperation(CloudBlockBlob blockBlob,
StandardBlobTier tier,
RehydratePriority rehydratePriority,
BlobRequestOptions options) |
void |
CloudBlockBlob.commitBlockList(Iterable<BlockEntry> blockList,
StandardBlobTier standardBlobTier,
AccessCondition accessCondition,
BlobRequestOptions options,
OperationContext opContext)
Commits a block list to the storage service using the specified lease ID, request options, and operation context.
|
String |
CloudBlockBlob.startCopy(CloudBlockBlob sourceBlob,
String contentMd5,
boolean syncCopy,
StandardBlobTier standardBlobTier,
RehydratePriority rehydratePriority,
AccessCondition sourceAccessCondition,
AccessCondition destinationAccessCondition,
BlobRequestOptions options,
OperationContext opContext)
Requests the service to start copying a block blob's contents, properties, and metadata to a new block blob,
using the blob tier, rehydrate priority, specified access conditions, lease ID, request options, operation context.
|
void |
CloudBlockBlob.upload(InputStream sourceStream,
long length,
StandardBlobTier standardBlobTier,
AccessCondition accessCondition,
BlobRequestOptions options,
OperationContext opContext)
Uploads the source stream data to the blob, using the specified lease ID, request options, and operation context.
|
void |
CloudBlockBlob.uploadFromByteArray(byte[] buffer,
int offset,
int length,
StandardBlobTier standardBlobTier,
AccessCondition accessCondition,
BlobRequestOptions options,
OperationContext opContext)
Uploads a blob from data in a byte array.
|
void |
CloudBlockBlob.uploadStandardBlobTier(StandardBlobTier standardBlobTier)
Sets the blob tier on a block blob on a standard storage account.
|
void |
CloudBlockBlob.uploadStandardBlobTier(StandardBlobTier standardBlobTier,
BlobRequestOptions options,
OperationContext opContext)
Sets the tier on a block blob on a standard storage account.
|
void |
CloudBlockBlob.uploadStandardBlobTier(StandardBlobTier standardBlobTier,
RehydratePriority rehydratePriority,
BlobRequestOptions options,
OperationContext opContext)
Sets the tier on a block blob on a standard storage account.
|
void |
CloudBlockBlob.uploadText(String content,
String charsetName,
StandardBlobTier standardBlobTier,
AccessCondition accessCondition,
BlobRequestOptions options,
OperationContext opContext)
Uploads a blob from a string using the specified encoding.
|
Copyright © 2021. All Rights Reserved.