Show / Hide Table of Contents

Class ComputeInstanceNonMovableFileSystemOperation

The details of operations performed on a file system.

Inheritance
object
ComputeInstanceNonMovableFileSystemOperation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class ComputeInstanceNonMovableFileSystemOperation

Properties

ExportPath

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

The export path of the file system.
Example: /fs-export-path

Remarks

Required

MountPoint

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

The physical mount point of the file system on a host.
Example: /mnt/yourmountpoint

Remarks

Required

MountTargetId

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

The OCID of mount target.
Example: ocid1.mounttarget.oc1..uniqueID

Remarks

Required

In this article
Back to top