Show / Hide Table of Contents

Class FileSystemExportMappingDetails

The mapping between a file system export in the primary region and a mount target in the standby region.

Inheritance
object
FileSystemExportMappingDetails
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 FileSystemExportMappingDetails

Properties

DestinationMountTargetId

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

The OCID of the destination mount target in the destination region which is used to export the file system.
Example: ocid1.mounttarget.oc1..uniqueID

Remarks

Required

ExportId

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

The OCID of the export path in the primary region used to mount or unmount the file system.
Example: ocid1.export.oc1..uniqueID

Remarks

Required

In this article
Back to top