NetworkRuleSetResponse

data class NetworkRuleSetResponse(val bypass: String? = null, val defaultAction: String? = null, val ipRules: List<IPRuleResponse>? = null, val virtualNetworkRules: List<VirtualNetworkRuleResponse>? = null)

A set of rules governing the network accessibility of a vault.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bypass: String? = null

Tells what traffic can bypass network rules. This can be 'AzureServices' or 'None'. If not specified the default is 'AzureServices'.

Link copied to clipboard
val defaultAction: String? = null

The default action when no rule from ipRules and from virtualNetworkRules match. This is only used after the bypass property has been evaluated.

Link copied to clipboard

The list of IP address rules.

Link copied to clipboard

The list of virtual network rules.