AzureBlobFileSystemConfiguration Constructors

Definition

Overloads

AzureBlobFileSystemConfiguration()

Default constructor to support mocking the AzureBlobFileSystemConfiguration class.

AzureBlobFileSystemConfiguration(String, String, String, AzureStorageAuthenticationKey, String)

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

AzureBlobFileSystemConfiguration(String, String, String, ComputeNodeIdentityReference, String)

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

AzureBlobFileSystemConfiguration()

Source:
AzureBlobFileSystemConfiguration.cs

Default constructor to support mocking the AzureBlobFileSystemConfiguration class.

protected AzureBlobFileSystemConfiguration ();
Protected Sub New ()

Applies to

AzureBlobFileSystemConfiguration(String, String, String, AzureStorageAuthenticationKey, String)

Source:
AzureBlobFileSystemConfiguration.cs

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

public AzureBlobFileSystemConfiguration (string accountName, string containerName, string relativeMountPath, Microsoft.Azure.Batch.AzureStorageAuthenticationKey key, string blobfuseOptions = default);
new Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration : string * string * string * Microsoft.Azure.Batch.AzureStorageAuthenticationKey * string -> Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration
Public Sub New (accountName As String, containerName As String, relativeMountPath As String, key As AzureStorageAuthenticationKey, Optional blobfuseOptions As String = Nothing)

Parameters

accountName
String

The Azure Storage account name.

containerName
String

The Azure Blob Storage Container name.

relativeMountPath
String

The relative path on the compute node where the file system will be mounted.

key
AzureStorageAuthenticationKey

The key to use to authenticate with Azure Storage. This can be either a SAS key or a Storage Account Key.

blobfuseOptions
String

Additional command line options to pass to the mount command.

Applies to

AzureBlobFileSystemConfiguration(String, String, String, ComputeNodeIdentityReference, String)

Source:
AzureBlobFileSystemConfiguration.cs

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

public AzureBlobFileSystemConfiguration (string accountName, string containerName, string relativeMountPath, Microsoft.Azure.Batch.ComputeNodeIdentityReference identityReference, string blobfuseOptions = default);
new Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration : string * string * string * Microsoft.Azure.Batch.ComputeNodeIdentityReference * string -> Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration
Public Sub New (accountName As String, containerName As String, relativeMountPath As String, identityReference As ComputeNodeIdentityReference, Optional blobfuseOptions As String = Nothing)

Parameters

accountName
String

The Azure Storage account name.

containerName
String

The Azure Blob Storage Container name.

relativeMountPath
String

The relative path on the compute node where the file system will be mounted.

identityReference
ComputeNodeIdentityReference

The managed identity to use to authenticate with Azure Storage.

blobfuseOptions
String

Additional command line options to pass to the mount command.

Applies to