fortios.router.Setting
Explore with Pulumi AI
Configure router settings.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.router.Setting("trname", {hostname: "s1"});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.router.Setting("trname", hostname="s1")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/router"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := router.NewSetting(ctx, "trname", &router.SettingArgs{
			Hostname: pulumi.String("s1"),
		})
		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.Router.Setting("trname", new()
    {
        Hostname = "s1",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.router.Setting;
import com.pulumi.fortios.router.SettingArgs;
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 Setting("trname", SettingArgs.builder()
            .hostname("s1")
            .build());
    }
}
resources:
  trname:
    type: fortios:router:Setting
    properties:
      hostname: s1
Create Setting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Setting(name: string, args?: SettingArgs, opts?: CustomResourceOptions);@overload
def Setting(resource_name: str,
            args: Optional[SettingArgs] = None,
            opts: Optional[ResourceOptions] = None)
@overload
def Setting(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            bgp_debug_flags: Optional[str] = None,
            hostname: Optional[str] = None,
            igmp_debug_flags: Optional[str] = None,
            imi_debug_flags: Optional[str] = None,
            isis_debug_flags: Optional[str] = None,
            ospf6_debug_events_flags: Optional[str] = None,
            ospf6_debug_ifsm_flags: Optional[str] = None,
            ospf6_debug_lsa_flags: Optional[str] = None,
            ospf6_debug_nfsm_flags: Optional[str] = None,
            ospf6_debug_nsm_flags: Optional[str] = None,
            ospf6_debug_packet_flags: Optional[str] = None,
            ospf6_debug_route_flags: Optional[str] = None,
            ospf_debug_events_flags: Optional[str] = None,
            ospf_debug_ifsm_flags: Optional[str] = None,
            ospf_debug_lsa_flags: Optional[str] = None,
            ospf_debug_nfsm_flags: Optional[str] = None,
            ospf_debug_nsm_flags: Optional[str] = None,
            ospf_debug_packet_flags: Optional[str] = None,
            ospf_debug_route_flags: Optional[str] = None,
            pimdm_debug_flags: Optional[str] = None,
            pimsm_debug_joinprune_flags: Optional[str] = None,
            pimsm_debug_simple_flags: Optional[str] = None,
            pimsm_debug_timer_flags: Optional[str] = None,
            rip_debug_flags: Optional[str] = None,
            ripng_debug_flags: Optional[str] = None,
            show_filter: Optional[str] = None,
            vdomparam: Optional[str] = None)func NewSetting(ctx *Context, name string, args *SettingArgs, opts ...ResourceOption) (*Setting, error)public Setting(string name, SettingArgs? args = null, CustomResourceOptions? opts = null)
