Show / Hide Table of Contents

Class AutomatedMountDetails

Used for creating NFS Auto Mount backup destinations for autonomous on ExaCC.

Inheritance
object
MountTypeDetails
AutomatedMountDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class AutomatedMountDetails : MountTypeDetails

Properties

NfsServer

Declaration
[Required(ErrorMessage = "NfsServer is required.")]
[JsonProperty(PropertyName = "nfsServer")]
public List<string> NfsServer { get; set; }
Property Value
Type Description
List<string>

IP addresses for NFS Auto mount.

Remarks

Required

NfsServerExport

Declaration
[Required(ErrorMessage = "NfsServerExport is required.")]
[JsonProperty(PropertyName = "nfsServerExport")]
public string NfsServerExport { get; set; }
Property Value
Type Description
string

Specifies the directory on which to mount the file system

Remarks

Required

In this article
Back to top