GetNetworkSecurityGroupSecurityRule

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Is network traffic is allowed or denied?

Link copied to clipboard

The description for this rule.

Link copied to clipboard

CIDR or destination IP range or * to match any IP.

Link copied to clipboard

A list of CIDRs or destination IP ranges.

Link copied to clipboard

A List of destination Application Security Group IDs

Link copied to clipboard

The Destination Port or Range.

Link copied to clipboard
Link copied to clipboard

The direction specifies if rule will be evaluated on incoming or outgoing traffic.

Link copied to clipboard

Specifies the Name of the Network Security Group.

Link copied to clipboard

The priority of the rule

Link copied to clipboard

The network protocol this rule applies to.

Link copied to clipboard

CIDR or source IP range or * to match any IP.

Link copied to clipboard

A list of CIDRs or source IP ranges.

Link copied to clipboard

A List of source Application Security Group IDs

Link copied to clipboard

The Source Port or Range.

Link copied to clipboard