NetworkPacketCaptureFilterArgs

data class NetworkPacketCaptureFilterArgs(val localIpAddress: Output<String>? = null, val localPort: Output<String>? = null, val protocol: Output<String>, val remoteIpAddress: Output<String>? = null, val remotePort: Output<String>? = null) : ConvertibleToJava<NetworkPacketCaptureFilterArgs>

Constructors

Link copied to clipboard
fun NetworkPacketCaptureFilterArgs(localIpAddress: Output<String>? = null, localPort: Output<String>? = null, protocol: Output<String>, remoteIpAddress: Output<String>? = null, remotePort: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): NetworkPacketCaptureFilterArgs

Properties

Link copied to clipboard
val localIpAddress: Output<String>? = null

The local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Changing this forces a new resource to be created.

Link copied to clipboard
val localPort: Output<String>? = null

The local port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Changing this forces a new resource to be created.

Link copied to clipboard
val protocol: Output<String>

The Protocol to be filtered on. Possible values include Any, TCP and UDP. Changing this forces a new resource to be created.

Link copied to clipboard
val remoteIpAddress: Output<String>? = null

The remote IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported.. Changing this forces a new resource to be created.

Link copied to clipboard
val remotePort: Output<String>? = null

The remote port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Changing this forces a new resource to be created.