Show / Hide Table of Contents

Class NfsVolume

A description of a NFS type of batch task environment volume.

Inheritance
object
BatchTaskEnvironmentVolume
NfsVolume
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top