1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Vdomnetflow
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.system.Vdomnetflow

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    Configure NetFlow per VDOM.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.system.Vdomnetflow("trname", {
        collectorIp: "0.0.0.0",
        collectorPort: 2055,
        sourceIp: "0.0.0.0",
        vdomNetflow: "disable",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.system.Vdomnetflow("trname",
        collector_ip="0.0.0.0",
        collector_port=2055,
        source_ip="0.0.0.0",
        vdom_netflow="disable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := system.NewVdomnetflow(ctx, "trname", &system.VdomnetflowArgs{
    			CollectorIp:   pulumi.String("0.0.0.0"),
    			CollectorPort: pulumi.Int(2055),
    			SourceIp:      pulumi.String("0.0.0.0"),
    			VdomNetflow:   pulumi.String("disable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.System.Vdomnetflow("trname", new()
        {
            CollectorIp = "0.0.0.0",
            CollectorPort = 2055,
            SourceIp = "0.0.0.0",
            VdomNetflow = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.system.Vdomnetflow;
    import com.pulumi.fortios.system.VdomnetflowArgs;
    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 trname = new Vdomnetflow("trname", VdomnetflowArgs.builder()
                .collectorIp("0.0.0.0")
                .collectorPort(2055)
                .sourceIp("0.0.0.0")
                .vdomNetflow("disable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:system:Vdomnetflow
        properties:
          collectorIp: 0.0.0.0
          collectorPort: 2055
          sourceIp: 0.0.0.0
          vdomNetflow: disable
    

    Create Vdomnetflow Resource

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

    Constructor syntax

    new Vdomnetflow(name: string, args?: VdomnetflowArgs, opts?: CustomResourceOptions);
    @overload
    def Vdomnetflow(resource_name: str,
                    args: Optional[VdomnetflowArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Vdomnetflow(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    collector_ip: Optional[str] = None,
                    collector_port: Optional[int] = None,
                    collectors: Optional[Sequence[VdomnetflowCollectorArgs]] = None,
                    dynamic_sort_subtable: Optional[str] = None,
                    get_all_tables: Optional[str] = None,
                    interface: Optional[str] = None,
                    interface_select_method: Optional[str] = None,
                    source_ip: Optional[str] = None,
                    vdom_netflow: Optional[str] = None,
                    vdomparam: Optional[str] = None)
    func NewVdomnetflow(ctx *Context, name string, args *VdomnetflowArgs, opts ...ResourceOption) (*Vdomnetflow, error)
    public Vdomnetflow(string name, VdomnetflowArgs? args = null, CustomResourceOptions? opts = null)
    public Vdomnetflow(String name, VdomnetflowArgs args)
    public Vdomnetflow(String name, VdomnetflowArgs args, CustomResourceOptions options)
    
    type: fortios:system:Vdomnetflow
    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 VdomnetflowArgs
    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 VdomnetflowArgs
    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 VdomnetflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VdomnetflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VdomnetflowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var vdomnetflowResource = new Fortios.System.Vdomnetflow("vdomnetflowResource", new()
    {
        CollectorIp = "string",
        CollectorPort = 0,
        Collectors = new[]
        {
            new Fortios.System.Inputs.VdomnetflowCollectorArgs
            {
                CollectorIp = "string",
                CollectorPort = 0,
                Id = 0,
                Interface = "string",
                InterfaceSelectMethod = "string",
                SourceIp = "string",
            },
        },
        DynamicSortSubtable = "string",
        GetAllTables = "string",
        Interface = "string",
        InterfaceSelectMethod = "string",
        SourceIp = "string",
        VdomNetflow = "string",
        Vdomparam = "string",
    });
    
    example, err := system.NewVdomnetflow(ctx, "vdomnetflowResource", &system.VdomnetflowArgs{
    	CollectorIp:   pulumi.String("string"),
    	CollectorPort: pulumi.Int(0),
    	Collectors: system.VdomnetflowCollectorArray{
    		&system.VdomnetflowCollectorArgs{
    			CollectorIp:           pulumi.String("string"),
    			CollectorPort:         pulumi.Int(0),
    			Id:                    pulumi.Int(0),
    			Interface:             pulumi.String("string"),
    			InterfaceSelectMethod: pulumi.String("string"),
    			SourceIp:              pulumi.String("string"),
    		},
    	},
    	DynamicSortSubtable:   pulumi.String("string"),
    	GetAllTables:          pulumi.String("string"),
    	Interface:             pulumi.String("string"),
    	InterfaceSelectMethod: pulumi.String("string"),
    	SourceIp:              pulumi.String("string"),
    	VdomNetflow:           pulumi.String("string"),
    	Vdomparam:             pulumi.String("string"),
    })
    
    var vdomnetflowResource = new Vdomnetflow("vdomnetflowResource", VdomnetflowArgs.builder()
        .collectorIp("string")
        .collectorPort(0)
        .collectors(VdomnetflowCollectorArgs.builder()
            .collectorIp("string")
            .collectorPort(0)
            .id(0)
            .interface_("string")
            .interfaceSelectMethod("string")
            .sourceIp("string")
            .build())
        .dynamicSortSubtable("string")
        .getAllTables("string")
        .interface_("string")
        .interfaceSelectMethod("string")
        .sourceIp("string")
        .vdomNetflow("string")
        .vdomparam("string")
        .build());
    
    vdomnetflow_resource = fortios.system.Vdomnetflow("vdomnetflowResource",
        collector_ip="string",
        collector_port=0,
        collectors=[fortios.system.VdomnetflowCollectorArgs(
            collector_ip="string",
            collector_port=0,
            id=0,
            interface="string",
            interface_select_method="string",
            source_ip="string",
        )],
        dynamic_sort_subtable="string",
        get_all_tables="string",
        interface="string",
        interface_select_method="string",
        source_ip="string",
        vdom_netflow="string",
        vdomparam="string")
    
    const vdomnetflowResource = new fortios.system.Vdomnetflow("vdomnetflowResource", {
        collectorIp: "string",
        collectorPort: 0,
        collectors: [{
            collectorIp: "string",
            collectorPort: 0,
            id: 0,
            "interface": "string",
            interfaceSelectMethod: "string",
            sourceIp: "string",
        }],
        dynamicSortSubtable: "string",
        getAllTables: "string",
        "interface": "string",
        interfaceSelectMethod: "string",
        sourceIp: "string",
        vdomNetflow: "string",
        vdomparam: "string",
    });
    
    type: fortios:system:Vdomnetflow
    properties:
        collectorIp: string
        collectorPort: 0
        collectors:
            - collectorIp: string
              collectorPort: 0
              id: 0
              interface: string
              interfaceSelectMethod: string
              sourceIp: string
        dynamicSortSubtable: string
        getAllTables: string
        interface: string
        interfaceSelectMethod: string
        sourceIp: string
        vdomNetflow: string
        vdomparam: string
    

    Vdomnetflow Resource Properties

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

    Inputs

    The Vdomnetflow resource accepts the following input properties:

    CollectorIp string
    NetFlow collector IP address.
    CollectorPort int
    NetFlow collector port number.
    Collectors List<Pulumiverse.Fortios.System.Inputs.VdomnetflowCollector>
    Netflow collectors. The structure of collectors block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    SourceIp string
    Source IP address for communication with the NetFlow agent.
    VdomNetflow string
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    CollectorIp string
    NetFlow collector IP address.
    CollectorPort int
    NetFlow collector port number.
    Collectors []VdomnetflowCollectorArgs
    Netflow collectors. The structure of collectors block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    SourceIp string
    Source IP address for communication with the NetFlow agent.
    VdomNetflow string
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collectorIp String
    NetFlow collector IP address.
    collectorPort Integer
    NetFlow collector port number.
    collectors List<VdomnetflowCollector>
    Netflow collectors. The structure of collectors block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    sourceIp String
    Source IP address for communication with the NetFlow agent.
    vdomNetflow String
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collectorIp string
    NetFlow collector IP address.
    collectorPort number
    NetFlow collector port number.
    collectors VdomnetflowCollector[]
    Netflow collectors. The structure of collectors block is documented below.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    sourceIp string
    Source IP address for communication with the NetFlow agent.
    vdomNetflow string
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collector_ip str
    NetFlow collector IP address.
    collector_port int
    NetFlow collector port number.
    collectors Sequence[VdomnetflowCollectorArgs]
    Netflow collectors. The structure of collectors block is documented below.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    source_ip str
    Source IP address for communication with the NetFlow agent.
    vdom_netflow str
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collectorIp String
    NetFlow collector IP address.
    collectorPort Number
    NetFlow collector port number.
    collectors List<Property Map>
    Netflow collectors. The structure of collectors block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    sourceIp String
    Source IP address for communication with the NetFlow agent.
    vdomNetflow String
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Vdomnetflow 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 Vdomnetflow Resource

    Get an existing Vdomnetflow 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?: VdomnetflowState, opts?: CustomResourceOptions): Vdomnetflow
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            collector_ip: Optional[str] = None,
            collector_port: Optional[int] = None,
            collectors: Optional[Sequence[VdomnetflowCollectorArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            interface: Optional[str] = None,
            interface_select_method: Optional[str] = None,
            source_ip: Optional[str] = None,
            vdom_netflow: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Vdomnetflow
    func GetVdomnetflow(ctx *Context, name string, id IDInput, state *VdomnetflowState, opts ...ResourceOption) (*Vdomnetflow, error)
    public static Vdomnetflow Get(string name, Input<string> id, VdomnetflowState? state, CustomResourceOptions? opts = null)
    public static Vdomnetflow get(String name, Output<String> id, VdomnetflowState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    CollectorIp string
    NetFlow collector IP address.
    CollectorPort int
    NetFlow collector port number.
    Collectors List<Pulumiverse.Fortios.System.Inputs.VdomnetflowCollector>
    Netflow collectors. The structure of collectors block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    SourceIp string
    Source IP address for communication with the NetFlow agent.
    VdomNetflow string
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    CollectorIp string
    NetFlow collector IP address.
    CollectorPort int
    NetFlow collector port number.
    Collectors []VdomnetflowCollectorArgs
    Netflow collectors. The structure of collectors block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    SourceIp string
    Source IP address for communication with the NetFlow agent.
    VdomNetflow string
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collectorIp String
    NetFlow collector IP address.
    collectorPort Integer
    NetFlow collector port number.
    collectors List<VdomnetflowCollector>
    Netflow collectors. The structure of collectors block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    sourceIp String
    Source IP address for communication with the NetFlow agent.
    vdomNetflow String
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collectorIp string
    NetFlow collector IP address.
    collectorPort number
    NetFlow collector port number.
    collectors VdomnetflowCollector[]
    Netflow collectors. The structure of collectors block is documented below.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    sourceIp string
    Source IP address for communication with the NetFlow agent.
    vdomNetflow string
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collector_ip str
    NetFlow collector IP address.
    collector_port int
    NetFlow collector port number.
    collectors Sequence[VdomnetflowCollectorArgs]
    Netflow collectors. The structure of collectors block is documented below.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    source_ip str
    Source IP address for communication with the NetFlow agent.
    vdom_netflow str
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    collectorIp String
    NetFlow collector IP address.
    collectorPort Number
    NetFlow collector port number.
    collectors List<Property Map>
    Netflow collectors. The structure of collectors block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    sourceIp String
    Source IP address for communication with the NetFlow agent.
    vdomNetflow String
    Enable/disable NetFlow per VDOM. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Supporting Types

    VdomnetflowCollector, VdomnetflowCollectorArgs

    CollectorIp string
    Collector IP.
    CollectorPort int
    NetFlow collector port number.
    Id int
    ID.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    SourceIp string
    Source IP address for communication with the NetFlow agent.
    CollectorIp string
    Collector IP.
    CollectorPort int
    NetFlow collector port number.
    Id int
    ID.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    SourceIp string
    Source IP address for communication with the NetFlow agent.
    collectorIp String
    Collector IP.
    collectorPort Integer
    NetFlow collector port number.
    id Integer
    ID.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    sourceIp String
    Source IP address for communication with the NetFlow agent.
    collectorIp string
    Collector IP.
    collectorPort number
    NetFlow collector port number.
    id number
    ID.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    sourceIp string
    Source IP address for communication with the NetFlow agent.
    collector_ip str
    Collector IP.
    collector_port int
    NetFlow collector port number.
    id int
    ID.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    source_ip str
    Source IP address for communication with the NetFlow agent.
    collectorIp String
    Collector IP.
    collectorPort Number
    NetFlow collector port number.
    id Number
    ID.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    sourceIp String
    Source IP address for communication with the NetFlow agent.

    Import

    System VdomNetflow can be imported using any of these accepted formats:

    $ pulumi import fortios:system/vdomnetflow:Vdomnetflow labelname SystemVdomNetflow
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:system/vdomnetflow:Vdomnetflow labelname SystemVdomNetflow
    

    $ unset “FORTIOS_IMPORT_TABLE”

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

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse