共用方式為


MountConfiguration Constructors

Definition

Overloads

MountConfiguration()

Initializes a new instance of the MountConfiguration class.

MountConfiguration(AzureBlobFileSystemConfiguration, NFSMountConfiguration, CIFSMountConfiguration, AzureFileShareConfiguration)

Initializes a new instance of the MountConfiguration class.

MountConfiguration()

Source:
MountConfiguration.cs

Initializes a new instance of the MountConfiguration class.

public MountConfiguration ();
Public Sub New ()

Applies to

MountConfiguration(AzureBlobFileSystemConfiguration, NFSMountConfiguration, CIFSMountConfiguration, AzureFileShareConfiguration)

Source:
MountConfiguration.cs

Initializes a new instance of the MountConfiguration class.

public MountConfiguration (Microsoft.Azure.Batch.Protocol.Models.AzureBlobFileSystemConfiguration azureBlobFileSystemConfiguration = default, Microsoft.Azure.Batch.Protocol.Models.NFSMountConfiguration nfsMountConfiguration = default, Microsoft.Azure.Batch.Protocol.Models.CIFSMountConfiguration cifsMountConfiguration = default, Microsoft.Azure.Batch.Protocol.Models.AzureFileShareConfiguration azureFileShareConfiguration = default);
new Microsoft.Azure.Batch.Protocol.Models.MountConfiguration : Microsoft.Azure.Batch.Protocol.Models.AzureBlobFileSystemConfiguration * Microsoft.Azure.Batch.Protocol.Models.NFSMountConfiguration * Microsoft.Azure.Batch.Protocol.Models.CIFSMountConfiguration * Microsoft.Azure.Batch.Protocol.Models.AzureFileShareConfiguration -> Microsoft.Azure.Batch.Protocol.Models.MountConfiguration
Public Sub New (Optional azureBlobFileSystemConfiguration As AzureBlobFileSystemConfiguration = Nothing, Optional nfsMountConfiguration As NFSMountConfiguration = Nothing, Optional cifsMountConfiguration As CIFSMountConfiguration = Nothing, Optional azureFileShareConfiguration As AzureFileShareConfiguration = Nothing)

Parameters

azureBlobFileSystemConfiguration
AzureBlobFileSystemConfiguration

The Azure Storage Container to mount using blob FUSE on each node.

nfsMountConfiguration
NFSMountConfiguration

The NFS file system to mount on each node.

cifsMountConfiguration
CIFSMountConfiguration

The CIFS/SMB file system to mount on each node.

azureFileShareConfiguration
AzureFileShareConfiguration

The Azure File Share to mount on each node.

Applies to