FirewallInfo

@Serializable
data class FirewallInfo(val driver: String? = null, val info: List<List<String>>? = null)

Information about the daemon's firewalling configuration. This field is currently only used on Linux, and omitted on other platforms.

Parameters

driver

The name of the firewall backend driver.

info

Information about the firewall backend, provided as \"label\" / \"value\" pairs.


>Note: The information returned in this field, including the > formatting of values and labels, should not be considered stable, > and may change without notice.

Constructors

Link copied to clipboard
constructor(driver: String? = null, info: List<List<String>>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Driver")
val driver: String?
Link copied to clipboard
@SerialName(value = "Info")
val info: List<List<String>>?