AIServicesNetworkAcls

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

Constructors

Link copied to clipboard
constructor(bypass: String? = null, defaultAction: String, ipRules: List<String>? = null, virtualNetworkRules: List<AIServicesNetworkAclsVirtualNetworkRule>? = 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. Defaults to 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 AI Services Account.

Link copied to clipboard

A virtual_network_rules block as defined below.