BlobBatchClient.SetBlobsAccessTierAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The SetBlobsAccessTierAsync operation sets the tier on blobs. The operation is allowed on block blobs in a blob storage or general purpose v2 account.
public virtual System.Threading.Tasks.Task<Azure.Response[]> SetBlobsAccessTierAsync (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 SetBlobsAccessTierAsync : seq<Uri> * Azure.Storage.Blobs.Models.AccessTier * Nullable<Azure.Storage.Blobs.Models.RehydratePriority> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response[]>
override this.SetBlobsAccessTierAsync : seq<Uri> * Azure.Storage.Blobs.Models.AccessTier * Nullable<Azure.Storage.Blobs.Models.RehydratePriority> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response[]>
Public Overridable Function SetBlobsAccessTierAsync (blobUris As IEnumerable(Of Uri), accessTier As AccessTier, Optional rehydratePriority As Nullable(Of RehydratePriority) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of 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
Azure SDK for .NET