NetworkSecurityRuleResponse

data class NetworkSecurityRuleResponse(val access: String, val description: String? = null, val destinationAddressPrefix: String? = null, val destinationAddressPrefixes: List<String>? = null, val destinationPortRange: String? = null, val destinationPortRanges: List<String>? = null, val direction: String, val name: String, val priority: Int, val protocol: String, val sourceAddressPrefix: String? = null, val sourceAddressPrefixes: List<String>? = null, val sourcePortRange: String? = null, val sourcePortRanges: List<String>? = null)

Describes a network security rule.

Constructors

Link copied to clipboard
constructor(access: String, description: String? = null, destinationAddressPrefix: String? = null, destinationAddressPrefixes: List<String>? = null, destinationPortRange: String? = null, destinationPortRanges: List<String>? = null, direction: String, name: String, priority: Int, protocol: String, sourceAddressPrefix: String? = null, sourceAddressPrefixes: List<String>? = null, sourcePortRange: String? = null, sourcePortRanges: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The network traffic is allowed or denied.

Link copied to clipboard
val description: String? = null

Network security rule description.

Link copied to clipboard

The destination address prefix. CIDR or destination IP range. Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used.

Link copied to clipboard

The destination address prefixes. CIDR or destination IP ranges.

Link copied to clipboard

he destination port or range. Integer or range between 0 and 65535. Asterisk '*' can also be used to match all ports.

Link copied to clipboard

The destination port ranges.

Link copied to clipboard

Network security rule direction.

Link copied to clipboard

Network security rule name.

Link copied to clipboard

The priority of the rule. The value can be in the range 1000 to 3000. Values outside this range are reserved for Service Fabric ManagerCluster Resource Provider. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.

Link copied to clipboard

Network protocol this rule applies to.

Link copied to clipboard

The CIDR or source IP range. Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used. If this is an ingress rule, specifies where network traffic originates from.

Link copied to clipboard

The CIDR or source IP ranges.

Link copied to clipboard
val sourcePortRange: String? = null

The source port or range. Integer or range between 0 and 65535. Asterisk '*' can also be used to match all ports.

Link copied to clipboard

The source port ranges.