NetworkACLResponse

data class NetworkACLResponse(val allow: List<String>? = null, val deny: List<String>? = null)

Network ACL

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val allow: List<String>? = null

Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

Link copied to clipboard
val deny: List<String>? = null

Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.