Share via


AzureBlobFileSystemConfiguration Constructors

Definition

Overloads

AzureBlobFileSystemConfiguration()

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

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

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

AzureBlobFileSystemConfiguration()

Source:
AzureBlobFileSystemConfiguration.cs

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

public AzureBlobFileSystemConfiguration ();
Public Sub New ()

Applies to

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

Source:
AzureBlobFileSystemConfiguration.cs

Initializes a new instance of the AzureBlobFileSystemConfiguration class.

public AzureBlobFileSystemConfiguration (string accountName, string containerName, string relativeMountPath, string accountKey = default, string sasKey = default, string blobfuseOptions = default, Microsoft.Azure.Batch.Protocol.Models.ComputeNodeIdentityReference identityReference = default);
new Microsoft.Azure.Batch.Protocol.Models.AzureBlobFileSystemConfiguration : string * string * string * string * string * string * Microsoft.Azure.Batch.Protocol.Models.ComputeNodeIdentityReference -> Microsoft.Azure.Batch.Protocol.Models.AzureBlobFileSystemConfiguration
Public Sub New (accountName As String, containerName As String, relativeMountPath As String, Optional accountKey As String = Nothing, Optional sasKey As String = Nothing, Optional blobfuseOptions As String = Nothing, Optional identityReference As ComputeNodeIdentityReference = 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

accountKey
String

The Azure Storage Account key.

sasKey
String

The Azure Storage SAS token.

blobfuseOptions
String

Additional command line options to pass to the mount command.

identityReference
ComputeNodeIdentityReference

The reference to the user assigned identity to use to access containerName

Applies to