NetworkConfigDetails¶
-
class
oci.iot.models.NetworkConfigDetails(**kwargs)¶ Bases:
objectNetwork access configuration for an IoT flow runtime.
Methods
__init__(**kwargs)Initializes a new NetworkConfigDetails object with values from keyword arguments. Attributes
file_storage_mountsGets the file_storage_mounts of this NetworkConfigDetails. network_security_group_idsGets the network_security_group_ids of this NetworkConfigDetails. subnet_id[Required] Gets the subnet_id of this NetworkConfigDetails. -
__init__(**kwargs)¶ Initializes a new NetworkConfigDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - subnet_id (str) – The value to assign to the subnet_id property of this NetworkConfigDetails.
- network_security_group_ids (list[str]) – The value to assign to the network_security_group_ids property of this NetworkConfigDetails.
- file_storage_mounts (list[oci.iot.models.FileStorageMountDetails]) – The value to assign to the file_storage_mounts property of this NetworkConfigDetails.
-
file_storage_mounts¶ Gets the file_storage_mounts of this NetworkConfigDetails. The File Storage mounts to attach to the IoT flow runtime. If specified, this list must contain from 1 to 5 items.
Returns: The file_storage_mounts of this NetworkConfigDetails. Return type: list[oci.iot.models.FileStorageMountDetails]
-
network_security_group_ids¶ Gets the network_security_group_ids of this NetworkConfigDetails. The OCIDs of the network security groups associated with the IoT flow runtime.
Returns: The network_security_group_ids of this NetworkConfigDetails. Return type: list[str]
-
subnet_id¶ [Required] Gets the subnet_id of this NetworkConfigDetails. The OCID of the subnet used by the IoT flow runtime.
Returns: The subnet_id of this NetworkConfigDetails. Return type: str
-