CIFSMountConfiguration Class
Information used to connect to a CIFS file system.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.batch._serialization.ModelCIFSMountConfiguration
Constructor
CIFSMountConfiguration(*, user_name: str, source: str, relative_mount_path: str, password: str, mount_options: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
user_name
|
The user to use for authentication against the CIFS file system. Required. |
source
|
The URI of the file system to mount. Required. |
relative_mount_path
|
All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. Required. |
mount_options
|
These are 'net use' options in Windows and 'mount' options in Linux. |
password
|
The password to use for authentication against the CIFS file system. Required. |
Variables
Name | Description |
---|---|
user_name
|
The user to use for authentication against the CIFS file system. Required. |
source
|
The URI of the file system to mount. Required. |
relative_mount_path
|
All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. Required. |
mount_options
|
These are 'net use' options in Windows and 'mount' options in Linux. |
password
|
The password to use for authentication against the CIFS file system. Required. |
Azure SDK for Python