Show / Hide Table of Contents

Class CreateOciFssMountOptionDetails

A mount option to be used in the mount command while mounting the OCI File Storage Service (FSS) File System to Containers. The mount option will look like option=value in the mount command.

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

Properties

Option

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

A generic (https://man7.org/linux/man-pages/man8/mount.8.html) or nfs (https://man7.org/linux/man-pages/man5/nfs.5.html) mount option.

Remarks

Required

Value

Declaration
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type Description
string

The value of the mount option.

In this article
Back to top