VerificationIPFlowParameters Class
Parameters that define the IP flow to be verified.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.network._serialization.ModelVerificationIPFlowParameters
Constructor
VerificationIPFlowParameters(*, target_resource_id: str, direction: str | _models.Direction, protocol: str | _models.IpFlowProtocol, local_port: str, remote_port: str, local_ip_address: str, remote_ip_address: str, target_nic_resource_id: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
target_resource_id
|
The ID of the target resource to perform next-hop on. Required. |
direction
|
The direction of the packet represented as a 5-tuple. Required. Known values are: "Inbound" and "Outbound". |
protocol
|
Protocol to be verified on. Required. Known values are: "TCP" and "UDP". |
local_port
|
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. Required. |
remote_port
|
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. Required. |
local_ip_address
|
The local IP address. Acceptable values are valid IPv4 addresses. Required. |
remote_ip_address
|
The remote IP address. Acceptable values are valid IPv4 addresses. Required. |
target_nic_resource_id
|
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). |
Variables
Name | Description |
---|---|
target_resource_id
|
The ID of the target resource to perform next-hop on. Required. |
direction
|
The direction of the packet represented as a 5-tuple. Required. Known values are: "Inbound" and "Outbound". |
protocol
|
Protocol to be verified on. Required. Known values are: "TCP" and "UDP". |
local_port
|
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. Required. |
remote_port
|
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. Required. |
local_ip_address
|
The local IP address. Acceptable values are valid IPv4 addresses. Required. |
remote_ip_address
|
The remote IP address. Acceptable values are valid IPv4 addresses. Required. |
target_nic_resource_id
|
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). |
Azure SDK for Python