LoadBalancerFirewall

data class LoadBalancerFirewall(val allows: List<String>? = null, val denies: List<String>? = null)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

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

A list of strings describing allow rules. Must be colon delimited strings of the form {type}:{source}

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

A list of strings describing deny rules. Must be colon delimited strings of the form {type}:{source}