CreateOciFssMountOptionDetails¶
-
class
oci.container_instances.models.CreateOciFssMountOptionDetails(**kwargs)¶ Bases:
objectA 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.
Methods
__init__(**kwargs)Initializes a new CreateOciFssMountOptionDetails object with values from keyword arguments. Attributes
option[Required] Gets the option of this CreateOciFssMountOptionDetails. valueGets the value of this CreateOciFssMountOptionDetails. -
__init__(**kwargs)¶ Initializes a new CreateOciFssMountOptionDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - option (str) – The value to assign to the option property of this CreateOciFssMountOptionDetails.
- value (str) – The value to assign to the value property of this CreateOciFssMountOptionDetails.
-
option¶ [Required] Gets the option of this CreateOciFssMountOptionDetails. 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.
Returns: The option of this CreateOciFssMountOptionDetails. Return type: str
-
value¶ Gets the value of this CreateOciFssMountOptionDetails. The value of the mount option.
Returns: The value of this CreateOciFssMountOptionDetails. Return type: str
-