public Setting(String name, SettingArgs args)
public Setting(String name, SettingArgs args, CustomResourceOptions options)
type: fortios:router:Setting
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 SettingArgs
- 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 SettingArgs
- 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 SettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SettingArgs
- 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 examplesettingResourceResourceFromRoutersetting = new Fortios.Router.Setting("examplesettingResourceResourceFromRoutersetting", new()
{
    BgpDebugFlags = "string",
    Hostname = "string",
    IgmpDebugFlags = "string",
    ImiDebugFlags = "string",
    IsisDebugFlags = "string",
    Ospf6DebugEventsFlags = "string",
    Ospf6DebugIfsmFlags = "string",
    Ospf6DebugLsaFlags = "string",
    Ospf6DebugNfsmFlags = "string",
    Ospf6DebugNsmFlags = "string",
    Ospf6DebugPacketFlags = "string",
    Ospf6DebugRouteFlags = "string",
    OspfDebugEventsFlags = "string",
    OspfDebugIfsmFlags = "string",
    OspfDebugLsaFlags = "string",
    OspfDebugNfsmFlags = "string",
    OspfDebugNsmFlags = "string",
    OspfDebugPacketFlags = "string",
    OspfDebugRouteFlags = "string",
    PimdmDebugFlags = "string",
    PimsmDebugJoinpruneFlags = "string",
    PimsmDebugSimpleFlags = "string",
    PimsmDebugTimerFlags = "string",
    RipDebugFlags = "string",
    RipngDebugFlags = "string",
    ShowFilter = "string",
    Vdomparam = "string",
});
example, err := router.NewSetting(ctx, "examplesettingResourceResourceFromRoutersetting", &router.SettingArgs{
	BgpDebugFlags:            pulumi.String("string"),
	Hostname:                 pulumi.String("string"),
	IgmpDebugFlags:           pulumi.String("string"),
	ImiDebugFlags:            pulumi.String("string"),
	IsisDebugFlags:           pulumi.String("string"),
	Ospf6DebugEventsFlags:    pulumi.String("string"),
	Ospf6DebugIfsmFlags:      pulumi.String("string"),
	Ospf6DebugLsaFlags:       pulumi.String("string"),
	Ospf6DebugNfsmFlags:      pulumi.String("string"),
	Ospf6DebugNsmFlags:       pulumi.String("string"),
	Ospf6DebugPacketFlags:    pulumi.String("string"),
	Ospf6DebugRouteFlags:     pulumi.String("string"),
	OspfDebugEventsFlags:     pulumi.String("string"),
	OspfDebugIfsmFlags:       pulumi.String("string"),
	OspfDebugLsaFlags:        pulumi.String("string"),
	OspfDebugNfsmFlags:       pulumi.String("string"),
	OspfDebugNsmFlags:        pulumi.String("string"),
	OspfDebugPacketFlags:     pulumi.String("string"),
	OspfDebugRouteFlags:      pulumi.String("string"),
	PimdmDebugFlags:          pulumi.String("string"),
	PimsmDebugJoinpruneFlags: pulumi.String("string"),
	PimsmDebugSimpleFlags:    pulumi.String("string"),
	PimsmDebugTimerFlags:     pulumi.String("string"),
	RipDebugFlags:            pulumi.String("string"),
	RipngDebugFlags:          pulumi.String("string"),
	ShowFilter:               pulumi.String("string"),
	Vdomparam:                pulumi.String("string"),
})
var examplesettingResourceResourceFromRoutersetting = new Setting("examplesettingResourceResourceFromRoutersetting", SettingArgs.builder()
    .bgpDebugFlags("string")
    .hostname("string")
    .igmpDebugFlags("string")
    .imiDebugFlags("string")
    .isisDebugFlags("string")
    .ospf6DebugEventsFlags("string")
    .ospf6DebugIfsmFlags("string")
    .ospf6DebugLsaFlags("string")
    .ospf6DebugNfsmFlags("string")
    .ospf6DebugNsmFlags("string")
    .ospf6DebugPacketFlags("string")
    .ospf6DebugRouteFlags("string")
    .ospfDebugEventsFlags("string")
    .ospfDebugIfsmFlags("string")
    .ospfDebugLsaFlags("string")
    .ospfDebugNfsmFlags("string")
    .ospfDebugNsmFlags("string")
    .ospfDebugPacketFlags("string")
    .ospfDebugRouteFlags("string")
    .pimdmDebugFlags("string")
    .pimsmDebugJoinpruneFlags("string")
    .pimsmDebugSimpleFlags("string")
    .pimsmDebugTimerFlags("string")
    .ripDebugFlags("string")
    .ripngDebugFlags("string")
    .showFilter("string")
    .vdomparam("string")
    .build());
examplesetting_resource_resource_from_routersetting = fortios.router.Setting("examplesettingResourceResourceFromRoutersetting",
    bgp_debug_flags="string",
    hostname="string",
    igmp_debug_flags="string",
    imi_debug_flags="string",
    isis_debug_flags="string",
    ospf6_debug_events_flags="string",
    ospf6_debug_ifsm_flags="string",
    ospf6_debug_lsa_flags="string",
    ospf6_debug_nfsm_flags="string",
    ospf6_debug_nsm_flags="string",
    ospf6_debug_packet_flags="string",
    ospf6_debug_route_flags="string",
    ospf_debug_events_flags="string",
    ospf_debug_ifsm_flags="string",
    ospf_debug_lsa_flags="string",
    ospf_debug_nfsm_flags="string",
    ospf_debug_nsm_flags="string",
    ospf_debug_packet_flags="string",
    ospf_debug_route_flags="string",
    pimdm_debug_flags="string",
    pimsm_debug_joinprune_flags="string",
    pimsm_debug_simple_flags="string",
    pimsm_debug_timer_flags="string",
    rip_debug_flags="string",
    ripng_debug_flags="string",
    show_filter="string",
    vdomparam="string")
