Show / Hide Table of Contents

Class NetworkConfigDetails

Network access configuration for an IoT flow runtime.

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

Properties

FileStorageMounts

Declaration
[JsonProperty(PropertyName = "fileStorageMounts")]
public List<FileStorageMountDetails> FileStorageMounts { get; set; }
Property Value
Type Description
List<FileStorageMountDetails>

The File Storage mounts to attach to the IoT flow runtime. If specified, this list must contain from 1 to 5 items.

NetworkSecurityGroupIds

Declaration
[JsonProperty(PropertyName = "networkSecurityGroupIds")]
public List<string> NetworkSecurityGroupIds { get; set; }
Property Value
Type Description
List<string>

The OCIDs of the network security groups associated with the IoT flow runtime.

SubnetId

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

The OCID of the subnet used by the IoT flow runtime.

Remarks

Required

In this article
Back to top