BlobSetAccessTierOptions Class

  • java.lang.Object
    • com.azure.storage.blob.options.BlobSetAccessTierOptions

public class BlobSetAccessTierOptions

Extended options that may be passed when setting tier for a blob.

Constructor Summary

Constructor Description
BlobSetAccessTierOptions(AccessTier tier)

Method Summary

Modifier and Type Method and Description
String getLeaseId()
RehydratePriority getPriority()
String getTagsConditions()
AccessTier getTier()
BlobSetAccessTierOptions setLeaseId(String leaseId)
BlobSetAccessTierOptions setPriority(RehydratePriority priority)
BlobSetAccessTierOptions setTagsConditions(String tagsConditions)

Methods inherited from java.lang.Object

Constructor Details

BlobSetAccessTierOptions

public BlobSetAccessTierOptions(AccessTier tier)

Parameters:

tier - The new tier for the blob.

Method Details

getLeaseId

public String getLeaseId()

Returns:

The lease ID the active lease on the blob must match.

getPriority

public RehydratePriority getPriority()

Returns:

Priority to set for re-hydrating blobs.

getTagsConditions

public String getTagsConditions()

Returns:

The SQL statement that apply to the tags of the blob.

getTier

public AccessTier getTier()

Returns:

The new tier for the blob.

setLeaseId

public BlobSetAccessTierOptions setLeaseId(String leaseId)

Parameters:

leaseId - The lease ID the active lease on the blob must match.

Returns:

The updated BlobSetAccessTierOptions.

setPriority

public BlobSetAccessTierOptions setPriority(RehydratePriority priority)

Parameters:

priority - Priority to set for re-hydrating blobs.

Returns:

The updated BlobSetAccessTierOptions.

setTagsConditions

public BlobSetAccessTierOptions setTagsConditions(String tagsConditions)

Parameters:

tagsConditions - The SQL statement that apply to the tags of the blob.

Returns:

The updated BlobSetAccessTierOptions.

Applies to