PacketCaptureFilterArgs

data class PacketCaptureFilterArgs(val localIPAddress: Output<String>? = null, val localPort: Output<String>? = null, val protocol: Output<Either<String, PcProtocol>>? = null, val remoteIPAddress: Output<String>? = null, val remotePort: Output<String>? = null) : ConvertibleToJava<PacketCaptureFilterArgs>

Filter that is applied to packet capture request. Multiple filters can be applied.

Constructors

Link copied to clipboard
constructor(localIPAddress: Output<String>? = null, localPort: Output<String>? = null, protocol: Output<Either<String, PcProtocol>>? = null, remoteIPAddress: Output<String>? = null, remotePort: Output<String>? = null)

Properties

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

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. Default = null.

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

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. Default = null.

Link copied to clipboard
val protocol: Output<Either<String, PcProtocol>>? = null

Protocol to be filtered on.

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

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. Default = null.

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

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. Default = null.

Functions

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