AccountNetworkAcls

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bypass: String? = null

Whether to allow trusted Azure Services to access the service. Possible values are None and AzureServices.

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.