Show / Hide Table of Contents

Class FileSystemExportMapping

The mapping between a primary region file system export path and destination region mount target.

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

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 on which this file system export should be created.
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.
Example: ocid1.export.oc1..uniqueID

Remarks

Required

In this article
Back to top