Class NfsVolume
A description of a NFS type of batch task environment volume.
Inherited Members
Namespace: Oci.BatchService.Models
Assembly: OCI.DotNetSDK.Batch.dll
Syntax
public class NfsVolume : BatchTaskEnvironmentVolume
Properties
LocalMountDirectoryPath
Declaration
[Required(ErrorMessage = "LocalMountDirectoryPath is required.")]
[JsonProperty(PropertyName = "localMountDirectoryPath")]
public string LocalMountDirectoryPath { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The local path to mount the NFS share to. |
Remarks
Required
MountTargetExportPath
Declaration
[Required(ErrorMessage = "MountTargetExportPath is required.")]
[JsonProperty(PropertyName = "mountTargetExportPath")]
public string MountTargetExportPath { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The path to the directory on the NFS server to be mounted. |
Remarks
Required
MountTargetFqdn
Declaration
[Required(ErrorMessage = "MountTargetFqdn is required.")]
[JsonProperty(PropertyName = "mountTargetFqdn")]
public string MountTargetFqdn { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The FQDN of the NFS server to connect to. |
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of the NfsVolume. |
Remarks
Required