AzureBlobFileSystemConfiguration Class
- java.
lang. Object - com.
microsoft. azure. batch. protocol. models. AzureBlobFileSystemConfiguration
- com.
public class AzureBlobFileSystemConfiguration
Information used to connect to an Azure Storage Container using Blobfuse.
Constructor Summary
Constructor | Description | |
---|---|---|
AzureBlobFileSystemConfiguration() |
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
accountKey()
Get this property is mutually exclusive with both sas |
String |
accountName()
Get the account |
String |
blobfuseOptions()
Get these are 'net use' options in Windows and 'mount' options in Linux. |
String |
containerName()
Get the container |
Compute |
identityReference()
Get this property is mutually exclusive with both account |
String |
relativeMountPath()
Get all file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. |
String |
sasKey()
Get this property is mutually exclusive with both account |
Azure |
withAccountKey(String accountKey)
Set this property is mutually exclusive with both sas |
Azure |
withAccountName(String accountName)
Set the account |
Azure |
withBlobfuseOptions(String blobfuseOptions)
Set these are 'net use' options in Windows and 'mount' options in Linux. |
Azure |
withContainerName(String containerName)
Set the container |
Azure |
withIdentityReference(ComputeNodeIdentityReference identityReference)
Set this property is mutually exclusive with both account |
Azure |
withRelativeMountPath(String relativeMountPath)
Set all file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. |
Azure |
withSasKey(String sasKey)
Set this property is mutually exclusive with both account |
Methods inherited from java.lang.Object
Constructor Details
AzureBlobFileSystemConfiguration
public AzureBlobFileSystemConfiguration()
Method Details
accountKey
public String accountKey()
Get this property is mutually exclusive with both sasKey and identity; exactly one must be specified.
Returns:
accountName
public String accountName()
Get the accountName value.
Returns:
blobfuseOptions
public String blobfuseOptions()
Get these are 'net use' options in Windows and 'mount' options in Linux.
Returns:
containerName
public String containerName()
Get the containerName value.
Returns:
identityReference
public ComputeNodeIdentityReference identityReference()
Get this property is mutually exclusive with both accountKey and sasKey; exactly one must be specified.
Returns:
relativeMountPath
public String relativeMountPath()
Get all file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable.
Returns:
sasKey
public String sasKey()
Get this property is mutually exclusive with both accountKey and identity; exactly one must be specified.
Returns:
withAccountKey
public AzureBlobFileSystemConfiguration withAccountKey(String accountKey)
Set this property is mutually exclusive with both sasKey and identity; exactly one must be specified.
Parameters:
Returns:
withAccountName
public AzureBlobFileSystemConfiguration withAccountName(String accountName)
Set the accountName value.
Parameters:
Returns:
withBlobfuseOptions
public AzureBlobFileSystemConfiguration withBlobfuseOptions(String blobfuseOptions)
Set these are 'net use' options in Windows and 'mount' options in Linux.
Parameters:
Returns:
withContainerName
public AzureBlobFileSystemConfiguration withContainerName(String containerName)
Set the containerName value.
Parameters:
Returns:
withIdentityReference
public AzureBlobFileSystemConfiguration withIdentityReference(ComputeNodeIdentityReference identityReference)
Set this property is mutually exclusive with both accountKey and sasKey; exactly one must be specified.
Parameters:
Returns:
withRelativeMountPath
public AzureBlobFileSystemConfiguration withRelativeMountPath(String relativeMountPath)
Set all file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable.
Parameters:
Returns:
withSasKey
public AzureBlobFileSystemConfiguration withSasKey(String sasKey)
Set this property is mutually exclusive with both accountKey and identity; exactly one must be specified.
Parameters:
Returns:
Applies to
Azure SDK for Java