DataLakeFileSystemClient.SetMetadata Method

Definition

The SetMetadata(IDictionary<String,String>, DataLakeRequestConditions, CancellationToken) operation sets one or more user-defined name-value pairs for the specified file system.

For more information, see Set Container Metadata.

public virtual Azure.Response<Azure.Storage.Files.DataLake.Models.FileSystemInfo> SetMetadata (System.Collections.Generic.IDictionary<string,string> metadata, Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions conditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SetMetadata : System.Collections.Generic.IDictionary<string, string> * Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.DataLake.Models.FileSystemInfo>
override this.SetMetadata : System.Collections.Generic.IDictionary<string, string> * Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.DataLake.Models.FileSystemInfo>
Public Overridable Function SetMetadata (metadata As IDictionary(Of String, String), Optional conditions As DataLakeRequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of FileSystemInfo)

Parameters

metadata
IDictionary<String,String>

Custom metadata to set for this file system.

conditions
DataLakeRequestConditions

Optional DataLakeRequestConditions to add conditions on the deletion of this file system.

cancellationToken
CancellationToken

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

Returns

A Response<T> if successful.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to