1. Packages
  2. Routeros Provider
  3. API Docs
  4. IpTrafficFlowIpfix
routeros 1.98.0 published on Monday, Dec 8, 2025 by terraform-routeros
routeros logo
routeros 1.98.0 published on Monday, Dec 8, 2025 by terraform-routeros

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as routeros from "@pulumi/routeros";
    
    const test = new routeros.IpTrafficFlowIpfix("test", {
        natEvents: "true",
        dstPort: "false",
    });
    
    import pulumi
    import pulumi_routeros as routeros
    
    test = routeros.IpTrafficFlowIpfix("test",
        nat_events="true",
        dst_port="false")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/routeros/routeros"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := routeros.NewIpTrafficFlowIpfix(ctx, "test", &routeros.IpTrafficFlowIpfixArgs{
    			NatEvents: pulumi.String("true"),
    			DstPort:   pulumi.String("false"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Routeros = Pulumi.Routeros;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Routeros.IpTrafficFlowIpfix("test", new()
        {
            NatEvents = "true",
            DstPort = "false",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.routeros.IpTrafficFlowIpfix;
    import com.pulumi.routeros.IpTrafficFlowIpfixArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var test = new IpTrafficFlowIpfix("test", IpTrafficFlowIpfixArgs.builder()
                .natEvents("true")
                .dstPort("false")
                .build());
    
        }
    }
    
    resources:
      test:
        type: routeros:IpTrafficFlowIpfix
        properties:
          natEvents: true
          dstPort: false
    

    Create IpTrafficFlowIpfix Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IpTrafficFlowIpfix(name: string, args?: IpTrafficFlowIpfixArgs, opts?: CustomResourceOptions);
    @overload
    def IpTrafficFlowIpfix(resource_name: str,
                           args: Optional[IpTrafficFlowIpfixArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def IpTrafficFlowIpfix(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           ___id_: Optional[float] = None,
                           ___path_: Optional[str] = None,
                           ___unset_: Optional[str] = None,
                           bytes: Optional[str] = None,
                           dst_address: Optional[str] = None,
                           dst_address_mask: Optional[str] = None,
                           dst_mac_address: Optional[str] = None,
                           dst_port: Optional[str] = None,
                           first_forwarded: Optional[str] = None,
                           gateway: Optional[str] = None,
                           icmp_code: Optional[str] = None,
                           icmp_type: Optional[str] = None,
                           igmp_type: Optional[str] = None,
                           in_interface: Optional[str] = None,
                           ip_header_length: Optional[str] = None,
                           ip_total_lenght: Optional[str] = None,
                           ip_traffic_flow_ipfix_id: Optional[str] = None,
                           ipv6_flow_label: Optional[str] = None,
                           is_multicast: Optional[str] = None,
                           last_forwarded: Optional[str] = None,
                           nat_dst_address: Optional[str] = None,
                           nat_dst_port: Optional[str] = None,
                           nat_events: Optional[str] = None,
                           nat_src_address: Optional[str] = None,
                           nat_src_port: Optional[str] = None,
                           out_interface: Optional[str] = None,
                           packets: Optional[str] = None,
                           protocol: Optional[str] = None,
                           src_address: Optional[str] = None,
                           src_address_mask: Optional[str] = None,
                           src_mac_address: Optional[str] = None,
                           src_port: Optional[str] = None,
                           sys_init_time: Optional[str] = None,
                           tcp_ack_num: Optional[str] = None,
                           tcp_flags: Optional[str] = None,
                           tcp_seq_num: Optional[str] = None,
                           tcp_window_size: Optional[str] = None,
                           tos: Optional[str] = None,
                           ttl: Optional[str] = None,
                           udp_length: Optional[str] = None)
    func NewIpTrafficFlowIpfix(ctx *Context, name string, args *IpTrafficFlowIpfixArgs, opts ...ResourceOption) (*IpTrafficFlowIpfix, error)
    public IpTrafficFlowIpfix(string name, IpTrafficFlowIpfixArgs? args = null, CustomResourceOptions? opts = null)
    public IpTrafficFlowIpfix(String name, IpTrafficFlowIpfixArgs args)
    public IpTrafficFlowIpfix(String name, IpTrafficFlowIpfixArgs args, CustomResourceOptions options)
    
    type: routeros:IpTrafficFlowIpfix
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IpTrafficFlowIpfixArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IpTrafficFlowIpfixArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IpTrafficFlowIpfixArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IpTrafficFlowIpfixArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IpTrafficFlowIpfixArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    IpTrafficFlowIpfix Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IpTrafficFlowIpfix resource accepts the following input properties:

    Bytes string
    Total number of bytes processed in the flow.
    DstAddress string
    The destination IP address of the flow.
    DstAddressMask string
    Network mask for the destination address.
    DstMacAddress string
    Destination MAC address.
    DstPort string
    Destination port number.
    FirstForwarded string
    Timestamp of the first packet forwarded in a flow.
    Gateway string
    IP address of the gateway through which the flow was routed.
    IcmpCode string
    ICMP code for error messaging and operational information.
    IcmpType string
    Type of ICMP message, important for diagnostic messages.
    IgmpType string
    Type of Internet Group Management Protocol operation.
    InInterface string
    Interface through which packets of the flow are received.
    IpHeaderLength string
    Length of the IP header.
    IpTotalLenght string
    Length of the IP packet in bytes.
    IpTrafficFlowIpfixId string
    The ID of this resource.
    Ipv6FlowLabel string
    Label field from an IPv6 header, used to classify flows.
    IsMulticast string
    Indicates whether the flow is a multicast flow.
    LastForwarded string
    Timestamp of the last packet forwarded in a flow.
    NatDstAddress string
    Translated destination IP address by NAT.
    NatDstPort string
    Translated destination port number by NAT.
    NatEvents string
    Events related to Network Address Translation for the flow.
    NatSrcAddress string
    Translated source IP address by NAT.
    NatSrcPort string
    Translated source port number by NAT.
    OutInterface string
    Interface through which packets of the flow are sent out.
    Packets string
    Number of packets processed in the flow.
    Protocol string
    Protocol number (e.g., TCP, UDP, ICMP).
    SrcAddress string
    The source IP address of the flow.
    SrcAddressMask string
    Network mask for the source address, useful in summarizing data.
    SrcMacAddress string
    Source MAC address.
    SrcPort string
    Source port number.
    SysInitTime string
    System initialization time, can be used for timing analysis.
    TcpAckNum string
    Acknowledgment number in a TCP connection.
    TcpFlags string
    Flags from the TCP header (e.g., SYN, ACK).
    TcpSeqNum string
    Sequence number in a TCP connection.
    TcpWindowSize string
    Window size in a TCP connection, indicating the scale of received data buffering.
    Tos string
    Type of Service field in the IP header, indicating priority and handling of the packet.
    Ttl string
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    UdpLength string
    Length of the UDP payload.
    ___id_ double
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ string
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ string
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    Bytes string
    Total number of bytes processed in the flow.
    DstAddress string
    The destination IP address of the flow.
    DstAddressMask string
    Network mask for the destination address.
    DstMacAddress string
    Destination MAC address.
    DstPort string
    Destination port number.
    FirstForwarded string
    Timestamp of the first packet forwarded in a flow.
    Gateway string
    IP address of the gateway through which the flow was routed.
    IcmpCode string
    ICMP code for error messaging and operational information.
    IcmpType string
    Type of ICMP message, important for diagnostic messages.
    IgmpType string
    Type of Internet Group Management Protocol operation.
    InInterface string
    Interface through which packets of the flow are received.
    IpHeaderLength string
    Length of the IP header.
    IpTotalLenght string
    Length of the IP packet in bytes.
    IpTrafficFlowIpfixId string
    The ID of this resource.
    Ipv6FlowLabel string
    Label field from an IPv6 header, used to classify flows.
    IsMulticast string
    Indicates whether the flow is a multicast flow.
    LastForwarded string
    Timestamp of the last packet forwarded in a flow.
    NatDstAddress string
    Translated destination IP address by NAT.
    NatDstPort string
    Translated destination port number by NAT.
    NatEvents string
    Events related to Network Address Translation for the flow.
    NatSrcAddress string
    Translated source IP address by NAT.
    NatSrcPort string
    Translated source port number by NAT.
    OutInterface string
    Interface through which packets of the flow are sent out.
    Packets string
    Number of packets processed in the flow.
    Protocol string
    Protocol number (e.g., TCP, UDP, ICMP).
    SrcAddress string
    The source IP address of the flow.
    SrcAddressMask string
    Network mask for the source address, useful in summarizing data.
    SrcMacAddress string
    Source MAC address.
    SrcPort string
    Source port number.
    SysInitTime string
    System initialization time, can be used for timing analysis.
    TcpAckNum string
    Acknowledgment number in a TCP connection.
    TcpFlags string
    Flags from the TCP header (e.g., SYN, ACK).
    TcpSeqNum string
    Sequence number in a TCP connection.
    TcpWindowSize string
    Window size in a TCP connection, indicating the scale of received data buffering.
    Tos string
    Type of Service field in the IP header, indicating priority and handling of the packet.
    Ttl string
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    UdpLength string
    Length of the UDP payload.
    ___id_ float64
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ string
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ string
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    ___id_ Double
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ String
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ String
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes String
    Total number of bytes processed in the flow.
    dstAddress String
    The destination IP address of the flow.
    dstAddressMask String
    Network mask for the destination address.
    dstMacAddress String
    Destination MAC address.
    dstPort String
    Destination port number.
    firstForwarded String
    Timestamp of the first packet forwarded in a flow.
    gateway String
    IP address of the gateway through which the flow was routed.
    icmpCode String
    ICMP code for error messaging and operational information.
    icmpType String
    Type of ICMP message, important for diagnostic messages.
    igmpType String
    Type of Internet Group Management Protocol operation.
    inInterface String
    Interface through which packets of the flow are received.
    ipHeaderLength String
    Length of the IP header.
    ipTotalLenght String
    Length of the IP packet in bytes.
    ipTrafficFlowIpfixId String
    The ID of this resource.
    ipv6FlowLabel String
    Label field from an IPv6 header, used to classify flows.
    isMulticast String
    Indicates whether the flow is a multicast flow.
    lastForwarded String
    Timestamp of the last packet forwarded in a flow.
    natDstAddress String
    Translated destination IP address by NAT.
    natDstPort String
    Translated destination port number by NAT.
    natEvents String
    Events related to Network Address Translation for the flow.
    natSrcAddress String
    Translated source IP address by NAT.
    natSrcPort String
    Translated source port number by NAT.
    outInterface String
    Interface through which packets of the flow are sent out.
    packets String
    Number of packets processed in the flow.
    protocol String
    Protocol number (e.g., TCP, UDP, ICMP).
    srcAddress String
    The source IP address of the flow.
    srcAddressMask String
    Network mask for the source address, useful in summarizing data.
    srcMacAddress String
    Source MAC address.
    srcPort String
    Source port number.
    sysInitTime String
    System initialization time, can be used for timing analysis.
    tcpAckNum String
    Acknowledgment number in a TCP connection.
    tcpFlags String
    Flags from the TCP header (e.g., SYN, ACK).
    tcpSeqNum String
    Sequence number in a TCP connection.
    tcpWindowSize String
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos String
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl String
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udpLength String
    Length of the UDP payload.
    ___id_ number
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ string
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ string
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes string
    Total number of bytes processed in the flow.
    dstAddress string
    The destination IP address of the flow.
    dstAddressMask string
    Network mask for the destination address.
    dstMacAddress string
    Destination MAC address.
    dstPort string
    Destination port number.
    firstForwarded string
    Timestamp of the first packet forwarded in a flow.
    gateway string
    IP address of the gateway through which the flow was routed.
    icmpCode string
    ICMP code for error messaging and operational information.
    icmpType string
    Type of ICMP message, important for diagnostic messages.
    igmpType string
    Type of Internet Group Management Protocol operation.
    inInterface string
    Interface through which packets of the flow are received.
    ipHeaderLength string
    Length of the IP header.
    ipTotalLenght string
    Length of the IP packet in bytes.
    ipTrafficFlowIpfixId string
    The ID of this resource.
    ipv6FlowLabel string
    Label field from an IPv6 header, used to classify flows.
    isMulticast string
    Indicates whether the flow is a multicast flow.
    lastForwarded string
    Timestamp of the last packet forwarded in a flow.
    natDstAddress string
    Translated destination IP address by NAT.
    natDstPort string
    Translated destination port number by NAT.
    natEvents string
    Events related to Network Address Translation for the flow.
    natSrcAddress string
    Translated source IP address by NAT.
    natSrcPort string
    Translated source port number by NAT.
    outInterface string
    Interface through which packets of the flow are sent out.
    packets string
    Number of packets processed in the flow.
    protocol string
    Protocol number (e.g., TCP, UDP, ICMP).
    srcAddress string
    The source IP address of the flow.
    srcAddressMask string
    Network mask for the source address, useful in summarizing data.
    srcMacAddress string
    Source MAC address.
    srcPort string
    Source port number.
    sysInitTime string
    System initialization time, can be used for timing analysis.
    tcpAckNum string
    Acknowledgment number in a TCP connection.
    tcpFlags string
    Flags from the TCP header (e.g., SYN, ACK).
    tcpSeqNum string
    Sequence number in a TCP connection.
    tcpWindowSize string
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos string
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl string
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udpLength string
    Length of the UDP payload.
    ___id_ float
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ str
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ str
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes str
    Total number of bytes processed in the flow.
    dst_address str
    The destination IP address of the flow.
    dst_address_mask str
    Network mask for the destination address.
    dst_mac_address str
    Destination MAC address.
    dst_port str
    Destination port number.
    first_forwarded str
    Timestamp of the first packet forwarded in a flow.
    gateway str
    IP address of the gateway through which the flow was routed.
    icmp_code str
    ICMP code for error messaging and operational information.
    icmp_type str
    Type of ICMP message, important for diagnostic messages.
    igmp_type str
    Type of Internet Group Management Protocol operation.
    in_interface str
    Interface through which packets of the flow are received.
    ip_header_length str
    Length of the IP header.
    ip_total_lenght str
    Length of the IP packet in bytes.
    ip_traffic_flow_ipfix_id str
    The ID of this resource.
    ipv6_flow_label str
    Label field from an IPv6 header, used to classify flows.
    is_multicast str
    Indicates whether the flow is a multicast flow.
    last_forwarded str
    Timestamp of the last packet forwarded in a flow.
    nat_dst_address str
    Translated destination IP address by NAT.
    nat_dst_port str
    Translated destination port number by NAT.
    nat_events str
    Events related to Network Address Translation for the flow.
    nat_src_address str
    Translated source IP address by NAT.
    nat_src_port str
    Translated source port number by NAT.
    out_interface str
    Interface through which packets of the flow are sent out.
    packets str
    Number of packets processed in the flow.
    protocol str
    Protocol number (e.g., TCP, UDP, ICMP).
    src_address str
    The source IP address of the flow.
    src_address_mask str
    Network mask for the source address, useful in summarizing data.
    src_mac_address str
    Source MAC address.
    src_port str
    Source port number.
    sys_init_time str
    System initialization time, can be used for timing analysis.
    tcp_ack_num str
    Acknowledgment number in a TCP connection.
    tcp_flags str
    Flags from the TCP header (e.g., SYN, ACK).
    tcp_seq_num str
    Sequence number in a TCP connection.
    tcp_window_size str
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos str
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl str
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udp_length str
    Length of the UDP payload.
    ___id_ Number
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ String
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ String
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes String
    Total number of bytes processed in the flow.
    dstAddress String
    The destination IP address of the flow.
    dstAddressMask String
    Network mask for the destination address.
    dstMacAddress String
    Destination MAC address.
    dstPort String
    Destination port number.
    firstForwarded String
    Timestamp of the first packet forwarded in a flow.
    gateway String
    IP address of the gateway through which the flow was routed.
    icmpCode String
    ICMP code for error messaging and operational information.
    icmpType String
    Type of ICMP message, important for diagnostic messages.
    igmpType String
    Type of Internet Group Management Protocol operation.
    inInterface String
    Interface through which packets of the flow are received.
    ipHeaderLength String
    Length of the IP header.
    ipTotalLenght String
    Length of the IP packet in bytes.
    ipTrafficFlowIpfixId String
    The ID of this resource.
    ipv6FlowLabel String
    Label field from an IPv6 header, used to classify flows.
    isMulticast String
    Indicates whether the flow is a multicast flow.
    lastForwarded String
    Timestamp of the last packet forwarded in a flow.
    natDstAddress String
    Translated destination IP address by NAT.
    natDstPort String
    Translated destination port number by NAT.
    natEvents String
    Events related to Network Address Translation for the flow.
    natSrcAddress String
    Translated source IP address by NAT.
    natSrcPort String
    Translated source port number by NAT.
    outInterface String
    Interface through which packets of the flow are sent out.
    packets String
    Number of packets processed in the flow.
    protocol String
    Protocol number (e.g., TCP, UDP, ICMP).
    srcAddress String
    The source IP address of the flow.
    srcAddressMask String
    Network mask for the source address, useful in summarizing data.
    srcMacAddress String
    Source MAC address.
    srcPort String
    Source port number.
    sysInitTime String
    System initialization time, can be used for timing analysis.
    tcpAckNum String
    Acknowledgment number in a TCP connection.
    tcpFlags String
    Flags from the TCP header (e.g., SYN, ACK).
    tcpSeqNum String
    Sequence number in a TCP connection.
    tcpWindowSize String
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos String
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl String
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udpLength String
    Length of the UDP payload.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IpTrafficFlowIpfix resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing IpTrafficFlowIpfix Resource

    Get an existing IpTrafficFlowIpfix resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IpTrafficFlowIpfixState, opts?: CustomResourceOptions): IpTrafficFlowIpfix
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ___id_: Optional[float] = None,
            ___path_: Optional[str] = None,
            ___unset_: Optional[str] = None,
            bytes: Optional[str] = None,
            dst_address: Optional[str] = None,
            dst_address_mask: Optional[str] = None,
            dst_mac_address: Optional[str] = None,
            dst_port: Optional[str] = None,
            first_forwarded: Optional[str] = None,
            gateway: Optional[str] = None,
            icmp_code: Optional[str] = None,
            icmp_type: Optional[str] = None,
            igmp_type: Optional[str] = None,
            in_interface: Optional[str] = None,
            ip_header_length: Optional[str] = None,
            ip_total_lenght: Optional[str] = None,
            ip_traffic_flow_ipfix_id: Optional[str] = None,
            ipv6_flow_label: Optional[str] = None,
            is_multicast: Optional[str] = None,
            last_forwarded: Optional[str] = None,
            nat_dst_address: Optional[str] = None,
            nat_dst_port: Optional[str] = None,
            nat_events: Optional[str] = None,
            nat_src_address: Optional[str] = None,
            nat_src_port: Optional[str] = None,
            out_interface: Optional[str] = None,
            packets: Optional[str] = None,
            protocol: Optional[str] = None,
            src_address: Optional[str] = None,
            src_address_mask: Optional[str] = None,
            src_mac_address: Optional[str] = None,
            src_port: Optional[str] = None,
            sys_init_time: Optional[str] = None,
            tcp_ack_num: Optional[str] = None,
            tcp_flags: Optional[str] = None,
            tcp_seq_num: Optional[str] = None,
            tcp_window_size: Optional[str] = None,
            tos: Optional[str] = None,
            ttl: Optional[str] = None,
            udp_length: Optional[str] = None) -> IpTrafficFlowIpfix
    func GetIpTrafficFlowIpfix(ctx *Context, name string, id IDInput, state *IpTrafficFlowIpfixState, opts ...ResourceOption) (*IpTrafficFlowIpfix, error)
    public static IpTrafficFlowIpfix Get(string name, Input<string> id, IpTrafficFlowIpfixState? state, CustomResourceOptions? opts = null)
    public static IpTrafficFlowIpfix get(String name, Output<String> id, IpTrafficFlowIpfixState state, CustomResourceOptions options)
    resources:  _:    type: routeros:IpTrafficFlowIpfix    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Bytes string
    Total number of bytes processed in the flow.
    DstAddress string
    The destination IP address of the flow.
    DstAddressMask string
    Network mask for the destination address.
    DstMacAddress string
    Destination MAC address.
    DstPort string
    Destination port number.
    FirstForwarded string
    Timestamp of the first packet forwarded in a flow.
    Gateway string
    IP address of the gateway through which the flow was routed.
    IcmpCode string
    ICMP code for error messaging and operational information.
    IcmpType string
    Type of ICMP message, important for diagnostic messages.
    IgmpType string
    Type of Internet Group Management Protocol operation.
    InInterface string
    Interface through which packets of the flow are received.
    IpHeaderLength string
    Length of the IP header.
    IpTotalLenght string
    Length of the IP packet in bytes.
    IpTrafficFlowIpfixId string
    The ID of this resource.
    Ipv6FlowLabel string
    Label field from an IPv6 header, used to classify flows.
    IsMulticast string
    Indicates whether the flow is a multicast flow.
    LastForwarded string
    Timestamp of the last packet forwarded in a flow.
    NatDstAddress string
    Translated destination IP address by NAT.
    NatDstPort string
    Translated destination port number by NAT.
    NatEvents string
    Events related to Network Address Translation for the flow.
    NatSrcAddress string
    Translated source IP address by NAT.
    NatSrcPort string
    Translated source port number by NAT.
    OutInterface string
    Interface through which packets of the flow are sent out.
    Packets string
    Number of packets processed in the flow.
    Protocol string
    Protocol number (e.g., TCP, UDP, ICMP).
    SrcAddress string
    The source IP address of the flow.
    SrcAddressMask string
    Network mask for the source address, useful in summarizing data.
    SrcMacAddress string
    Source MAC address.
    SrcPort string
    Source port number.
    SysInitTime string
    System initialization time, can be used for timing analysis.
    TcpAckNum string
    Acknowledgment number in a TCP connection.
    TcpFlags string
    Flags from the TCP header (e.g., SYN, ACK).
    TcpSeqNum string
    Sequence number in a TCP connection.
    TcpWindowSize string
    Window size in a TCP connection, indicating the scale of received data buffering.
    Tos string
    Type of Service field in the IP header, indicating priority and handling of the packet.
    Ttl string
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    UdpLength string
    Length of the UDP payload.
    ___id_ double
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ string
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ string
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    Bytes string
    Total number of bytes processed in the flow.
    DstAddress string
    The destination IP address of the flow.
    DstAddressMask string
    Network mask for the destination address.
    DstMacAddress string
    Destination MAC address.
    DstPort string
    Destination port number.
    FirstForwarded string
    Timestamp of the first packet forwarded in a flow.
    Gateway string
    IP address of the gateway through which the flow was routed.
    IcmpCode string
    ICMP code for error messaging and operational information.
    IcmpType string
    Type of ICMP message, important for diagnostic messages.
    IgmpType string
    Type of Internet Group Management Protocol operation.
    InInterface string
    Interface through which packets of the flow are received.
    IpHeaderLength string
    Length of the IP header.
    IpTotalLenght string
    Length of the IP packet in bytes.
    IpTrafficFlowIpfixId string
    The ID of this resource.
    Ipv6FlowLabel string
    Label field from an IPv6 header, used to classify flows.
    IsMulticast string
    Indicates whether the flow is a multicast flow.
    LastForwarded string
    Timestamp of the last packet forwarded in a flow.
    NatDstAddress string
    Translated destination IP address by NAT.
    NatDstPort string
    Translated destination port number by NAT.
    NatEvents string
    Events related to Network Address Translation for the flow.
    NatSrcAddress string
    Translated source IP address by NAT.
    NatSrcPort string
    Translated source port number by NAT.
    OutInterface string
    Interface through which packets of the flow are sent out.
    Packets string
    Number of packets processed in the flow.
    Protocol string
    Protocol number (e.g., TCP, UDP, ICMP).
    SrcAddress string
    The source IP address of the flow.
    SrcAddressMask string
    Network mask for the source address, useful in summarizing data.
    SrcMacAddress string
    Source MAC address.
    SrcPort string
    Source port number.
    SysInitTime string
    System initialization time, can be used for timing analysis.
    TcpAckNum string
    Acknowledgment number in a TCP connection.
    TcpFlags string
    Flags from the TCP header (e.g., SYN, ACK).
    TcpSeqNum string
    Sequence number in a TCP connection.
    TcpWindowSize string
    Window size in a TCP connection, indicating the scale of received data buffering.
    Tos string
    Type of Service field in the IP header, indicating priority and handling of the packet.
    Ttl string
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    UdpLength string
    Length of the UDP payload.
    ___id_ float64
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ string
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ string
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    ___id_ Double
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ String
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ String
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes String
    Total number of bytes processed in the flow.
    dstAddress String
    The destination IP address of the flow.
    dstAddressMask String
    Network mask for the destination address.
    dstMacAddress String
    Destination MAC address.
    dstPort String
    Destination port number.
    firstForwarded String
    Timestamp of the first packet forwarded in a flow.
    gateway String
    IP address of the gateway through which the flow was routed.
    icmpCode String
    ICMP code for error messaging and operational information.
    icmpType String
    Type of ICMP message, important for diagnostic messages.
    igmpType String
    Type of Internet Group Management Protocol operation.
    inInterface String
    Interface through which packets of the flow are received.
    ipHeaderLength String
    Length of the IP header.
    ipTotalLenght String
    Length of the IP packet in bytes.
    ipTrafficFlowIpfixId String
    The ID of this resource.
    ipv6FlowLabel String
    Label field from an IPv6 header, used to classify flows.
    isMulticast String
    Indicates whether the flow is a multicast flow.
    lastForwarded String
    Timestamp of the last packet forwarded in a flow.
    natDstAddress String
    Translated destination IP address by NAT.
    natDstPort String
    Translated destination port number by NAT.
    natEvents String
    Events related to Network Address Translation for the flow.
    natSrcAddress String
    Translated source IP address by NAT.
    natSrcPort String
    Translated source port number by NAT.
    outInterface String
    Interface through which packets of the flow are sent out.
    packets String
    Number of packets processed in the flow.
    protocol String
    Protocol number (e.g., TCP, UDP, ICMP).
    srcAddress String
    The source IP address of the flow.
    srcAddressMask String
    Network mask for the source address, useful in summarizing data.
    srcMacAddress String
    Source MAC address.
    srcPort String
    Source port number.
    sysInitTime String
    System initialization time, can be used for timing analysis.
    tcpAckNum String
    Acknowledgment number in a TCP connection.
    tcpFlags String
    Flags from the TCP header (e.g., SYN, ACK).
    tcpSeqNum String
    Sequence number in a TCP connection.
    tcpWindowSize String
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos String
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl String
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udpLength String
    Length of the UDP payload.
    ___id_ number
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ string
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ string
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes string
    Total number of bytes processed in the flow.
    dstAddress string
    The destination IP address of the flow.
    dstAddressMask string
    Network mask for the destination address.
    dstMacAddress string
    Destination MAC address.
    dstPort string
    Destination port number.
    firstForwarded string
    Timestamp of the first packet forwarded in a flow.
    gateway string
    IP address of the gateway through which the flow was routed.
    icmpCode string
    ICMP code for error messaging and operational information.
    icmpType string
    Type of ICMP message, important for diagnostic messages.
    igmpType string
    Type of Internet Group Management Protocol operation.
    inInterface string
    Interface through which packets of the flow are received.
    ipHeaderLength string
    Length of the IP header.
    ipTotalLenght string
    Length of the IP packet in bytes.
    ipTrafficFlowIpfixId string
    The ID of this resource.
    ipv6FlowLabel string
    Label field from an IPv6 header, used to classify flows.
    isMulticast string
    Indicates whether the flow is a multicast flow.
    lastForwarded string
    Timestamp of the last packet forwarded in a flow.
    natDstAddress string
    Translated destination IP address by NAT.
    natDstPort string
    Translated destination port number by NAT.
    natEvents string
    Events related to Network Address Translation for the flow.
    natSrcAddress string
    Translated source IP address by NAT.
    natSrcPort string
    Translated source port number by NAT.
    outInterface string
    Interface through which packets of the flow are sent out.
    packets string
    Number of packets processed in the flow.
    protocol string
    Protocol number (e.g., TCP, UDP, ICMP).
    srcAddress string
    The source IP address of the flow.
    srcAddressMask string
    Network mask for the source address, useful in summarizing data.
    srcMacAddress string
    Source MAC address.
    srcPort string
    Source port number.
    sysInitTime string
    System initialization time, can be used for timing analysis.
    tcpAckNum string
    Acknowledgment number in a TCP connection.
    tcpFlags string
    Flags from the TCP header (e.g., SYN, ACK).
    tcpSeqNum string
    Sequence number in a TCP connection.
    tcpWindowSize string
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos string
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl string
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udpLength string
    Length of the UDP payload.
    ___id_ float
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ str
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ str
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes str
    Total number of bytes processed in the flow.
    dst_address str
    The destination IP address of the flow.
    dst_address_mask str
    Network mask for the destination address.
    dst_mac_address str
    Destination MAC address.
    dst_port str
    Destination port number.
    first_forwarded str
    Timestamp of the first packet forwarded in a flow.
    gateway str
    IP address of the gateway through which the flow was routed.
    icmp_code str
    ICMP code for error messaging and operational information.
    icmp_type str
    Type of ICMP message, important for diagnostic messages.
    igmp_type str
    Type of Internet Group Management Protocol operation.
    in_interface str
    Interface through which packets of the flow are received.
    ip_header_length str
    Length of the IP header.
    ip_total_lenght str
    Length of the IP packet in bytes.
    ip_traffic_flow_ipfix_id str
    The ID of this resource.
    ipv6_flow_label str
    Label field from an IPv6 header, used to classify flows.
    is_multicast str
    Indicates whether the flow is a multicast flow.
    last_forwarded str
    Timestamp of the last packet forwarded in a flow.
    nat_dst_address str
    Translated destination IP address by NAT.
    nat_dst_port str
    Translated destination port number by NAT.
    nat_events str
    Events related to Network Address Translation for the flow.
    nat_src_address str
    Translated source IP address by NAT.
    nat_src_port str
    Translated source port number by NAT.
    out_interface str
    Interface through which packets of the flow are sent out.
    packets str
    Number of packets processed in the flow.
    protocol str
    Protocol number (e.g., TCP, UDP, ICMP).
    src_address str
    The source IP address of the flow.
    src_address_mask str
    Network mask for the source address, useful in summarizing data.
    src_mac_address str
    Source MAC address.
    src_port str
    Source port number.
    sys_init_time str
    System initialization time, can be used for timing analysis.
    tcp_ack_num str
    Acknowledgment number in a TCP connection.
    tcp_flags str
    Flags from the TCP header (e.g., SYN, ACK).
    tcp_seq_num str
    Sequence number in a TCP connection.
    tcp_window_size str
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos str
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl str
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udp_length str
    Length of the UDP payload.
    ___id_ Number
    Resource ID type (.id / name). This is an internal service field, setting a value is not required.
    ___path_ String
    Resource path for CRUD operations. This is an internal service field, setting a value is not required.
    ___unset_ String
    A set of fields that require setting/unsetting. This is an internal service field, setting a value is not required.
    bytes String
    Total number of bytes processed in the flow.
    dstAddress String
    The destination IP address of the flow.
    dstAddressMask String
    Network mask for the destination address.
    dstMacAddress String
    Destination MAC address.
    dstPort String
    Destination port number.
    firstForwarded String
    Timestamp of the first packet forwarded in a flow.
    gateway String
    IP address of the gateway through which the flow was routed.
    icmpCode String
    ICMP code for error messaging and operational information.
    icmpType String
    Type of ICMP message, important for diagnostic messages.
    igmpType String
    Type of Internet Group Management Protocol operation.
    inInterface String
    Interface through which packets of the flow are received.
    ipHeaderLength String
    Length of the IP header.
    ipTotalLenght String
    Length of the IP packet in bytes.
    ipTrafficFlowIpfixId String
    The ID of this resource.
    ipv6FlowLabel String
    Label field from an IPv6 header, used to classify flows.
    isMulticast String
    Indicates whether the flow is a multicast flow.
    lastForwarded String
    Timestamp of the last packet forwarded in a flow.
    natDstAddress String
    Translated destination IP address by NAT.
    natDstPort String
    Translated destination port number by NAT.
    natEvents String
    Events related to Network Address Translation for the flow.
    natSrcAddress String
    Translated source IP address by NAT.
    natSrcPort String
    Translated source port number by NAT.
    outInterface String
    Interface through which packets of the flow are sent out.
    packets String
    Number of packets processed in the flow.
    protocol String
    Protocol number (e.g., TCP, UDP, ICMP).
    srcAddress String
    The source IP address of the flow.
    srcAddressMask String
    Network mask for the source address, useful in summarizing data.
    srcMacAddress String
    Source MAC address.
    srcPort String
    Source port number.
    sysInitTime String
    System initialization time, can be used for timing analysis.
    tcpAckNum String
    Acknowledgment number in a TCP connection.
    tcpFlags String
    Flags from the TCP header (e.g., SYN, ACK).
    tcpSeqNum String
    Sequence number in a TCP connection.
    tcpWindowSize String
    Window size in a TCP connection, indicating the scale of received data buffering.
    tos String
    Type of Service field in the IP header, indicating priority and handling of the packet.
    ttl String
    Time To Live for the packet, decremented by each router to prevent infinite loops.
    udpLength String
    Length of the UDP payload.

    Import

    $ pulumi import routeros:index/ipTrafficFlowIpfix:IpTrafficFlowIpfix test .
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    routeros terraform-routeros/terraform-provider-routeros
    License
    Notes
    This Pulumi package is based on the routeros Terraform Provider.
    routeros logo
    routeros 1.98.0 published on Monday, Dec 8, 2025 by terraform-routeros
      Meet Neo: Your AI Platform Teammate