fortios.dpdk.Global
Explore with Pulumi AI
Configure global DPDK options. Applies to FortiOS Version >= 6.2.4.
Create Global Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Global(name: string, args?: GlobalArgs, opts?: CustomResourceOptions);@overload
def Global(resource_name: str,
           args: Optional[GlobalArgs] = None,
           opts: Optional[ResourceOptions] = None)
@overload
def Global(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           dynamic_sort_subtable: Optional[str] = None,
           elasticbuffer: Optional[str] = None,
           get_all_tables: Optional[str] = None,
           hugepage_percentage: Optional[int] = None,
           interfaces: Optional[Sequence[GlobalInterfaceArgs]] = None,
           ipsec_offload: Optional[str] = None,
           mbufpool_percentage: Optional[int] = None,
           multiqueue: Optional[str] = None,
           per_session_accounting: Optional[str] = None,
           protects: Optional[str] = None,
           sleep_on_idle: Optional[str] = None,
           status: Optional[str] = None,
           vdomparam: Optional[str] = None)func NewGlobal(ctx *Context, name string, args *GlobalArgs, opts ...ResourceOption) (*Global, error)public Global(string name, GlobalArgs? args = null, CustomResourceOptions? opts = null)
public Global(String name, GlobalArgs args)
public Global(String name, GlobalArgs args, CustomResourceOptions options)
type: fortios:dpdk:Global
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 GlobalArgs
- 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 GlobalArgs
- 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 GlobalArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GlobalArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GlobalArgs
- 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 globalResource = new Fortios.Dpdk.Global("globalResource", new()
{
    DynamicSortSubtable = "string",
    Elasticbuffer = "string",
    GetAllTables = "string",
    HugepagePercentage = 0,
    Interfaces = new[]
    {
        new Fortios.Dpdk.Inputs.GlobalInterfaceArgs
        {
            InterfaceName = "string",
        },
    },
    IpsecOffload = "string",
    MbufpoolPercentage = 0,
    Multiqueue = "string",
    PerSessionAccounting = "string",
    Protects = "string",
    SleepOnIdle = "string",
    Status = "string",
    Vdomparam = "string",
});
example, err := dpdk.NewGlobal(ctx, "globalResource", &dpdk.GlobalArgs{
	DynamicSortSubtable: pulumi.String("string"),
	Elasticbuffer:       pulumi.String("string"),
	GetAllTables:        pulumi.String("string"),
	HugepagePercentage:  pulumi.Int(0),
	Interfaces: dpdk.GlobalInterfaceArray{
		&dpdk.GlobalInterfaceArgs{
			InterfaceName: pulumi.String("string"),
		},
	},
	IpsecOffload:         pulumi.String("string"),
	MbufpoolPercentage:   pulumi.Int(0),
	Multiqueue:           pulumi.String("string"),
	PerSessionAccounting: pulumi.String("string"),
	Protects:             pulumi.String("string"),
	SleepOnIdle:          pulumi.String("string"),
	Status:               pulumi.String("string"),
	Vdomparam:            pulumi.String("string"),
})
var globalResource = new Global("globalResource", GlobalArgs.builder()
    .dynamicSortSubtable("string")
    .elasticbuffer("string")
    .getAllTables("string")
    .hugepagePercentage(0)
    .interfaces(GlobalInterfaceArgs.builder()
        .interfaceName("string")
        .build())
    .ipsecOffload("string")
    .mbufpoolPercentage(0)
    .multiqueue("string")
    .perSessionAccounting("string")
    .protects("string")
    .sleepOnIdle("string")
    .status("string")
    .vdomparam("string")
    .build());
global_resource = fortios.dpdk.Global("globalResource",
    dynamic_sort_subtable="string",
    elasticbuffer="string",
    get_all_tables="string",
    hugepage_percentage=0,
    interfaces=[{
        "interface_name": "string",
    }],
    ipsec_offload="string",
    mbufpool_percentage=0,
    multiqueue="string",
    per_session_accounting="string",
    protects="string",
    sleep_on_idle="string",
    status="string",
    vdomparam="string")