const examplesettingResourceResourceFromRoutersetting = new fortios.router.Setting("examplesettingResourceResourceFromRoutersetting", {
    bgpDebugFlags: "string",
    hostname: "string",
    igmpDebugFlags: "string",
    imiDebugFlags: "string",
    isisDebugFlags: "string",
    ospf6DebugEventsFlags: "string",
    ospf6DebugIfsmFlags: "string",
    ospf6DebugLsaFlags: "string",
    ospf6DebugNfsmFlags: "string",
    ospf6DebugNsmFlags: "string",
    ospf6DebugPacketFlags: "string",
    ospf6DebugRouteFlags: "string",
    ospfDebugEventsFlags: "string",
    ospfDebugIfsmFlags: "string",
    ospfDebugLsaFlags: "string",
    ospfDebugNfsmFlags: "string",
    ospfDebugNsmFlags: "string",
    ospfDebugPacketFlags: "string",
    ospfDebugRouteFlags: "string",
    pimdmDebugFlags: "string",
    pimsmDebugJoinpruneFlags: "string",
    pimsmDebugSimpleFlags: "string",
    pimsmDebugTimerFlags: "string",
    ripDebugFlags: "string",
    ripngDebugFlags: "string",
    showFilter: "string",
    vdomparam: "string",
});
type: fortios:router:Setting
properties:
    bgpDebugFlags: string
    hostname: string
    igmpDebugFlags: string
    imiDebugFlags: string
    isisDebugFlags: string
    ospf6DebugEventsFlags: string
    ospf6DebugIfsmFlags: string
    ospf6DebugLsaFlags: string
    ospf6DebugNfsmFlags: string
    ospf6DebugNsmFlags: string
    ospf6DebugPacketFlags: string
    ospf6DebugRouteFlags: string
    ospfDebugEventsFlags: string
    ospfDebugIfsmFlags: string
    ospfDebugLsaFlags: string
    ospfDebugNfsmFlags: string
    ospfDebugNsmFlags: string
    ospfDebugPacketFlags: string
    ospfDebugRouteFlags: string
    pimdmDebugFlags: string
    pimsmDebugJoinpruneFlags: string
    pimsmDebugSimpleFlags: string
    pimsmDebugTimerFlags: string
    ripDebugFlags: string
    ripngDebugFlags: string
    showFilter: string
    vdomparam: string
