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.
- Dst
Address string - The destination IP address of the flow.
- Dst
Address stringMask - Network mask for the destination address.
- Dst
Mac stringAddress - Destination MAC address.
- Dst
Port string - Destination port number.
- First
Forwarded string - Timestamp of the first packet forwarded in a flow.
- Gateway string
- IP address of the gateway through which the flow was routed.
- Icmp
Code string - ICMP code for error messaging and operational information.
- Icmp
Type string - Type of ICMP message, important for diagnostic messages.
- Igmp
Type string - Type of Internet Group Management Protocol operation.
- In
Interface string - Interface through which packets of the flow are received.
- Ip
Header stringLength - Length of the IP header.
- Ip
Total stringLenght - Length of the IP packet in bytes.
- Ip
Traffic stringFlow Ipfix Id - The ID of this resource.
- Ipv6Flow
Label string - Label field from an IPv6 header, used to classify flows.
- Is
Multicast string - Indicates whether the flow is a multicast flow.
- Last
Forwarded string - Timestamp of the last packet forwarded in a flow.
- Nat
Dst stringAddress - Translated destination IP address by NAT.
- Nat
Dst stringPort - Translated destination port number by NAT.
- Nat
Events string - Events related to Network Address Translation for the flow.
- Nat
Src stringAddress - Translated source IP address by NAT.
- Nat
Src stringPort - Translated source port number by NAT.
- Out
Interface 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).
- Src
Address string - The source IP address of the flow.
- Src
Address stringMask - Network mask for the source address, useful in summarizing data.
- Src
Mac stringAddress - Source MAC address.
- Src
Port string - Source port number.
- Sys
Init stringTime - System initialization time, can be used for timing analysis.
- Tcp
Ack stringNum - Acknowledgment number in a TCP connection.
- Tcp
Flags string - Flags from the TCP header (e.g., SYN, ACK).
- Tcp
Seq stringNum - Sequence number in a TCP connection.
- Tcp
Window stringSize - 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.
- Udp
Length 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.
- Dst
Address string - The destination IP address of the flow.
- Dst
Address stringMask - Network mask for the destination address.
- Dst
Mac stringAddress - Destination MAC address.
- Dst
Port string - Destination port number.
- First
Forwarded string - Timestamp of the first packet forwarded in a flow.
- Gateway string
- IP address of the gateway through which the flow was routed.
- Icmp
Code string - ICMP code for error messaging and operational information.
- Icmp
Type string - Type of ICMP message, important for diagnostic messages.
- Igmp
Type string - Type of Internet Group Management Protocol operation.
- In
Interface string - Interface through which packets of the flow are received.
- Ip
Header stringLength - Length of the IP header.
- Ip
Total stringLenght - Length of the IP packet in bytes.
- Ip
Traffic stringFlow Ipfix Id - The ID of this resource.
- Ipv6Flow
Label string - Label field from an IPv6 header, used to classify flows.
- Is
Multicast string - Indicates whether the flow is a multicast flow.
- Last
Forwarded string - Timestamp of the last packet forwarded in a flow.
- Nat
Dst stringAddress - Translated destination IP address by NAT.
- Nat
Dst stringPort - Translated destination port number by NAT.
- Nat
Events string - Events related to Network Address Translation for the flow.
- Nat
Src stringAddress - Translated source IP address by NAT.
- Nat
Src stringPort - Translated source port number by NAT.
- Out
Interface 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).
- Src
Address string - The source IP address of the flow.
- Src
Address stringMask - Network mask for the source address, useful in summarizing data.
- Src
Mac stringAddress - Source MAC address.
- Src
Port string - Source port number.
- Sys
Init stringTime - System initialization time, can be used for timing analysis.
- Tcp
Ack stringNum - Acknowledgment number in a TCP connection.
- Tcp
Flags string - Flags from the TCP header (e.g., SYN, ACK).
- Tcp
Seq stringNum - Sequence number in a TCP connection.
- Tcp
Window stringSize - 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.
- Udp
Length 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.
- dst
Address String - The destination IP address of the flow.
- dst
Address StringMask - Network mask for the destination address.
- dst
Mac StringAddress - Destination MAC address.
- dst
Port String - Destination port number.
- first
Forwarded String - Timestamp of the first packet forwarded in a flow.
- gateway String
- IP address of the gateway through which the flow was routed.
- icmp
Code String - ICMP code for error messaging and operational information.
- icmp
Type String - Type of ICMP message, important for diagnostic messages.
- igmp
Type String - Type of Internet Group Management Protocol operation.
- in
Interface String - Interface through which packets of the flow are received.
- ip
Header StringLength - Length of the IP header.
- ip
Total StringLenght - Length of the IP packet in bytes.
- ip
Traffic StringFlow Ipfix Id - The ID of this resource.
- ipv6Flow
Label String - Label field from an IPv6 header, used to classify flows.
- is
Multicast String - Indicates whether the flow is a multicast flow.
- last
Forwarded String - Timestamp of the last packet forwarded in a flow.
- nat
Dst StringAddress - Translated destination IP address by NAT.
- nat
Dst StringPort - Translated destination port number by NAT.
- nat
Events String - Events related to Network Address Translation for the flow.
- nat
Src StringAddress - Translated source IP address by NAT.
- nat
Src StringPort - Translated source port number by NAT.
- out
Interface 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).
- src
Address String - The source IP address of the flow.
- src
Address StringMask - Network mask for the source address, useful in summarizing data.
- src
Mac StringAddress - Source MAC address.
- src
Port String - Source port number.
- sys
Init StringTime - System initialization time, can be used for timing analysis.
- tcp
Ack StringNum - Acknowledgment number in a TCP connection.
- tcp
Flags String - Flags from the TCP header (e.g., SYN, ACK).
- tcp
Seq StringNum - Sequence number in a TCP connection.
- tcp
Window StringSize - 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.
- udp
Length 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.
- dst
Address string - The destination IP address of the flow.
- dst
Address stringMask - Network mask for the destination address.
- dst
Mac stringAddress - Destination MAC address.
- dst
Port string - Destination port number.
- first
Forwarded string - Timestamp of the first packet forwarded in a flow.
- gateway string
- IP address of the gateway through which the flow was routed.
- icmp
Code string - ICMP code for error messaging and operational information.
- icmp
Type string - Type of ICMP message, important for diagnostic messages.
- igmp
Type string - Type of Internet Group Management Protocol operation.
- in
Interface string - Interface through which packets of the flow are received.
- ip
Header stringLength - Length of the IP header.
- ip
Total stringLenght - Length of the IP packet in bytes.
- ip
Traffic stringFlow Ipfix Id - The ID of this resource.
- ipv6Flow
Label string - Label field from an IPv6 header, used to classify flows.
- is
Multicast string - Indicates whether the flow is a multicast flow.
- last
Forwarded string - Timestamp of the last packet forwarded in a flow.
- nat
Dst stringAddress - Translated destination IP address by NAT.
- nat
Dst stringPort - Translated destination port number by NAT.
- nat
Events string - Events related to Network Address Translation for the flow.
- nat
Src stringAddress - Translated source IP address by NAT.
- nat
Src stringPort - Translated source port number by NAT.
- out
Interface 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).
- src
Address string - The source IP address of the flow.
- src
Address stringMask - Network mask for the source address, useful in summarizing data.
- src
Mac stringAddress - Source MAC address.
- src
Port string - Source port number.
- sys
Init stringTime - System initialization time, can be used for timing analysis.
- tcp
Ack stringNum - Acknowledgment number in a TCP connection.
- tcp
Flags string - Flags from the TCP header (e.g., SYN, ACK).
- tcp
Seq stringNum - Sequence number in a TCP connection.
- tcp
Window stringSize - 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.
- udp
Length 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_ strmask - Network mask for the destination address.
- dst_
mac_ straddress - 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_ strlength - Length of the IP header.
- ip_
total_ strlenght - Length of the IP packet in bytes.
- ip_
traffic_ strflow_ ipfix_ id - The ID of this resource.
- ipv6_
flow_ strlabel - 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_ straddress - Translated destination IP address by NAT.
- nat_
dst_ strport - Translated destination port number by NAT.
- nat_
events str - Events related to Network Address Translation for the flow.
- nat_
src_ straddress - Translated source IP address by NAT.
- nat_
src_ strport - 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_ strmask - Network mask for the source address, useful in summarizing data.
- src_
mac_ straddress - Source MAC address.
- src_
port str - Source port number.
- sys_
init_ strtime - System initialization time, can be used for timing analysis.
- tcp_
ack_ strnum - Acknowledgment number in a TCP connection.
- tcp_
flags str - Flags from the TCP header (e.g., SYN, ACK).
- tcp_
seq_ strnum - Sequence number in a TCP connection.
- tcp_
window_ strsize - 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.
- dst
Address String - The destination IP address of the flow.
- dst
Address StringMask - Network mask for the destination address.
- dst
Mac StringAddress - Destination MAC address.
- dst
Port String - Destination port number.
- first
Forwarded String - Timestamp of the first packet forwarded in a flow.
- gateway String
- IP address of the gateway through which the flow was routed.
- icmp
Code String - ICMP code for error messaging and operational information.
- icmp
Type String - Type of ICMP message, important for diagnostic messages.
- igmp
Type String - Type of Internet Group Management Protocol operation.
- in
Interface String - Interface through which packets of the flow are received.
- ip
Header StringLength - Length of the IP header.
- ip
Total StringLenght - Length of the IP packet in bytes.
- ip
Traffic StringFlow Ipfix Id - The ID of this resource.
- ipv6Flow
Label String - Label field from an IPv6 header, used to classify flows.
- is
Multicast String - Indicates whether the flow is a multicast flow.
- last
Forwarded String - Timestamp of the last packet forwarded in a flow.
- nat
Dst StringAddress - Translated destination IP address by NAT.
- nat
Dst StringPort - Translated destination port number by NAT.
- nat
Events String - Events related to Network Address Translation for the flow.
- nat
Src StringAddress - Translated source IP address by NAT.
- nat
Src StringPort - Translated source port number by NAT.
- out
Interface 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).
- src
Address String - The source IP address of the flow.
- src
Address StringMask - Network mask for the source address, useful in summarizing data.
- src
Mac StringAddress - Source MAC address.
- src
Port String - Source port number.
- sys
Init StringTime - System initialization time, can be used for timing analysis.
- tcp
Ack StringNum - Acknowledgment number in a TCP connection.
- tcp
Flags String - Flags from the TCP header (e.g., SYN, ACK).
- tcp
Seq StringNum - Sequence number in a TCP connection.
- tcp
Window StringSize - 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.
- udp
Length 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) -> IpTrafficFlowIpfixfunc 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.
- Bytes string
- Total number of bytes processed in the flow.
- Dst
Address string - The destination IP address of the flow.
- Dst
Address stringMask - Network mask for the destination address.
- Dst
Mac stringAddress - Destination MAC address.
- Dst
Port string - Destination port number.
- First
Forwarded string - Timestamp of the first packet forwarded in a flow.
- Gateway string
- IP address of the gateway through which the flow was routed.
- Icmp
Code string - ICMP code for error messaging and operational information.
- Icmp
Type string - Type of ICMP message, important for diagnostic messages.
- Igmp
Type string - Type of Internet Group Management Protocol operation.
- In
Interface string - Interface through which packets of the flow are received.
- Ip
Header stringLength - Length of the IP header.
- Ip
Total stringLenght - Length of the IP packet in bytes.
- Ip
Traffic stringFlow Ipfix Id - The ID of this resource.
- Ipv6Flow
Label string - Label field from an IPv6 header, used to classify flows.
- Is
Multicast string - Indicates whether the flow is a multicast flow.
- Last
Forwarded string - Timestamp of the last packet forwarded in a flow.
- Nat
Dst stringAddress - Translated destination IP address by NAT.
- Nat
Dst stringPort - Translated destination port number by NAT.
- Nat
Events string - Events related to Network Address Translation for the flow.
- Nat
Src stringAddress - Translated source IP address by NAT.
- Nat
Src stringPort - Translated source port number by NAT.
- Out
Interface 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).
- Src
Address string - The source IP address of the flow.
- Src
Address stringMask - Network mask for the source address, useful in summarizing data.
- Src
Mac stringAddress - Source MAC address.
- Src
Port string - Source port number.
- Sys
Init stringTime - System initialization time, can be used for timing analysis.
- Tcp
Ack stringNum - Acknowledgment number in a TCP connection.
- Tcp
Flags string - Flags from the TCP header (e.g., SYN, ACK).
- Tcp
Seq stringNum - Sequence number in a TCP connection.
- Tcp
Window stringSize - 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.
- Udp
Length 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.
- Dst
Address string - The destination IP address of the flow.
- Dst
Address stringMask - Network mask for the destination address.
- Dst
Mac stringAddress - Destination MAC address.
- Dst
Port string - Destination port number.
- First
Forwarded string - Timestamp of the first packet forwarded in a flow.
- Gateway string
- IP address of the gateway through which the flow was routed.
- Icmp
Code string - ICMP code for error messaging and operational information.
- Icmp
Type string - Type of ICMP message, important for diagnostic messages.
- Igmp
Type string - Type of Internet Group Management Protocol operation.
- In
Interface string - Interface through which packets of the flow are received.
- Ip
Header stringLength - Length of the IP header.
- Ip
Total stringLenght - Length of the IP packet in bytes.
- Ip
Traffic stringFlow Ipfix Id - The ID of this resource.
- Ipv6Flow
Label string - Label field from an IPv6 header, used to classify flows.
- Is
Multicast string - Indicates whether the flow is a multicast flow.
- Last
Forwarded string - Timestamp of the last packet forwarded in a flow.
- Nat
Dst stringAddress - Translated destination IP address by NAT.
- Nat
Dst stringPort - Translated destination port number by NAT.
- Nat
Events string - Events related to Network Address Translation for the flow.
- Nat
Src stringAddress - Translated source IP address by NAT.
- Nat
Src stringPort - Translated source port number by NAT.
- Out
Interface 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).
- Src
Address string - The source IP address of the flow.
- Src
Address stringMask - Network mask for the source address, useful in summarizing data.
- Src
Mac stringAddress - Source MAC address.
- Src
Port string - Source port number.
- Sys
Init stringTime - System initialization time, can be used for timing analysis.
- Tcp
Ack stringNum - Acknowledgment number in a TCP connection.
- Tcp
Flags string - Flags from the TCP header (e.g., SYN, ACK).
- Tcp
Seq stringNum - Sequence number in a TCP connection.
- Tcp
Window stringSize - 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.
- Udp
Length 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.
- dst
Address String - The destination IP address of the flow.
- dst
Address StringMask - Network mask for the destination address.
- dst
Mac StringAddress - Destination MAC address.
- dst
Port String - Destination port number.
- first
Forwarded String - Timestamp of the first packet forwarded in a flow.
- gateway String
- IP address of the gateway through which the flow was routed.
- icmp
Code String - ICMP code for error messaging and operational information.
- icmp
Type String - Type of ICMP message, important for diagnostic messages.
- igmp
Type String - Type of Internet Group Management Protocol operation.
- in
Interface String - Interface through which packets of the flow are received.
- ip
Header StringLength - Length of the IP header.
- ip
Total StringLenght - Length of the IP packet in bytes.
- ip
Traffic StringFlow Ipfix Id - The ID of this resource.
- ipv6Flow
Label String - Label field from an IPv6 header, used to classify flows.
- is
Multicast String - Indicates whether the flow is a multicast flow.
- last
Forwarded String - Timestamp of the last packet forwarded in a flow.
- nat
Dst StringAddress - Translated destination IP address by NAT.
- nat
Dst StringPort - Translated destination port number by NAT.
- nat
Events String - Events related to Network Address Translation for the flow.
- nat
Src StringAddress - Translated source IP address by NAT.
- nat
Src StringPort - Translated source port number by NAT.
- out
Interface 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).
- src
Address String - The source IP address of the flow.
- src
Address StringMask - Network mask for the source address, useful in summarizing data.
- src
Mac StringAddress - Source MAC address.
- src
Port String - Source port number.
- sys
Init StringTime - System initialization time, can be used for timing analysis.
- tcp
Ack StringNum - Acknowledgment number in a TCP connection.
- tcp
Flags String - Flags from the TCP header (e.g., SYN, ACK).
- tcp
Seq StringNum - Sequence number in a TCP connection.
- tcp
Window StringSize - 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.
- udp
Length 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.
- dst
Address string - The destination IP address of the flow.
- dst
Address stringMask - Network mask for the destination address.
- dst
Mac stringAddress - Destination MAC address.
- dst
Port string - Destination port number.
- first
Forwarded string - Timestamp of the first packet forwarded in a flow.
- gateway string
- IP address of the gateway through which the flow was routed.
- icmp
Code string - ICMP code for error messaging and operational information.
- icmp
Type string - Type of ICMP message, important for diagnostic messages.
- igmp
Type string - Type of Internet Group Management Protocol operation.
- in
Interface string - Interface through which packets of the flow are received.
- ip
Header stringLength - Length of the IP header.
- ip
Total stringLenght - Length of the IP packet in bytes.
- ip
Traffic stringFlow Ipfix Id - The ID of this resource.
- ipv6Flow
Label string - Label field from an IPv6 header, used to classify flows.
- is
Multicast string - Indicates whether the flow is a multicast flow.
- last
Forwarded string - Timestamp of the last packet forwarded in a flow.
- nat
Dst stringAddress - Translated destination IP address by NAT.
- nat
Dst stringPort - Translated destination port number by NAT.
- nat
Events string - Events related to Network Address Translation for the flow.
- nat
Src stringAddress - Translated source IP address by NAT.
- nat
Src stringPort - Translated source port number by NAT.
- out
Interface 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).
- src
Address string - The source IP address of the flow.
- src
Address stringMask - Network mask for the source address, useful in summarizing data.
- src
Mac stringAddress - Source MAC address.
- src
Port string - Source port number.
- sys
Init stringTime - System initialization time, can be used for timing analysis.
- tcp
Ack stringNum - Acknowledgment number in a TCP connection.
- tcp
Flags string - Flags from the TCP header (e.g., SYN, ACK).
- tcp
Seq stringNum - Sequence number in a TCP connection.
- tcp
Window stringSize - 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.
- udp
Length 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_ strmask - Network mask for the destination address.
- dst_
mac_ straddress - 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_ strlength - Length of the IP header.
- ip_
total_ strlenght - Length of the IP packet in bytes.
- ip_
traffic_ strflow_ ipfix_ id - The ID of this resource.
- ipv6_
flow_ strlabel - 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_ straddress - Translated destination IP address by NAT.
- nat_
dst_ strport - Translated destination port number by NAT.
- nat_
events str - Events related to Network Address Translation for the flow.
- nat_
src_ straddress - Translated source IP address by NAT.
- nat_
src_ strport - 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_ strmask - Network mask for the source address, useful in summarizing data.
- src_
mac_ straddress - Source MAC address.
- src_
port str - Source port number.
- sys_
init_ strtime - System initialization time, can be used for timing analysis.
- tcp_
ack_ strnum - Acknowledgment number in a TCP connection.
- tcp_
flags str - Flags from the TCP header (e.g., SYN, ACK).
- tcp_
seq_ strnum - Sequence number in a TCP connection.
- tcp_
window_ strsize - 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.
- dst
Address String - The destination IP address of the flow.
- dst
Address StringMask - Network mask for the destination address.
- dst
Mac StringAddress - Destination MAC address.
- dst
Port String - Destination port number.
- first
Forwarded String - Timestamp of the first packet forwarded in a flow.
- gateway String
- IP address of the gateway through which the flow was routed.
- icmp
Code String - ICMP code for error messaging and operational information.
- icmp
Type String - Type of ICMP message, important for diagnostic messages.
- igmp
Type String - Type of Internet Group Management Protocol operation.
- in
Interface String - Interface through which packets of the flow are received.
- ip
Header StringLength - Length of the IP header.
- ip
Total StringLenght - Length of the IP packet in bytes.
- ip
Traffic StringFlow Ipfix Id - The ID of this resource.
- ipv6Flow
Label String - Label field from an IPv6 header, used to classify flows.
- is
Multicast String - Indicates whether the flow is a multicast flow.
- last
Forwarded String - Timestamp of the last packet forwarded in a flow.
- nat
Dst StringAddress - Translated destination IP address by NAT.
- nat
Dst StringPort - Translated destination port number by NAT.
- nat
Events String - Events related to Network Address Translation for the flow.
- nat
Src StringAddress - Translated source IP address by NAT.
- nat
Src StringPort - Translated source port number by NAT.
- out
Interface 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).
- src
Address String - The source IP address of the flow.
- src
Address StringMask - Network mask for the source address, useful in summarizing data.
- src
Mac StringAddress - Source MAC address.
- src
Port String - Source port number.
- sys
Init StringTime - System initialization time, can be used for timing analysis.
- tcp
Ack StringNum - Acknowledgment number in a TCP connection.
- tcp
Flags String - Flags from the TCP header (e.g., SYN, ACK).
- tcp
Seq StringNum - Sequence number in a TCP connection.
- tcp
Window StringSize - 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.
- udp
Length 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
routerosTerraform Provider.