const globalResource = new fortios.dpdk.Global("globalResource", {
    dynamicSortSubtable: "string",
    elasticbuffer: "string",
    getAllTables: "string",
    hugepagePercentage: 0,
    interfaces: [{
        interfaceName: "string",
    }],
    ipsecOffload: "string",
    mbufpoolPercentage: 0,
    multiqueue: "string",
    perSessionAccounting: "string",
    protects: "string",
    sleepOnIdle: "string",
    status: "string",
    vdomparam: "string",
});
type: fortios:dpdk:Global
properties:
    dynamicSortSubtable: string
    elasticbuffer: string
    getAllTables: string
    hugepagePercentage: 0
    interfaces:
        - interfaceName: string
    ipsecOffload: string
    mbufpoolPercentage: 0
    multiqueue: string
    perSessionAccounting: string
    protects: string
    sleepOnIdle: string
    status: string
    vdomparam: string
Global 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 Global resource accepts the following input properties:
- DynamicSort stringSubtable 
- 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 ].
- Elasticbuffer string
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- GetAll stringTables 
- 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.
- HugepagePercentage int
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- Interfaces
List<Pulumiverse.Fortios. Dpdk. Inputs. Global Interface> 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- IpsecOffload string
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- MbufpoolPercentage int
- Percentage of main memory allocated to DPDK packet buffer.
- Multiqueue string
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- PerSession stringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- Protects string
- Special arguments for device
- SleepOn stringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- Status string
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- DynamicSort stringSubtable 
- 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 ].
- Elasticbuffer string
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- GetAll stringTables 
- 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.
- HugepagePercentage int
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- Interfaces
[]GlobalInterface Args 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- IpsecOffload string
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- MbufpoolPercentage int
- Percentage of main memory allocated to DPDK packet buffer.
- Multiqueue string
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- PerSession stringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- Protects string
- Special arguments for device
- SleepOn stringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- Status string
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamicSort StringSubtable 
- 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 ].
- elasticbuffer String
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- getAll StringTables 
- 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.
- hugepagePercentage Integer
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces
List<GlobalInterface> 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsecOffload String
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpoolPercentage Integer
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue String
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- perSession StringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects String
- Special arguments for device
- sleepOn StringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status String
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamicSort stringSubtable 
- 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 ].
- elasticbuffer string
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- getAll stringTables 
- 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.
- hugepagePercentage number
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces
GlobalInterface[] 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsecOffload string
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpoolPercentage number
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue string
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- perSession stringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects string
- Special arguments for device
- sleepOn stringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status string
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamic_sort_ strsubtable 
- 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 ].
- elasticbuffer str
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- get_all_ strtables 
- 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.
- hugepage_percentage int
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces
Sequence[GlobalInterface Args] 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsec_offload str
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpool_percentage int
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue str
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- per_session_ straccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects str
- Special arguments for device
- sleep_on_ stridle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status str
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamicSort StringSubtable 
- 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 ].
- elasticbuffer String
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- getAll StringTables 
- 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.
- hugepagePercentage Number
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces List<Property Map>
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsecOffload String
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpoolPercentage Number
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue String
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- perSession StringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects String
- Special arguments for device
- sleepOn StringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status String
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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 Global 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 Global Resource
Get an existing Global 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?: GlobalState, opts?: CustomResourceOptions): Global@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        dynamic_sort_subtable: Optional[str] = None,
        elasticbuffer: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        hugepage_percentage: Optional[int] = None,
        interfaces: Optional[Sequence[GlobalInterfaceArgs]] = None,
        ipsec_offload: Optional[str] = None,
        mbufpool_percentage: Optional[int] = None,
        multiqueue: Optional[str] = None,
        per_session_accounting: Optional[str] = None,
        protects: Optional[str] = None,
        sleep_on_idle: Optional[str] = None,
        status: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Globalfunc GetGlobal(ctx *Context, name string, id IDInput, state *GlobalState, opts ...ResourceOption) (*Global, error)public static Global Get(string name, Input<string> id, GlobalState? state, CustomResourceOptions? opts = null)public static Global get(String name, Output<String> id, GlobalState state, CustomResourceOptions options)resources:  _:    type: fortios:dpdk:Global    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.