Setting 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 Setting resource accepts the following input properties:
- BgpDebug stringFlags 
- bgp_debug_flags
- Hostname string
- Hostname for this virtual domain router.
- IgmpDebug stringFlags 
- igmp_debug_flags
- ImiDebug stringFlags 
- imi_debug_flags
- IsisDebug stringFlags 
- isis_debug_flags
- Ospf6DebugEvents stringFlags 
- ospf6_debug_events_flags
- Ospf6DebugIfsm stringFlags 
- ospf6_debug_ifsm_flags
- Ospf6DebugLsa stringFlags 
- ospf6_debug_lsa_flags
- Ospf6DebugNfsm stringFlags 
- ospf6_debug_nfsm_flags
- Ospf6DebugNsm stringFlags 
- ospf6_debug_nsm_flags
- Ospf6DebugPacket stringFlags 
- ospf6_debug_packet_flags
- Ospf6DebugRoute stringFlags 
- ospf6_debug_route_flags
- OspfDebug stringEvents Flags 
- ospf_debug_events_flags
- OspfDebug stringIfsm Flags 
- ospf_debug_ifsm_flags
- OspfDebug stringLsa Flags 
- ospf_debug_lsa_flags
- OspfDebug stringNfsm Flags 
- ospf_debug_nfsm_flags
- OspfDebug stringNsm Flags 
- ospf_debug_nsm_flags
- OspfDebug stringPacket Flags 
- ospf_debug_packet_flags
- OspfDebug stringRoute Flags 
- ospf_debug_route_flags
- PimdmDebug stringFlags 
- pimdm_debug_flags
- PimsmDebug stringJoinprune Flags 
- pimsm_debug_joinprune_flags
- PimsmDebug stringSimple Flags 
- pimsm_debug_simple_flags
- PimsmDebug stringTimer Flags 
- pimsm_debug_timer_flags
- RipDebug stringFlags 
- rip_debug_flags
- RipngDebug stringFlags 
- ripng_debug_flags
- ShowFilter string
- Prefix-list as filter for showing routes.
- 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.
- BgpDebug stringFlags 
- bgp_debug_flags
- Hostname string
- Hostname for this virtual domain router.
- IgmpDebug stringFlags 
- igmp_debug_flags
- ImiDebug stringFlags 
- imi_debug_flags
- IsisDebug stringFlags 
- isis_debug_flags
- Ospf6DebugEvents stringFlags 
- ospf6_debug_events_flags
- Ospf6DebugIfsm stringFlags 
- ospf6_debug_ifsm_flags
- Ospf6DebugLsa stringFlags 
- ospf6_debug_lsa_flags
- Ospf6DebugNfsm stringFlags 
- ospf6_debug_nfsm_flags
- Ospf6DebugNsm stringFlags 
- ospf6_debug_nsm_flags
- Ospf6DebugPacket stringFlags 
- ospf6_debug_packet_flags
- Ospf6DebugRoute stringFlags 
- ospf6_debug_route_flags
- OspfDebug stringEvents Flags 
- ospf_debug_events_flags
- OspfDebug stringIfsm Flags 
- ospf_debug_ifsm_flags
- OspfDebug stringLsa Flags 
- ospf_debug_lsa_flags
- OspfDebug stringNfsm Flags 
- ospf_debug_nfsm_flags
- OspfDebug stringNsm Flags 
- ospf_debug_nsm_flags
- OspfDebug stringPacket Flags 
- ospf_debug_packet_flags
- OspfDebug stringRoute Flags 
- ospf_debug_route_flags
- PimdmDebug stringFlags 
- pimdm_debug_flags
- PimsmDebug stringJoinprune Flags 
- pimsm_debug_joinprune_flags
- PimsmDebug stringSimple Flags 
- pimsm_debug_simple_flags
- PimsmDebug stringTimer Flags 
- pimsm_debug_timer_flags
- RipDebug stringFlags 
- rip_debug_flags
- RipngDebug stringFlags 
- ripng_debug_flags
- ShowFilter string
- Prefix-list as filter for showing routes.
- 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.
- bgpDebug StringFlags 
- bgp_debug_flags
- hostname String
- Hostname for this virtual domain router.
- igmpDebug StringFlags 
- igmp_debug_flags
- imiDebug StringFlags 
- imi_debug_flags
- isisDebug StringFlags 
- isis_debug_flags
- ospf6DebugEvents StringFlags 
- ospf6_debug_events_flags
- ospf6DebugIfsm StringFlags 
- ospf6_debug_ifsm_flags
- ospf6DebugLsa StringFlags 
- ospf6_debug_lsa_flags
- ospf6DebugNfsm StringFlags 
- ospf6_debug_nfsm_flags
- ospf6DebugNsm StringFlags 
- ospf6_debug_nsm_flags
- ospf6DebugPacket StringFlags 
- ospf6_debug_packet_flags
- ospf6DebugRoute StringFlags 
- ospf6_debug_route_flags
- ospfDebug StringEvents Flags 
- ospf_debug_events_flags
- ospfDebug StringIfsm Flags 
- ospf_debug_ifsm_flags
- ospfDebug StringLsa Flags 
- ospf_debug_lsa_flags
- ospfDebug StringNfsm Flags 
- ospf_debug_nfsm_flags
- ospfDebug StringNsm Flags 
- ospf_debug_nsm_flags
- ospfDebug StringPacket Flags 
- ospf_debug_packet_flags
- ospfDebug StringRoute Flags 
- ospf_debug_route_flags
- pimdmDebug StringFlags 
- pimdm_debug_flags
- pimsmDebug StringJoinprune Flags 
- pimsm_debug_joinprune_flags
- pimsmDebug StringSimple Flags 
- pimsm_debug_simple_flags
- pimsmDebug StringTimer Flags 
- pimsm_debug_timer_flags
- ripDebug StringFlags 
- rip_debug_flags
- ripngDebug StringFlags 
- ripng_debug_flags
- showFilter String
- Prefix-list as filter for showing routes.
- 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.
- bgpDebug stringFlags 
- bgp_debug_flags
- hostname string
- Hostname for this virtual domain router.
- igmpDebug stringFlags 
- igmp_debug_flags
- imiDebug stringFlags 
- imi_debug_flags
- isisDebug stringFlags 
- isis_debug_flags
- ospf6DebugEvents stringFlags 
- ospf6_debug_events_flags
- ospf6DebugIfsm stringFlags 
- ospf6_debug_ifsm_flags
- ospf6DebugLsa stringFlags 
- ospf6_debug_lsa_flags
- ospf6DebugNfsm stringFlags 
- ospf6_debug_nfsm_flags
- ospf6DebugNsm stringFlags 
- ospf6_debug_nsm_flags
- ospf6DebugPacket stringFlags 
- ospf6_debug_packet_flags
- ospf6DebugRoute stringFlags 
- ospf6_debug_route_flags
- ospfDebug stringEvents Flags 
- ospf_debug_events_flags
- ospfDebug stringIfsm Flags 
- ospf_debug_ifsm_flags
- ospfDebug stringLsa Flags 
- ospf_debug_lsa_flags
- ospfDebug stringNfsm Flags 
- ospf_debug_nfsm_flags
- ospfDebug stringNsm Flags 
- ospf_debug_nsm_flags
- ospfDebug stringPacket Flags 
- ospf_debug_packet_flags
- ospfDebug stringRoute Flags 
- ospf_debug_route_flags
- pimdmDebug stringFlags 
- pimdm_debug_flags
- pimsmDebug stringJoinprune Flags 
- pimsm_debug_joinprune_flags
- pimsmDebug stringSimple Flags 
- pimsm_debug_simple_flags
- pimsmDebug stringTimer Flags 
- pimsm_debug_timer_flags
- ripDebug stringFlags 
- rip_debug_flags
- ripngDebug stringFlags 
- ripng_debug_flags
- showFilter string
- Prefix-list as filter for showing routes.
- 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.
- bgp_debug_ strflags 
- bgp_debug_flags
- hostname str
- Hostname for this virtual domain router.
- igmp_debug_ strflags 
- igmp_debug_flags
- imi_debug_ strflags 
- imi_debug_flags
- isis_debug_ strflags 
- isis_debug_flags
- ospf6_debug_ strevents_ flags 
- ospf6_debug_events_flags
- ospf6_debug_ strifsm_ flags 
- ospf6_debug_ifsm_flags
- ospf6_debug_ strlsa_ flags 
- ospf6_debug_lsa_flags
- ospf6_debug_ strnfsm_ flags 
- ospf6_debug_nfsm_flags
- ospf6_debug_ strnsm_ flags 
- ospf6_debug_nsm_flags
- ospf6_debug_ strpacket_ flags 
- ospf6_debug_packet_flags
- ospf6_debug_ strroute_ flags 
- ospf6_debug_route_flags
- ospf_debug_ strevents_ flags 
- ospf_debug_events_flags
- ospf_debug_ strifsm_ flags 
- ospf_debug_ifsm_flags
- ospf_debug_ strlsa_ flags 
- ospf_debug_lsa_flags
- ospf_debug_ strnfsm_ flags 
- ospf_debug_nfsm_flags
- ospf_debug_ strnsm_ flags 
- ospf_debug_nsm_flags
- ospf_debug_ strpacket_ flags 
- ospf_debug_packet_flags
- ospf_debug_ strroute_ flags 
- ospf_debug_route_flags
- pimdm_debug_ strflags 
- pimdm_debug_flags
- pimsm_debug_ strjoinprune_ flags 
- pimsm_debug_joinprune_flags
- pimsm_debug_ strsimple_ flags 
- pimsm_debug_simple_flags
- pimsm_debug_ strtimer_ flags 
- pimsm_debug_timer_flags
- rip_debug_ strflags 
- rip_debug_flags
- ripng_debug_ strflags 
- ripng_debug_flags
- show_filter str
- Prefix-list as filter for showing routes.
- 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.
- bgpDebug StringFlags 
- bgp_debug_flags
- hostname String
- Hostname for this virtual domain router.
- igmpDebug StringFlags 
- igmp_debug_flags
- imiDebug StringFlags 
- imi_debug_flags
- isisDebug StringFlags 
- isis_debug_flags
- ospf6DebugEvents StringFlags 
- ospf6_debug_events_flags
- ospf6DebugIfsm StringFlags 
- ospf6_debug_ifsm_flags
- ospf6DebugLsa StringFlags 
- ospf6_debug_lsa_flags
- ospf6DebugNfsm StringFlags 
- ospf6_debug_nfsm_flags
- ospf6DebugNsm StringFlags 
- ospf6_debug_nsm_flags
- ospf6DebugPacket StringFlags 
- ospf6_debug_packet_flags
- ospf6DebugRoute StringFlags 
- ospf6_debug_route_flags
- ospfDebug StringEvents Flags 
- ospf_debug_events_flags
- ospfDebug StringIfsm Flags 
- ospf_debug_ifsm_flags
- ospfDebug StringLsa Flags 
- ospf_debug_lsa_flags
- ospfDebug StringNfsm Flags 
- ospf_debug_nfsm_flags
- ospfDebug StringNsm Flags 
- ospf_debug_nsm_flags
- ospfDebug StringPacket Flags 
- ospf_debug_packet_flags
- ospfDebug StringRoute Flags 
- ospf_debug_route_flags
- pimdmDebug StringFlags 
- pimdm_debug_flags
- pimsmDebug StringJoinprune Flags 
- pimsm_debug_joinprune_flags
- pimsmDebug StringSimple Flags 
- pimsm_debug_simple_flags
- pimsmDebug StringTimer Flags 
- pimsm_debug_timer_flags
- ripDebug StringFlags 
- rip_debug_flags
- ripngDebug StringFlags 
- ripng_debug_flags
- showFilter String
- Prefix-list as filter for showing routes.
- 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 Setting 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 Setting Resource
Get an existing Setting 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?: SettingState, opts?: CustomResourceOptions): Setting@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bgp_debug_flags: Optional[str] = None,
        hostname: Optional[str] = None,
        igmp_debug_flags: Optional[str] = None,
        imi_debug_flags: Optional[str] = None,
        isis_debug_flags: Optional[str] = None,
        ospf6_debug_events_flags: Optional[str] = None,
        ospf6_debug_ifsm_flags: Optional[str] = None,
        ospf6_debug_lsa_flags: Optional[str] = None,
        ospf6_debug_nfsm_flags: Optional[str] = None,
        ospf6_debug_nsm_flags: Optional[str] = None,
        ospf6_debug_packet_flags: Optional[str] = None,
        ospf6_debug_route_flags: Optional[str] = None,
        ospf_debug_events_flags: Optional[str] = None,
        ospf_debug_ifsm_flags: Optional[str] = None,
        ospf_debug_lsa_flags: Optional[str] = None,
        ospf_debug_nfsm_flags: Optional[str] = None,
        ospf_debug_nsm_flags: Optional[str] = None,
        ospf_debug_packet_flags: Optional[str] = None,
        ospf_debug_route_flags: Optional[str] = None,
        pimdm_debug_flags: Optional[str] = None,
        pimsm_debug_joinprune_flags: Optional[str] = None,
        pimsm_debug_simple_flags: Optional[str] = None,
        pimsm_debug_timer_flags: Optional[str] = None,
        rip_debug_flags: Optional[str] = None,
        ripng_debug_flags: Optional[str] = None,
        show_filter: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Settingfunc GetSetting(ctx *Context, name string, id IDInput, state *SettingState, opts ...ResourceOption) (*Setting, error)public static Setting Get(string name, Input<string> id, SettingState? state, CustomResourceOptions? opts = null)public static Setting get(String name, Output<String> id, SettingState state, CustomResourceOptions options)resources:  _:    type: fortios:router:Setting    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.
