BlobBatchClient.SetBlobsAccessTier Method

Definition

The SetBlobsAccessTier operation sets the tier on blobs. The operation is allowed on block blobs in a blob storage or general purpose v2 account.

public virtual Azure.Response[] SetBlobsAccessTier (System.Collections.Generic.IEnumerable<Uri> blobUris, Azure.Storage.Blobs.Models.AccessTier accessTier, Azure.Storage.Blobs.Models.RehydratePriority? rehydratePriority = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SetBlobsAccessTier : seq<Uri> * Azure.Storage.Blobs.Models.AccessTier * Nullable<Azure.Storage.Blobs.Models.RehydratePriority> * System.Threading.CancellationToken -> Azure.Response[]
override this.SetBlobsAccessTier : seq<Uri> * Azure.Storage.Blobs.Models.AccessTier * Nullable<Azure.Storage.Blobs.Models.RehydratePriority> * System.Threading.CancellationToken -> Azure.Response[]
Public Overridable Function SetBlobsAccessTier (blobUris As IEnumerable(Of Uri), accessTier As AccessTier, Optional rehydratePriority As Nullable(Of RehydratePriority) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response()

Parameters

blobUris
IEnumerable<Uri>

URIs of the blobs to set the tiers of.

accessTier
AccessTier

Indicates the tier to be set on the blobs.

rehydratePriority
Nullable<RehydratePriority>

Optional RehydratePriority Indicates the priority with which to rehydrate an archived blob.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

The Responses for the individual Set Tier operations.

Remarks

A RequestFailedException will be thrown if a failure to submit the batch occurs. Individual sub-operation failures will be wrapped in an AggregateException.

Applies to