DataLakeFileSystemClient Constructors
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.
Overloads
DataLakeFileSystemClient()
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class for mocking.
protected DataLakeFileSystemClient ();
Protected Sub New ()
Applies to
DataLakeFileSystemClient(Uri)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri)
Parameters
- fileSystemUri
- Uri
A Uri referencing the share that includes the name of the account and the name of the file system.
Applies to
DataLakeFileSystemClient(String, String)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (string connectionString, string fileSystemName);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : string * string -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (connectionString As String, fileSystemName As String)
Parameters
- connectionString
- String
A connection string includes the authentication information required for your application to access data in an Azure Storage account at runtime.
For more information, Configure Azure Storage connection strings.
- fileSystemName
- String
The name of the blob container in the storage account to reference.
Applies to
DataLakeFileSystemClient(Uri, AzureSasCredential)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.AzureSasCredential credential);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.AzureSasCredential -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, credential As AzureSasCredential)
Parameters
- fileSystemUri
- Uri
A Uri referencing the share that includes the name of the account and the name of the file system. Must not contain shared access signature, which should be passed in the second parameter.
- credential
- AzureSasCredential
The shared access signature credential used to sign requests.
Remarks
This constructor should only be used when shared access signature needs to be updated during lifespan of this client.
Applies to
DataLakeFileSystemClient(Uri, TokenCredential)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.Core.TokenCredential credential);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.Core.TokenCredential -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, credential As TokenCredential)
Parameters
- fileSystemUri
- Uri
A Uri referencing the file system that includes the name of the account and the name of the file system.
- credential
- TokenCredential
The token credential used to sign requests.
Applies to
DataLakeFileSystemClient(Uri, DataLakeClientOptions)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.Storage.Files.DataLake.DataLakeClientOptions options);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.Storage.Files.DataLake.DataLakeClientOptions -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, options As DataLakeClientOptions)
Parameters
- fileSystemUri
- Uri
A Uri referencing the share that includes the name of the account and the name of the file system.
- options
- DataLakeClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
DataLakeFileSystemClient(Uri, StorageSharedKeyCredential)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.Storage.StorageSharedKeyCredential credential);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.Storage.StorageSharedKeyCredential -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, credential As StorageSharedKeyCredential)
Parameters
- fileSystemUri
- Uri
A Uri referencing the share that includes the name of the account and the name of the file system.
- credential
- StorageSharedKeyCredential
The shared key credential used to sign requests.
Applies to
DataLakeFileSystemClient(String, String, DataLakeClientOptions)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (string connectionString, string fileSystemName, Azure.Storage.Files.DataLake.DataLakeClientOptions options);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : string * string * Azure.Storage.Files.DataLake.DataLakeClientOptions -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (connectionString As String, fileSystemName As String, options As DataLakeClientOptions)
Parameters
- connectionString
- String
A connection string includes the authentication information required for your application to access data in an Azure Storage account at runtime.
For more information, Configure Azure Storage connection strings.
- fileSystemName
- String
The name of the blob container in the storage account to reference.
- options
- DataLakeClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
DataLakeFileSystemClient(Uri, AzureSasCredential, DataLakeClientOptions)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.AzureSasCredential credential, Azure.Storage.Files.DataLake.DataLakeClientOptions options);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.AzureSasCredential * Azure.Storage.Files.DataLake.DataLakeClientOptions -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, credential As AzureSasCredential, options As DataLakeClientOptions)
Parameters
- fileSystemUri
- Uri
A Uri referencing the share that includes the name of the account and the name of the file system. Must not contain shared access signature, which should be passed in the second parameter.
- credential
- AzureSasCredential
The shared access signature credential used to sign requests.
- options
- DataLakeClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Remarks
This constructor should only be used when shared access signature needs to be updated during lifespan of this client.
Applies to
DataLakeFileSystemClient(Uri, TokenCredential, DataLakeClientOptions)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.Core.TokenCredential credential, Azure.Storage.Files.DataLake.DataLakeClientOptions options);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.Core.TokenCredential * Azure.Storage.Files.DataLake.DataLakeClientOptions -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, credential As TokenCredential, options As DataLakeClientOptions)
Parameters
- fileSystemUri
- Uri
A Uri referencing the file system that includes the name of the account and the name of the file system.
- credential
- TokenCredential
The token credential used to sign requests.
- options
- DataLakeClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
DataLakeFileSystemClient(Uri, StorageSharedKeyCredential, DataLakeClientOptions)
- Source:
- DataLakeFileSystemClient.cs
- Source:
- DataLakeFileSystemClient.cs
Initializes a new instance of the DataLakeFileSystemClient class.
public DataLakeFileSystemClient (Uri fileSystemUri, Azure.Storage.StorageSharedKeyCredential credential, Azure.Storage.Files.DataLake.DataLakeClientOptions options);
new Azure.Storage.Files.DataLake.DataLakeFileSystemClient : Uri * Azure.Storage.StorageSharedKeyCredential * Azure.Storage.Files.DataLake.DataLakeClientOptions -> Azure.Storage.Files.DataLake.DataLakeFileSystemClient
Public Sub New (fileSystemUri As Uri, credential As StorageSharedKeyCredential, options As DataLakeClientOptions)
Parameters
- fileSystemUri
- Uri
A Uri referencing the share that includes the name of the account and the name of the file system.
- credential
- StorageSharedKeyCredential
The shared key credential used to sign requests.
- options
- DataLakeClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
Azure SDK for .NET