- BgpDebug stringFlags 
- bgp_debug_flags
- Hostname string
- Hostname for this virtual domain router.
- IgmpDebug stringFlags 
- igmp_debug_flags
- ImiDebug stringFlags 
- imi_debug_flags
- IsisDebug stringFlags 
- isis_debug_flags
- Ospf6DebugEvents stringFlags 
- ospf6_debug_events_flags
- Ospf6DebugIfsm stringFlags 
- ospf6_debug_ifsm_flags
- Ospf6DebugLsa stringFlags 
- ospf6_debug_lsa_flags
- Ospf6DebugNfsm stringFlags 
- ospf6_debug_nfsm_flags
- Ospf6DebugNsm stringFlags 
- ospf6_debug_nsm_flags
- Ospf6DebugPacket stringFlags 
- ospf6_debug_packet_flags
- Ospf6DebugRoute stringFlags 
- ospf6_debug_route_flags
- OspfDebug stringEvents Flags 
- ospf_debug_events_flags
- OspfDebug stringIfsm Flags 
- ospf_debug_ifsm_flags
- OspfDebug stringLsa Flags 
- ospf_debug_lsa_flags
- OspfDebug stringNfsm Flags 
- ospf_debug_nfsm_flags
- OspfDebug stringNsm Flags 
- ospf_debug_nsm_flags
- OspfDebug stringPacket Flags 
- ospf_debug_packet_flags
- OspfDebug stringRoute Flags 
- ospf_debug_route_flags
- PimdmDebug stringFlags 
- pimdm_debug_flags
- PimsmDebug stringJoinprune Flags 
- pimsm_debug_joinprune_flags
- PimsmDebug stringSimple Flags 
- pimsm_debug_simple_flags
- PimsmDebug stringTimer Flags 
- pimsm_debug_timer_flags
- RipDebug stringFlags 
- rip_debug_flags
- RipngDebug stringFlags 
- ripng_debug_flags
- ShowFilter string
- Prefix-list as filter for showing routes.
- 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.
- BgpDebug stringFlags 
- bgp_debug_flags
- Hostname string
- Hostname for this virtual domain router.
- IgmpDebug stringFlags 
- igmp_debug_flags
- ImiDebug stringFlags 
- imi_debug_flags
- IsisDebug stringFlags 
- isis_debug_flags
- Ospf6DebugEvents stringFlags 
- ospf6_debug_events_flags
- Ospf6DebugIfsm stringFlags 
- ospf6_debug_ifsm_flags
- Ospf6DebugLsa stringFlags 
- ospf6_debug_lsa_flags
- Ospf6DebugNfsm stringFlags 
- ospf6_debug_nfsm_flags
- Ospf6DebugNsm stringFlags 
- ospf6_debug_nsm_flags
- Ospf6DebugPacket stringFlags 
- ospf6_debug_packet_flags
- Ospf6DebugRoute stringFlags 
- ospf6_debug_route_flags
- OspfDebug stringEvents Flags 
- ospf_debug_events_flags
- OspfDebug stringIfsm Flags 
- ospf_debug_ifsm_flags
- OspfDebug stringLsa Flags 
- ospf_debug_lsa_flags
- OspfDebug stringNfsm Flags 
- ospf_debug_nfsm_flags
- OspfDebug stringNsm Flags 
- ospf_debug_nsm_flags
- OspfDebug stringPacket Flags 
- ospf_debug_packet_flags
- OspfDebug stringRoute Flags 
- ospf_debug_route_flags
- PimdmDebug stringFlags 
- pimdm_debug_flags
- PimsmDebug stringJoinprune Flags 
- pimsm_debug_joinprune_flags
- PimsmDebug stringSimple Flags 
- pimsm_debug_simple_flags
- PimsmDebug stringTimer Flags 
- pimsm_debug_timer_flags
- RipDebug stringFlags 
- rip_debug_flags
- RipngDebug stringFlags 
- ripng_debug_flags
- ShowFilter string
- Prefix-list as filter for showing routes.
- 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.
- bgpDebug StringFlags 
- bgp_debug_flags
- hostname String
- Hostname for this virtual domain router.
- igmpDebug StringFlags 
- igmp_debug_flags
- imiDebug StringFlags 
- imi_debug_flags
- isisDebug StringFlags 
- isis_debug_flags
- ospf6DebugEvents StringFlags 
- ospf6_debug_events_flags
- ospf6DebugIfsm StringFlags 
- ospf6_debug_ifsm_flags
- ospf6DebugLsa StringFlags 
- ospf6_debug_lsa_flags
- ospf6DebugNfsm StringFlags 
- ospf6_debug_nfsm_flags
- ospf6DebugNsm StringFlags 
- ospf6_debug_nsm_flags
- ospf6DebugPacket StringFlags 
- ospf6_debug_packet_flags
- ospf6DebugRoute StringFlags 
- ospf6_debug_route_flags
- ospfDebug StringEvents Flags 
- ospf_debug_events_flags
- ospfDebug StringIfsm Flags 
- ospf_debug_ifsm_flags
- ospfDebug StringLsa Flags 
- ospf_debug_lsa_flags
- ospfDebug StringNfsm Flags 
- ospf_debug_nfsm_flags
- ospfDebug StringNsm Flags 
- ospf_debug_nsm_flags
- ospfDebug StringPacket Flags 
- ospf_debug_packet_flags
- ospfDebug StringRoute Flags 
- ospf_debug_route_flags
- pimdmDebug StringFlags 
- pimdm_debug_flags
- pimsmDebug StringJoinprune Flags 
- pimsm_debug_joinprune_flags
- pimsmDebug StringSimple Flags 
- pimsm_debug_simple_flags
- pimsmDebug StringTimer Flags 
- pimsm_debug_timer_flags
- ripDebug StringFlags 
- rip_debug_flags
- ripngDebug StringFlags 
- ripng_debug_flags
- showFilter String
- Prefix-list as filter for showing routes.
- 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.
- bgpDebug stringFlags 
- bgp_debug_flags
- hostname string
- Hostname for this virtual domain router.
- igmpDebug stringFlags 
- igmp_debug_flags
- imiDebug stringFlags 
- imi_debug_flags
- isisDebug stringFlags 
- isis_debug_flags
- ospf6DebugEvents stringFlags 
- ospf6_debug_events_flags
- ospf6DebugIfsm stringFlags 
- ospf6_debug_ifsm_flags
- ospf6DebugLsa stringFlags 
- ospf6_debug_lsa_flags
- ospf6DebugNfsm stringFlags 
- ospf6_debug_nfsm_flags
- ospf6DebugNsm stringFlags 
- ospf6_debug_nsm_flags
- ospf6DebugPacket stringFlags 
- ospf6_debug_packet_flags
- ospf6DebugRoute stringFlags 
- ospf6_debug_route_flags
- ospfDebug stringEvents Flags 
- ospf_debug_events_flags
- ospfDebug stringIfsm Flags 
- ospf_debug_ifsm_flags
- ospfDebug stringLsa Flags 
- ospf_debug_lsa_flags
- ospfDebug stringNfsm Flags 
- ospf_debug_nfsm_flags
- ospfDebug stringNsm Flags 
- ospf_debug_nsm_flags
- ospfDebug stringPacket Flags 
- ospf_debug_packet_flags
- ospfDebug stringRoute Flags 
- ospf_debug_route_flags
- pimdmDebug stringFlags 
- pimdm_debug_flags
- pimsmDebug stringJoinprune Flags 
- pimsm_debug_joinprune_flags
- pimsmDebug stringSimple Flags 
- pimsm_debug_simple_flags
- pimsmDebug stringTimer Flags 
- pimsm_debug_timer_flags
- ripDebug stringFlags 
- rip_debug_flags
- ripngDebug stringFlags 
- ripng_debug_flags
- showFilter string
- Prefix-list as filter for showing routes.
- 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.
- bgp_debug_ strflags 
- bgp_debug_flags
- hostname str
- Hostname for this virtual domain router.
- igmp_debug_ strflags 
- igmp_debug_flags
- imi_debug_ strflags 
- imi_debug_flags
- isis_debug_ strflags 
- isis_debug_flags
- ospf6_debug_ strevents_ flags 
- ospf6_debug_events_flags
- ospf6_debug_ strifsm_ flags 
- ospf6_debug_ifsm_flags
- ospf6_debug_ strlsa_ flags 
- ospf6_debug_lsa_flags
- ospf6_debug_ strnfsm_ flags 
- ospf6_debug_nfsm_flags
- ospf6_debug_ strnsm_ flags 
- ospf6_debug_nsm_flags
- ospf6_debug_ strpacket_ flags 
- ospf6_debug_packet_flags
- ospf6_debug_ strroute_ flags 
- ospf6_debug_route_flags
- ospf_debug_ strevents_ flags 
- ospf_debug_events_flags
- ospf_debug_ strifsm_ flags 
- ospf_debug_ifsm_flags
- ospf_debug_ strlsa_ flags 
- ospf_debug_lsa_flags
- ospf_debug_ strnfsm_ flags 
- ospf_debug_nfsm_flags
- ospf_debug_ strnsm_ flags 
- ospf_debug_nsm_flags
- ospf_debug_ strpacket_ flags 
- ospf_debug_packet_flags
- ospf_debug_ strroute_ flags 
- ospf_debug_route_flags
- pimdm_debug_ strflags 
- pimdm_debug_flags
- pimsm_debug_ strjoinprune_ flags 
- pimsm_debug_joinprune_flags
- pimsm_debug_ strsimple_ flags 
- pimsm_debug_simple_flags
- pimsm_debug_ strtimer_ flags 
- pimsm_debug_timer_flags
- rip_debug_ strflags 
- rip_debug_flags
- ripng_debug_ strflags 
- ripng_debug_flags
- show_filter str
- Prefix-list as filter for showing routes.
- 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.
- bgpDebug StringFlags 
- bgp_debug_flags
- hostname String
- Hostname for this virtual domain router.
- igmpDebug StringFlags 
- igmp_debug_flags
- imiDebug StringFlags 
- imi_debug_flags
- isisDebug StringFlags 
- isis_debug_flags
- ospf6DebugEvents StringFlags 
- ospf6_debug_events_flags
- ospf6DebugIfsm StringFlags 
- ospf6_debug_ifsm_flags
- ospf6DebugLsa StringFlags 
- ospf6_debug_lsa_flags
- ospf6DebugNfsm StringFlags 
- ospf6_debug_nfsm_flags
- ospf6DebugNsm StringFlags 
- ospf6_debug_nsm_flags
- ospf6DebugPacket StringFlags 
- ospf6_debug_packet_flags
- ospf6DebugRoute StringFlags 
- ospf6_debug_route_flags
- ospfDebug StringEvents Flags 
- ospf_debug_events_flags
- ospfDebug StringIfsm Flags 
- ospf_debug_ifsm_flags
- ospfDebug StringLsa Flags 
- ospf_debug_lsa_flags
- ospfDebug StringNfsm Flags 
- ospf_debug_nfsm_flags
- ospfDebug StringNsm Flags 
- ospf_debug_nsm_flags
- ospfDebug StringPacket Flags 
- ospf_debug_packet_flags
- ospfDebug StringRoute Flags 
- ospf_debug_route_flags
- pimdmDebug StringFlags 
- pimdm_debug_flags
- pimsmDebug StringJoinprune Flags 
- pimsm_debug_joinprune_flags
- pimsmDebug StringSimple Flags 
- pimsm_debug_simple_flags
- pimsmDebug StringTimer Flags 
- pimsm_debug_timer_flags
- ripDebug StringFlags 
- rip_debug_flags
- ripngDebug StringFlags 
- ripng_debug_flags
- showFilter String
- Prefix-list as filter for showing routes.
- 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.
Import
Router Setting can be imported using any of these accepted formats:
$ pulumi import fortios:router/setting:Setting labelname RouterSetting
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:router/setting:Setting labelname RouterSetting
$ 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.
