NetworkACLArgs

data class NetworkACLArgs(val allow: Output<List<Either<String, SignalRRequestType>>>? = null, val deny: Output<List<Either<String, SignalRRequestType>>>? = null) : ConvertibleToJava<NetworkACLArgs>

Network ACL

Constructors

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

Properties

Link copied to clipboard
val allow: Output<List<Either<String, SignalRRequestType>>>? = null

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

Link copied to clipboard
val deny: Output<List<Either<String, SignalRRequestType>>>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): NetworkACLArgs