1. Packages
  2. Fortios
  3. API Docs
  4. router
  5. Bfd6
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.router.Bfd6

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    Configure IPv6 BFD.

    Create Bfd6 Resource

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

    Constructor syntax

    new Bfd6(name: string, args?: Bfd6Args, opts?: CustomResourceOptions);
    @overload
    def Bfd6(resource_name: str,
             args: Optional[Bfd6Args] = None,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Bfd6(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             dynamic_sort_subtable: Optional[str] = None,
             get_all_tables: Optional[str] = None,
             multihop_templates: Optional[Sequence[Bfd6MultihopTemplateArgs]] = None,
             neighbors: Optional[Sequence[Bfd6NeighborArgs]] = None,
             vdomparam: Optional[str] = None)
    func NewBfd6(ctx *Context, name string, args *Bfd6Args, opts ...ResourceOption) (*Bfd6, error)
    public Bfd6(string name, Bfd6Args? args = null, CustomResourceOptions? opts = null)
    public Bfd6(String name, Bfd6Args args)
    public Bfd6(String name, Bfd6Args args, CustomResourceOptions options)
    
    type: fortios:router:Bfd6
    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 Bfd6Args
    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 Bfd6Args
    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 Bfd6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Bfd6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Bfd6Args
    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 bfd6Resource = new Fortios.Router.Bfd6("bfd6Resource", new()
    {
        DynamicSortSubtable = "string",
        GetAllTables = "string",
        MultihopTemplates = new[]
        {
            new Fortios.Router.Inputs.Bfd6MultihopTemplateArgs
            {
                AuthMode = "string",
                BfdDesiredMinTx = 0,
                BfdDetectMult = 0,
                BfdRequiredMinRx = 0,
                Dst = "string",
                Id = 0,
                Md5Key = "string",
                Src = "string",
            },
        },
        Neighbors = new[]
        {
            new Fortios.Router.Inputs.Bfd6NeighborArgs
            {
                Interface = "string",
                Ip6Address = "string",
            },
        },
        Vdomparam = "string",
    });
    
    example, err := router.NewBfd6(ctx, "bfd6Resource", &router.Bfd6Args{
    	DynamicSortSubtable: pulumi.String("string"),
    	GetAllTables:        pulumi.String("string"),
    	MultihopTemplates: router.Bfd6MultihopTemplateArray{
    		&router.Bfd6MultihopTemplateArgs{
    			AuthMode:         pulumi.String("string"),
    			BfdDesiredMinTx:  pulumi.Int(0),
    			BfdDetectMult:    pulumi.Int(0),
    			BfdRequiredMinRx: pulumi.Int(0),
    			Dst:              pulumi.String("string"),
    			Id:               pulumi.Int(0),
    			Md5Key:           pulumi.String("string"),
    			Src:              pulumi.String("string"),
    		},
    	},
    	Neighbors: router.Bfd6NeighborArray{
    		&router.Bfd6NeighborArgs{
    			Interface:  pulumi.String("string"),
    			Ip6Address: pulumi.String("string"),
    		},
    	},
    	Vdomparam: pulumi.String("string"),
    })
    
    var bfd6Resource = new Bfd6("bfd6Resource", Bfd6Args.builder()
        .dynamicSortSubtable("string")
        .getAllTables("string")
        .multihopTemplates(Bfd6MultihopTemplateArgs.builder()
            .authMode("string")
            .bfdDesiredMinTx(0)
            .bfdDetectMult(0)
            .bfdRequiredMinRx(0)
            .dst("string")
            .id(0)
            .md5Key("string")
            .src("string")
            .build())
        .neighbors(Bfd6NeighborArgs.builder()
            .interface_("string")
            .ip6Address("string")
            .build())
        .vdomparam("string")
        .build());
    
    bfd6_resource = fortios.router.Bfd6("bfd6Resource",
        dynamic_sort_subtable="string",
        get_all_tables="string",
        multihop_templates=[fortios.router.Bfd6MultihopTemplateArgs(
            auth_mode="string",
            bfd_desired_min_tx=0,
            bfd_detect_mult=0,
            bfd_required_min_rx=0,
            dst="string",
            id=0,
            md5_key="string",
            src="string",
        )],
        neighbors=[fortios.router.Bfd6NeighborArgs(
            interface="string",
            ip6_address="string",
        )],
        vdomparam="string")
    
    const bfd6Resource = new fortios.router.Bfd6("bfd6Resource", {
        dynamicSortSubtable: "string",
        getAllTables: "string",
        multihopTemplates: [{
            authMode: "string",
            bfdDesiredMinTx: 0,
            bfdDetectMult: 0,
            bfdRequiredMinRx: 0,
            dst: "string",
            id: 0,
            md5Key: "string",
            src: "string",
        }],
        neighbors: [{
            "interface": "string",
            ip6Address: "string",
        }],
        vdomparam: "string",
    });
    
    type: fortios:router:Bfd6
    properties:
        dynamicSortSubtable: string
        getAllTables: string
        multihopTemplates:
            - authMode: string
              bfdDesiredMinTx: 0
              bfdDetectMult: 0
              bfdRequiredMinRx: 0
              dst: string
              id: 0
              md5Key: string
              src: string
        neighbors:
            - interface: string
              ip6Address: string
        vdomparam: string
    

    Bfd6 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 Bfd6 resource accepts the following input properties:

    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MultihopTemplates List<Pulumiverse.Fortios.Router.Inputs.Bfd6MultihopTemplate>
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    Neighbors List<Pulumiverse.Fortios.Router.Inputs.Bfd6Neighbor>
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MultihopTemplates []Bfd6MultihopTemplateArgs
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    Neighbors []Bfd6NeighborArgs
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihopTemplates List<Bfd6MultihopTemplate>
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors List<Bfd6Neighbor>
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihopTemplates Bfd6MultihopTemplate[]
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors Bfd6Neighbor[]
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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_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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihop_templates Sequence[Bfd6MultihopTemplateArgs]
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors Sequence[Bfd6NeighborArgs]
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihopTemplates List<Property Map>
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors List<Property Map>
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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 Bfd6 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 Bfd6 Resource

    Get an existing Bfd6 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?: Bfd6State, opts?: CustomResourceOptions): Bfd6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            multihop_templates: Optional[Sequence[Bfd6MultihopTemplateArgs]] = None,
            neighbors: Optional[Sequence[Bfd6NeighborArgs]] = None,
            vdomparam: Optional[str] = None) -> Bfd6
    func GetBfd6(ctx *Context, name string, id IDInput, state *Bfd6State, opts ...ResourceOption) (*Bfd6, error)
    public static Bfd6 Get(string name, Input<string> id, Bfd6State? state, CustomResourceOptions? opts = null)
    public static Bfd6 get(String name, Output<String> id, Bfd6State 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:
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MultihopTemplates List<Pulumiverse.Fortios.Router.Inputs.Bfd6MultihopTemplate>
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    Neighbors List<Pulumiverse.Fortios.Router.Inputs.Bfd6Neighbor>
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MultihopTemplates []Bfd6MultihopTemplateArgs
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    Neighbors []Bfd6NeighborArgs
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihopTemplates List<Bfd6MultihopTemplate>
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors List<Bfd6Neighbor>
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihopTemplates Bfd6MultihopTemplate[]
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors Bfd6Neighbor[]
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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_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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihop_templates Sequence[Bfd6MultihopTemplateArgs]
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors Sequence[Bfd6NeighborArgs]
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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.
    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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    multihopTemplates List<Property Map>
    BFD IPv6 multi-hop template table. The structure of multihop_template block is documented below.
    neighbors List<Property Map>
    Configure neighbor of IPv6 BFD. The structure of neighbor block is documented below.
    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

    Bfd6MultihopTemplate, Bfd6MultihopTemplateArgs

    AuthMode string
    Authentication mode. Valid values: none, md5.
    BfdDesiredMinTx int
    BFD desired minimal transmit interval (milliseconds).
    BfdDetectMult int
    BFD detection multiplier.
    BfdRequiredMinRx int
    BFD required minimal receive interval (milliseconds).
    Dst string
    Destination prefix.
    Id int
    ID.
    Md5Key string
    MD5 key of key ID 1.
    Src string
    Source prefix.
    AuthMode string
    Authentication mode. Valid values: none, md5.
    BfdDesiredMinTx int
    BFD desired minimal transmit interval (milliseconds).
    BfdDetectMult int
    BFD detection multiplier.
    BfdRequiredMinRx int
    BFD required minimal receive interval (milliseconds).
    Dst string
    Destination prefix.
    Id int
    ID.
    Md5Key string
    MD5 key of key ID 1.
    Src string
    Source prefix.
    authMode String
    Authentication mode. Valid values: none, md5.
    bfdDesiredMinTx Integer
    BFD desired minimal transmit interval (milliseconds).
    bfdDetectMult Integer
    BFD detection multiplier.
    bfdRequiredMinRx Integer
    BFD required minimal receive interval (milliseconds).
    dst String
    Destination prefix.
    id Integer
    ID.
    md5Key String
    MD5 key of key ID 1.
    src String
    Source prefix.
    authMode string
    Authentication mode. Valid values: none, md5.
    bfdDesiredMinTx number
    BFD desired minimal transmit interval (milliseconds).
    bfdDetectMult number
    BFD detection multiplier.
    bfdRequiredMinRx number
    BFD required minimal receive interval (milliseconds).
    dst string
    Destination prefix.
    id number
    ID.
    md5Key string
    MD5 key of key ID 1.
    src string
    Source prefix.
    auth_mode str
    Authentication mode. Valid values: none, md5.
    bfd_desired_min_tx int
    BFD desired minimal transmit interval (milliseconds).
    bfd_detect_mult int
    BFD detection multiplier.
    bfd_required_min_rx int
    BFD required minimal receive interval (milliseconds).
    dst str
    Destination prefix.
    id int
    ID.
    md5_key str
    MD5 key of key ID 1.
    src str
    Source prefix.
    authMode String
    Authentication mode. Valid values: none, md5.
    bfdDesiredMinTx Number
    BFD desired minimal transmit interval (milliseconds).
    bfdDetectMult Number
    BFD detection multiplier.
    bfdRequiredMinRx Number
    BFD required minimal receive interval (milliseconds).
    dst String
    Destination prefix.
    id Number
    ID.
    md5Key String
    MD5 key of key ID 1.
    src String
    Source prefix.

    Bfd6Neighbor, Bfd6NeighborArgs

    Interface string
    Interface to the BFD neighbor.
    Ip6Address string
    IPv6 address of the BFD neighbor.
    Interface string
    Interface to the BFD neighbor.
    Ip6Address string
    IPv6 address of the BFD neighbor.
    interface_ String
    Interface to the BFD neighbor.
    ip6Address String
    IPv6 address of the BFD neighbor.
    interface string
    Interface to the BFD neighbor.
    ip6Address string
    IPv6 address of the BFD neighbor.
    interface str
    Interface to the BFD neighbor.
    ip6_address str
    IPv6 address of the BFD neighbor.
    interface String
    Interface to the BFD neighbor.
    ip6Address String
    IPv6 address of the BFD neighbor.

    Import

    Router Bfd6 can be imported using any of these accepted formats:

    $ pulumi import fortios:router/bfd6:Bfd6 labelname RouterBfd6
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:router/bfd6:Bfd6 labelname RouterBfd6
    

    $ 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.5 published on Tuesday, Apr 9, 2024 by pulumiverse