AccountNetworkAcls

data class AccountNetworkAcls(val defaultAction: String, val ipRules: List<String>? = null, val virtualNetworkRules: List<AccountNetworkAclsVirtualNetworkRule>? = null)

Constructors

Link copied to clipboard
constructor(defaultAction: String, ipRules: List<String>? = null, virtualNetworkRules: List<AccountNetworkAclsVirtualNetworkRule>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Default Action to use when no rules match from ip_rules / virtual_network_rules. Possible values are Allow and Deny.

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

One or more IP Addresses, or CIDR Blocks which should be able to access the Cognitive Account.

Link copied to clipboard

A virtual_network_rules block as defined below.