AzureDataLakeSettings Properties
Class Properties 5 members
Provides the client configuration settings for connecting to Azure Data Lake Storage.
Gets or sets the connection string used to connect to the Azure Data Lake Storage service.
public string? ConnectionString { get; set; }Remarks
If
AzureDataLakeSettings.ConnectionString is set, it overrides AzureDataLakeSettings.ServiceUri and AzureDataLakeSettings.Credential. Gets or sets the credential used to authenticate to the Azure Data Lake Storage.
public TokenCredential? Credential { get; set; } Gets or sets a boolean value that indicates whether the Azure Data Lake Storage health check is disabled or not.
public bool DisableHealthChecks { get; set; } Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.
public bool DisableTracing { get; set; } A
Uri referencing the data lake service. This is likely to be similar to "https://{account_name}.dfs.core.windows.net". public Uri? ServiceUri { get; set; }Remarks
Must not contain shared access signature. Used along with
AzureDataLakeSettings.Credential to establish the connection.