ScaleSetPacketCaptureFilter

data class ScaleSetPacketCaptureFilter(val localIpAddress: String? = null, val localPort: String? = null, val protocol: String, val remoteIpAddress: String? = null, val remotePort: String? = null)

Constructors

Link copied to clipboard
constructor(localIpAddress: String? = null, localPort: String? = null, protocol: String, remoteIpAddress: String? = null, remotePort: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val localIpAddress: String? = null

The local IP Address to be filtered on. Specify 127.0.0.1 for a single address entry, 127.0.0.1-127.0.0.255 for a range and 127.0.0.1;127.0.0.5 for multiple entries. Multiple ranges and mixing ranges with multiple entries are currently not supported. Changing this forces a new resource to be created.

Link copied to clipboard
val localPort: String? = null

The local port to be filtered on. Specify 80 for single port entry, 80-85 for a range and 80;443; for multiple entries. Multiple ranges and mixing ranges with multiple entries are currently not supported. Changing this forces a new resource to be created.

Link copied to clipboard

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: String? = null

The remote IP Address to be filtered on. Specify 127.0.0.1 for a single address entry, 127.0.0.1-127.0.0.255 for a range and 127.0.0.1;127.0.0.5 for multiple entries. Multiple ranges and mixing ranges with multiple entries are currently not supported. Changing this forces a new resource to be created.

Link copied to clipboard
val remotePort: String? = null

The remote port to be filtered on. Specify 80 for single port entry, 80-85 for a range and 80;443; for multiple entries. Multiple ranges and mixing ranges with multiple entries are currently not supported. Changing this forces a new resource to be created.