DataLakeServiceClient.UndeleteFileSystem 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.
Restores a previously deleted file system. This API is only functional is Container Soft Delete is enabled for the storage account associated with the filesystem.
public virtual Azure.Response<Azure.Storage.Files.DataLake.DataLakeFileSystemClient> UndeleteFileSystem (string deletedFileSystemName, string deleteFileSystemVersion, System.Threading.CancellationToken cancellationToken = default);
abstract member UndeleteFileSystem : string * string * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.DataLake.DataLakeFileSystemClient>
override this.UndeleteFileSystem : string * string * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.DataLake.DataLakeFileSystemClient>
Public Overridable Function UndeleteFileSystem (deletedFileSystemName As String, deleteFileSystemVersion As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of DataLakeFileSystemClient)
Parameters
- deletedFileSystemName
- String
The name of the previously deleted file system.
- deleteFileSystemVersion
- String
The version of the previously deleted file system.
- cancellationToken
- CancellationToken
Optional CancellationToken to propagate notifications that the operation should be cancelled.
Returns
A Response<T> pointed at the undeleted file system.
Remarks
A RequestFailedException will be thrown if a failure occurs.
Applies to
Azure SDK for .NET