- DynamicSort stringSubtable 
- 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 ].
- Elasticbuffer string
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- GetAll stringTables 
- 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.
- HugepagePercentage int
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- Interfaces
List<Pulumiverse.Fortios. Dpdk. Inputs. Global Interface> 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- IpsecOffload string
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- MbufpoolPercentage int
- Percentage of main memory allocated to DPDK packet buffer.
- Multiqueue string
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- PerSession stringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- Protects string
- Special arguments for device
- SleepOn stringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- Status string
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- DynamicSort stringSubtable 
- 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 ].
- Elasticbuffer string
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- GetAll stringTables 
- 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.
- HugepagePercentage int
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- Interfaces
[]GlobalInterface Args 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- IpsecOffload string
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- MbufpoolPercentage int
- Percentage of main memory allocated to DPDK packet buffer.
- Multiqueue string
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- PerSession stringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- Protects string
- Special arguments for device
- SleepOn stringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- Status string
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamicSort StringSubtable 
- 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 ].
- elasticbuffer String
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- getAll StringTables 
- 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.
- hugepagePercentage Integer
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces
List<GlobalInterface> 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsecOffload String
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpoolPercentage Integer
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue String
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- perSession StringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects String
- Special arguments for device
- sleepOn StringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status String
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamicSort stringSubtable 
- 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 ].
- elasticbuffer string
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- getAll stringTables 
- 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.
- hugepagePercentage number
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces
GlobalInterface[] 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsecOffload string
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpoolPercentage number
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue string
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- perSession stringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects string
- Special arguments for device
- sleepOn stringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status string
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamic_sort_ strsubtable 
- 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 ].
- elasticbuffer str
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- get_all_ strtables 
- 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.
- hugepage_percentage int
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces
Sequence[GlobalInterface Args] 
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsec_offload str
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpool_percentage int
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue str
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- per_session_ straccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects str
- Special arguments for device
- sleep_on_ stridle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status str
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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.
- dynamicSort StringSubtable 
- 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 ].
- elasticbuffer String
- Enable/disable elasticbuffer support for all DPDK ports. Valid values: disable,enable.
- getAll StringTables 
- 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.
- hugepagePercentage Number
- Percentage of main memory allocated to hugepages, which are available for DPDK operation.
- interfaces List<Property Map>
- Physical interfaces that enable DPDK. The structure of interfaceblock is documented below.
- ipsecOffload String
- Enable/disable DPDK IPsec phase 2 offloading. Valid values: disable,enable.
- mbufpoolPercentage Number
- Percentage of main memory allocated to DPDK packet buffer.
- multiqueue String
- Enable/disable multi-queue RX/TX support for all DPDK ports. Valid values: disable,enable.
- perSession StringAccounting 
- Enable/disable per-session accounting. Valid values: disable,traffic-log-only,enable.
- protects String
- Special arguments for device
- sleepOn StringIdle 
- Enable/disable sleep-on-idle support for all FDH engines. Valid values: disable,enable.
- status String
- Enable/disable DPDK operation for the entire system. Valid values: disable,enable.
- 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
GlobalInterface, GlobalInterfaceArgs    
- InterfaceName string
- Physical interface name.
- InterfaceName string
- Physical interface name.
- interfaceName String
- Physical interface name.
- interfaceName string
- Physical interface name.
- interface_name str
- Physical interface name.
- interfaceName String
- Physical interface name.
Import
Dpdk Global can be imported using any of these accepted formats:
$ pulumi import fortios:dpdk/global:Global labelname DpdkGlobal
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:dpdk/global:Global labelname DpdkGlobal
$ 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 fortiosTerraform Provider.
