Class NetworkConfigDetails
Network access configuration for an IoT flow runtime.
Inherited Members
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