Show / Hide Table of Contents

Class CreateContainerOciFssVolumeDetails

An OCI File Storage Service (FSS) File System that can be mounted to Containers within a Container Instance. Check https://docs.oracle.com/en-us/iaas/api/#/en/filestorage/20171215/FileSystem for more details.

Inheritance
object
CreateContainerVolumeDetails
CreateContainerOciFssVolumeDetails
Inherited Members
CreateContainerVolumeDetails.Name
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 CreateContainerOciFssVolumeDetails : CreateContainerVolumeDetails

Properties

Export

Declaration
[Required(ErrorMessage = "Export is required.")]
[JsonProperty(PropertyName = "export")]
public CreateOciFssExportDetails Export { get; set; }
Property Value
Type Description
CreateOciFssExportDetails
Remarks

Required

MountCommand

Declaration
[JsonProperty(PropertyName = "mountCommand")]
public CreateOciFssMountCommandDetails MountCommand { get; set; }
Property Value
Type Description
CreateOciFssMountCommandDetails

MountTarget

Declaration
[Required(ErrorMessage = "MountTarget is required.")]
[JsonProperty(PropertyName = "mountTarget")]
public CreateOciFssMountTargetDetails MountTarget { get; set; }
Property Value
Type Description
CreateOciFssMountTargetDetails
Remarks

Required

Security

Declaration
[JsonProperty(PropertyName = "security")]
public CreateOciFssSecurityDetails Security { get; set; }
Property Value
Type Description
CreateOciFssSecurityDetails

SubnetId

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

Specifies the network interface to be used for the OCI File Storage Service (FSS) volume. This is a required parameter when a Container Instance is attached to more than one subnets.

In this article
Back to top