VerificationIPFlowParameters Class

Parameters that define the IP flow to be verified.

All required parameters must be populated in order to send to Azure.

Inheritance
VerificationIPFlowParameters

Constructor

VerificationIPFlowParameters(*, target_resource_id: str, direction: typing.Union[str, _ForwardRef('Direction')], protocol: typing.Union[str, _ForwardRef('Protocol')], local_port: str, remote_port: str, local_ip_address: str, remote_ip_address: str, target_nic_resource_id: typing.Union[str, NoneType] = None, **kwargs)

Parameters

target_resource_id
str

Required. The ID of the target resource to perform next-hop on.

direction
str or Direction

Required. The direction of the packet represented as a 5-tuple. Possible values include: "Inbound", "Outbound".

protocol
str or Protocol

Required. Protocol to be verified on. Possible values include: "TCP", "UDP".

local_port
str

Required. The local port. Acceptable values are a single integer in the range (0-65535). Support for * for the source port, which depends on the direction.

remote_port
str

Required. The remote port. Acceptable values are a single integer in the range (0-65535). Support for * for the source port, which depends on the direction.

local_ip_address
str

Required. The local IP address. Acceptable values are valid IPv4 addresses.

remote_ip_address
str

Required. The remote IP address. Acceptable values are valid IPv4 addresses.

target_nic_resource_id
str

The NIC ID. (If VM has multiple NICs and IP forwarding is enabled on any of them, then this parameter must be specified. Otherwise optional).