Show / Hide Table of Contents

Class FileStorageMountDetails

Details about a File Storage mount for an IoT flow runtime.

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

Properties

ExportId

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

The OCID of the File Storage export.

Remarks

Required

MountPath

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

The path relative to /mnt where the File Storage export is mounted. Do not include a leading slash or the /mnt prefix.

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 the File Storage mount target.

Remarks

Required

In this article
Back to top