1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectRouterRoutemapRule
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectRouterRoutemapRule

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Rule.

    This resource is a sub resource for variable rule of resource fortimanager.ObjectRouterRoutemap. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectRouterRoutemap = new fortimanager.ObjectRouterRoutemap("trnameObjectRouterRoutemap", {});
    const trnameObjectRouterRoutemapRule = new fortimanager.ObjectRouterRoutemapRule("trnameObjectRouterRoutemapRule", {
        routeMap: trnameObjectRouterRoutemap.name,
        action: "deny",
        fosid: 1,
        matchCommunity: "Priority_1",
        matchExtcommunityExact: "enable",
    }, {
        dependsOn: [trnameObjectRouterRoutemap],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_router_routemap = fortimanager.ObjectRouterRoutemap("trnameObjectRouterRoutemap")
    trname_object_router_routemap_rule = fortimanager.ObjectRouterRoutemapRule("trnameObjectRouterRoutemapRule",
        route_map=trname_object_router_routemap.name,
        action="deny",
        fosid=1,
        match_community="Priority_1",
        match_extcommunity_exact="enable",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_router_routemap]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectRouterRoutemap, err := fortimanager.NewObjectRouterRoutemap(ctx, "trnameObjectRouterRoutemap", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectRouterRoutemapRule(ctx, "trnameObjectRouterRoutemapRule", &fortimanager.ObjectRouterRoutemapRuleArgs{
    			RouteMap:               trnameObjectRouterRoutemap.Name,
    			Action:                 pulumi.String("deny"),
    			Fosid:                  pulumi.Float64(1),
    			MatchCommunity:         pulumi.String("Priority_1"),
    			MatchExtcommunityExact: pulumi.String("enable"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectRouterRoutemap,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectRouterRoutemap = new Fortimanager.ObjectRouterRoutemap("trnameObjectRouterRoutemap");
    
        var trnameObjectRouterRoutemapRule = new Fortimanager.ObjectRouterRoutemapRule("trnameObjectRouterRoutemapRule", new()
        {
            RouteMap = trnameObjectRouterRoutemap.Name,
            Action = "deny",
            Fosid = 1,
            MatchCommunity = "Priority_1",
            MatchExtcommunityExact = "enable",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectRouterRoutemap,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectRouterRoutemap;
    import com.pulumi.fortimanager.ObjectRouterRoutemapRule;
    import com.pulumi.fortimanager.ObjectRouterRoutemapRuleArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectRouterRoutemap = new ObjectRouterRoutemap("trnameObjectRouterRoutemap");
    
            var trnameObjectRouterRoutemapRule = new ObjectRouterRoutemapRule("trnameObjectRouterRoutemapRule", ObjectRouterRoutemapRuleArgs.builder()
                .routeMap(trnameObjectRouterRoutemap.name())
                .action("deny")
                .fosid(1)
                .matchCommunity("Priority_1")
                .matchExtcommunityExact("enable")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectRouterRoutemap)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectRouterRoutemapRule:
        type: fortimanager:ObjectRouterRoutemapRule
        properties:
          routeMap: ${trnameObjectRouterRoutemap.name}
          action: deny
          fosid: 1
          matchCommunity: Priority_1
          matchExtcommunityExact: enable
        options:
          dependsOn:
            - ${trnameObjectRouterRoutemap}
      trnameObjectRouterRoutemap:
        type: fortimanager:ObjectRouterRoutemap
    

    Create ObjectRouterRoutemapRule Resource

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

    Constructor syntax

    new ObjectRouterRoutemapRule(name: string, args: ObjectRouterRoutemapRuleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectRouterRoutemapRule(resource_name: str,
                                 args: ObjectRouterRoutemapRuleInitArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectRouterRoutemapRule(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 route_map: Optional[str] = None,
                                 action: Optional[str] = None,
                                 adom: Optional[str] = None,
                                 fosid: Optional[float] = None,
                                 match_as_path: Optional[str] = None,
                                 match_community: Optional[str] = None,
                                 match_community_exact: Optional[str] = None,
                                 match_extcommunity: Optional[str] = None,
                                 match_extcommunity_exact: Optional[str] = None,
                                 match_flags: Optional[float] = None,
                                 match_interface: Optional[str] = None,
                                 match_ip6_address: Optional[str] = None,
                                 match_ip6_nexthop: Optional[str] = None,
                                 match_ip_address: Optional[str] = None,
                                 match_ip_nexthop: Optional[str] = None,
                                 match_metric: Optional[str] = None,
                                 match_origin: Optional[str] = None,
                                 match_route_type: Optional[str] = None,
                                 match_tag: Optional[str] = None,
                                 match_vrf: Optional[float] = None,
                                 object_router_routemap_rule_id: Optional[str] = None,
                                 scopetype: Optional[str] = None,
                                 set_aggregator_as: Optional[float] = None,
                                 set_aggregator_ip: Optional[str] = None,
                                 set_aspath_action: Optional[str] = None,
                                 set_aspaths: Optional[Sequence[str]] = None,
                                 set_atomic_aggregate: Optional[str] = None,
                                 set_communities: Optional[Sequence[str]] = None,
                                 set_community_additive: Optional[str] = None,
                                 set_community_delete: Optional[str] = None,
                                 set_dampening_max_suppress: Optional[float] = None,
                                 set_dampening_reachability_half_life: Optional[float] = None,
                                 set_dampening_reuse: Optional[float] = None,
                                 set_dampening_suppress: Optional[float] = None,
                                 set_dampening_unreachability_half_life: Optional[float] = None,
                                 set_extcommunity_rts: Optional[Sequence[str]] = None,
                                 set_extcommunity_soos: Optional[Sequence[str]] = None,
                                 set_flags: Optional[float] = None,
                                 set_ip6_nexthop: Optional[str] = None,
                                 set_ip6_nexthop_local: Optional[str] = None,
                                 set_ip_nexthop: Optional[str] = None,
                                 set_ip_prefsrc: Optional[str] = None,
                                 set_local_preference: Optional[str] = None,
                                 set_metric: Optional[str] = None,
                                 set_metric_type: Optional[str] = None,
                                 set_origin: Optional[str] = None,
                                 set_originator_id: Optional[str] = None,
                                 set_priority: Optional[float] = None,
                                 set_route_tag: Optional[str] = None,
                                 set_tag: Optional[str] = None,
                                 set_vpnv4_nexthop: Optional[str] = None,
                                 set_vpnv6_nexthop: Optional[str] = None,
                                 set_vpnv6_nexthop_local: Optional[str] = None,
                                 set_weight: Optional[str] = None)
    func NewObjectRouterRoutemapRule(ctx *Context, name string, args ObjectRouterRoutemapRuleArgs, opts ...ResourceOption) (*ObjectRouterRoutemapRule, error)
    public ObjectRouterRoutemapRule(string name, ObjectRouterRoutemapRuleArgs args, CustomResourceOptions? opts = null)
    public ObjectRouterRoutemapRule(String name, ObjectRouterRoutemapRuleArgs args)
    public ObjectRouterRoutemapRule(String name, ObjectRouterRoutemapRuleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectRouterRoutemapRule
    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 ObjectRouterRoutemapRuleArgs
    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 ObjectRouterRoutemapRuleInitArgs
    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 ObjectRouterRoutemapRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectRouterRoutemapRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectRouterRoutemapRuleArgs
    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 objectRouterRoutemapRuleResource = new Fortimanager.ObjectRouterRoutemapRule("objectRouterRoutemapRuleResource", new()
    {
        RouteMap = "string",
        Action = "string",
        Adom = "string",
        Fosid = 0,
        MatchAsPath = "string",
        MatchCommunity = "string",
        MatchCommunityExact = "string",
        MatchExtcommunity = "string",
        MatchExtcommunityExact = "string",
        MatchFlags = 0,
        MatchInterface = "string",
        MatchIp6Address = "string",
        MatchIp6Nexthop = "string",
        MatchIpAddress = "string",
        MatchIpNexthop = "string",
        MatchMetric = "string",
        MatchOrigin = "string",
        MatchRouteType = "string",
        MatchTag = "string",
        MatchVrf = 0,
        ObjectRouterRoutemapRuleId = "string",
        Scopetype = "string",
        SetAggregatorAs = 0,
        SetAggregatorIp = "string",
        SetAspathAction = "string",
        SetAspaths = new[]
        {
            "string",
        },
        SetAtomicAggregate = "string",
        SetCommunities = new[]
        {
            "string",
        },
        SetCommunityAdditive = "string",
        SetCommunityDelete = "string",
        SetDampeningMaxSuppress = 0,
        SetDampeningReachabilityHalfLife = 0,
        SetDampeningReuse = 0,
        SetDampeningSuppress = 0,
        SetDampeningUnreachabilityHalfLife = 0,
        SetExtcommunityRts = new[]
        {
            "string",
        },
        SetExtcommunitySoos = new[]
        {
            "string",
        },
        SetFlags = 0,
        SetIp6Nexthop = "string",
        SetIp6NexthopLocal = "string",
        SetIpNexthop = "string",
        SetIpPrefsrc = "string",
        SetLocalPreference = "string",
        SetMetric = "string",
        SetMetricType = "string",
        SetOrigin = "string",
        SetOriginatorId = "string",
        SetPriority = 0,
        SetRouteTag = "string",
        SetTag = "string",
        SetVpnv4Nexthop = "string",
        SetVpnv6Nexthop = "string",
        SetVpnv6NexthopLocal = "string",
        SetWeight = "string",
    });
    
    example, err := fortimanager.NewObjectRouterRoutemapRule(ctx, "objectRouterRoutemapRuleResource", &fortimanager.ObjectRouterRoutemapRuleArgs{
    RouteMap: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    MatchAsPath: pulumi.String("string"),
    MatchCommunity: pulumi.String("string"),
    MatchCommunityExact: pulumi.String("string"),
    MatchExtcommunity: pulumi.String("string"),
    MatchExtcommunityExact: pulumi.String("string"),
    MatchFlags: pulumi.Float64(0),
    MatchInterface: pulumi.String("string"),
    MatchIp6Address: pulumi.String("string"),
    MatchIp6Nexthop: pulumi.String("string"),
    MatchIpAddress: pulumi.String("string"),
    MatchIpNexthop: pulumi.String("string"),
    MatchMetric: pulumi.String("string"),
    MatchOrigin: pulumi.String("string"),
    MatchRouteType: pulumi.String("string"),
    MatchTag: pulumi.String("string"),
    MatchVrf: pulumi.Float64(0),
    ObjectRouterRoutemapRuleId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SetAggregatorAs: pulumi.Float64(0),
    SetAggregatorIp: pulumi.String("string"),
    SetAspathAction: pulumi.String("string"),
    SetAspaths: pulumi.StringArray{
    pulumi.String("string"),
    },
    SetAtomicAggregate: pulumi.String("string"),
    SetCommunities: pulumi.StringArray{
    pulumi.String("string"),
    },
    SetCommunityAdditive: pulumi.String("string"),
    SetCommunityDelete: pulumi.String("string"),
    SetDampeningMaxSuppress: pulumi.Float64(0),
    SetDampeningReachabilityHalfLife: pulumi.Float64(0),
    SetDampeningReuse: pulumi.Float64(0),
    SetDampeningSuppress: pulumi.Float64(0),
    SetDampeningUnreachabilityHalfLife: pulumi.Float64(0),
    SetExtcommunityRts: pulumi.StringArray{
    pulumi.String("string"),
    },
    SetExtcommunitySoos: pulumi.StringArray{
    pulumi.String("string"),
    },
    SetFlags: pulumi.Float64(0),
    SetIp6Nexthop: pulumi.String("string"),
    SetIp6NexthopLocal: pulumi.String("string"),
    SetIpNexthop: pulumi.String("string"),
    SetIpPrefsrc: pulumi.String("string"),
    SetLocalPreference: pulumi.String("string"),
    SetMetric: pulumi.String("string"),
    SetMetricType: pulumi.String("string"),
    SetOrigin: pulumi.String("string"),
    SetOriginatorId: pulumi.String("string"),
    SetPriority: pulumi.Float64(0),
    SetRouteTag: pulumi.String("string"),
    SetTag: pulumi.String("string"),
    SetVpnv4Nexthop: pulumi.String("string"),
    SetVpnv6Nexthop: pulumi.String("string"),
    SetVpnv6NexthopLocal: pulumi.String("string"),
    SetWeight: pulumi.String("string"),
    })
    
    var objectRouterRoutemapRuleResource = new ObjectRouterRoutemapRule("objectRouterRoutemapRuleResource", ObjectRouterRoutemapRuleArgs.builder()
        .routeMap("string")
        .action("string")
        .adom("string")
        .fosid(0)
        .matchAsPath("string")
        .matchCommunity("string")
        .matchCommunityExact("string")
        .matchExtcommunity("string")
        .matchExtcommunityExact("string")
        .matchFlags(0)
        .matchInterface("string")
        .matchIp6Address("string")
        .matchIp6Nexthop("string")
        .matchIpAddress("string")
        .matchIpNexthop("string")
        .matchMetric("string")
        .matchOrigin("string")
        .matchRouteType("string")
        .matchTag("string")
        .matchVrf(0)
        .objectRouterRoutemapRuleId("string")
        .scopetype("string")
        .setAggregatorAs(0)
        .setAggregatorIp("string")
        .setAspathAction("string")
        .setAspaths("string")
        .setAtomicAggregate("string")
        .setCommunities("string")
        .setCommunityAdditive("string")
        .setCommunityDelete("string")
        .setDampeningMaxSuppress(0)
        .setDampeningReachabilityHalfLife(0)
        .setDampeningReuse(0)
        .setDampeningSuppress(0)
        .setDampeningUnreachabilityHalfLife(0)
        .setExtcommunityRts("string")
        .setExtcommunitySoos("string")
        .setFlags(0)
        .setIp6Nexthop("string")
        .setIp6NexthopLocal("string")
        .setIpNexthop("string")
        .setIpPrefsrc("string")
        .setLocalPreference("string")
        .setMetric("string")
        .setMetricType("string")
        .setOrigin("string")
        .setOriginatorId("string")
        .setPriority(0)
        .setRouteTag("string")
        .setTag("string")
        .setVpnv4Nexthop("string")
        .setVpnv6Nexthop("string")
        .setVpnv6NexthopLocal("string")
        .setWeight("string")
        .build());
    
    object_router_routemap_rule_resource = fortimanager.ObjectRouterRoutemapRule("objectRouterRoutemapRuleResource",
        route_map="string",
        action="string",
        adom="string",
        fosid=0,
        match_as_path="string",
        match_community="string",
        match_community_exact="string",
        match_extcommunity="string",
        match_extcommunity_exact="string",
        match_flags=0,
        match_interface="string",
        match_ip6_address="string",
        match_ip6_nexthop="string",
        match_ip_address="string",
        match_ip_nexthop="string",
        match_metric="string",
        match_origin="string",
        match_route_type="string",
        match_tag="string",
        match_vrf=0,
        object_router_routemap_rule_id="string",
        scopetype="string",
        set_aggregator_as=0,
        set_aggregator_ip="string",
        set_aspath_action="string",
        set_aspaths=["string"],
        set_atomic_aggregate="string",
        set_communities=["string"],
        set_community_additive="string",
        set_community_delete="string",
        set_dampening_max_suppress=0,
        set_dampening_reachability_half_life=0,
        set_dampening_reuse=0,
        set_dampening_suppress=0,
        set_dampening_unreachability_half_life=0,
        set_extcommunity_rts=["string"],
        set_extcommunity_soos=["string"],
        set_flags=0,
        set_ip6_nexthop="string",
        set_ip6_nexthop_local="string",
        set_ip_nexthop="string",
        set_ip_prefsrc="string",
        set_local_preference="string",
        set_metric="string",
        set_metric_type="string",
        set_origin="string",
        set_originator_id="string",
        set_priority=0,
        set_route_tag="string",
        set_tag="string",
        set_vpnv4_nexthop="string",
        set_vpnv6_nexthop="string",
        set_vpnv6_nexthop_local="string",
        set_weight="string")
    
    const objectRouterRoutemapRuleResource = new fortimanager.ObjectRouterRoutemapRule("objectRouterRoutemapRuleResource", {
        routeMap: "string",
        action: "string",
        adom: "string",
        fosid: 0,
        matchAsPath: "string",
        matchCommunity: "string",
        matchCommunityExact: "string",
        matchExtcommunity: "string",
        matchExtcommunityExact: "string",
        matchFlags: 0,
        matchInterface: "string",
        matchIp6Address: "string",
        matchIp6Nexthop: "string",
        matchIpAddress: "string",
        matchIpNexthop: "string",
        matchMetric: "string",
        matchOrigin: "string",
        matchRouteType: "string",
        matchTag: "string",
        matchVrf: 0,
        objectRouterRoutemapRuleId: "string",
        scopetype: "string",
        setAggregatorAs: 0,
        setAggregatorIp: "string",
        setAspathAction: "string",
        setAspaths: ["string"],
        setAtomicAggregate: "string",
        setCommunities: ["string"],
        setCommunityAdditive: "string",
        setCommunityDelete: "string",
        setDampeningMaxSuppress: 0,
        setDampeningReachabilityHalfLife: 0,
        setDampeningReuse: 0,
        setDampeningSuppress: 0,
        setDampeningUnreachabilityHalfLife: 0,
        setExtcommunityRts: ["string"],
        setExtcommunitySoos: ["string"],
        setFlags: 0,
        setIp6Nexthop: "string",
        setIp6NexthopLocal: "string",
        setIpNexthop: "string",
        setIpPrefsrc: "string",
        setLocalPreference: "string",
        setMetric: "string",
        setMetricType: "string",
        setOrigin: "string",
        setOriginatorId: "string",
        setPriority: 0,
        setRouteTag: "string",
        setTag: "string",
        setVpnv4Nexthop: "string",
        setVpnv6Nexthop: "string",
        setVpnv6NexthopLocal: "string",
        setWeight: "string",
    });
    
    type: fortimanager:ObjectRouterRoutemapRule
    properties:
        action: string
        adom: string
        fosid: 0
        matchAsPath: string
        matchCommunity: string
        matchCommunityExact: string
        matchExtcommunity: string
        matchExtcommunityExact: string
        matchFlags: 0
        matchInterface: string
        matchIp6Address: string
        matchIp6Nexthop: string
        matchIpAddress: string
        matchIpNexthop: string
        matchMetric: string
        matchOrigin: string
        matchRouteType: string
        matchTag: string
        matchVrf: 0
        objectRouterRoutemapRuleId: string
        routeMap: string
        scopetype: string
        setAggregatorAs: 0
        setAggregatorIp: string
        setAspathAction: string
        setAspaths:
            - string
        setAtomicAggregate: string
        setCommunities:
            - string
        setCommunityAdditive: string
        setCommunityDelete: string
        setDampeningMaxSuppress: 0
        setDampeningReachabilityHalfLife: 0
        setDampeningReuse: 0
        setDampeningSuppress: 0
        setDampeningUnreachabilityHalfLife: 0
        setExtcommunityRts:
            - string
        setExtcommunitySoos:
            - string
        setFlags: 0
        setIp6Nexthop: string
        setIp6NexthopLocal: string
        setIpNexthop: string
        setIpPrefsrc: string
        setLocalPreference: string
        setMetric: string
        setMetricType: string
        setOrigin: string
        setOriginatorId: string
        setPriority: 0
        setRouteTag: string
        setTag: string
        setVpnv4Nexthop: string
        setVpnv6Nexthop: string
        setVpnv6NexthopLocal: string
        setWeight: string
    

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

    RouteMap string
    Route Map.
    Action string
    Action. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid double
    Rule ID.
    MatchAsPath string
    Match BGP AS path list.
    MatchCommunity string
    Match BGP community list.
    MatchCommunityExact string
    Enable/disable exact matching of communities. Valid values: disable, enable.
    MatchExtcommunity string
    Match BGP extended community list.
    MatchExtcommunityExact string
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    MatchFlags double
    Match-Flags.
    MatchInterface string
    Match interface configuration.
    MatchIp6Address string
    Match IPv6 address permitted by access-list6 or prefix-list6.
    MatchIp6Nexthop string
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    MatchIpAddress string
    Match IP address permitted by access-list or prefix-list.
    MatchIpNexthop string
    Match next hop IP address passed by access-list or prefix-list.
    MatchMetric string
    Match metric for redistribute routes.
    MatchOrigin string
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    MatchRouteType string
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    MatchTag string
    Match tag.
    MatchVrf double
    Match VRF ID.
    ObjectRouterRoutemapRuleId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SetAggregatorAs double
    BGP aggregator AS.
    SetAggregatorIp string
    BGP aggregator IP.
    SetAspathAction string
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    SetAspaths List<string>
    Prepend BGP AS path attribute.
    SetAtomicAggregate string
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    SetCommunities List<string>
    BGP community attribute.
    SetCommunityAdditive string
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    SetCommunityDelete string
    Delete communities matching community list.
    SetDampeningMaxSuppress double
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    SetDampeningReachabilityHalfLife double
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    SetDampeningReuse double
    Value to start reusing a route (1 - 20000, 0 = unset).
    SetDampeningSuppress double
    Value to start suppressing a route (1 - 20000, 0 = unset).
    SetDampeningUnreachabilityHalfLife double
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    SetExtcommunityRts List<string>
    Route Target extended community.
    SetExtcommunitySoos List<string>
    Site-of-Origin extended community.
    SetFlags double
    Set-Flags.
    SetIp6Nexthop string
    IPv6 global address of next hop.
    SetIp6NexthopLocal string
    IPv6 local address of next hop.
    SetIpNexthop string
    IP address of next hop.
    SetIpPrefsrc string
    IP address of preferred source.
    SetLocalPreference string
    BGP local preference path attribute.
    SetMetric string
    Metric value.
    SetMetricType string
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    SetOrigin string
    BGP origin code. Valid values: none, egp, igp, incomplete.
    SetOriginatorId string
    BGP originator ID attribute.
    SetPriority double
    Priority for routing table.
    SetRouteTag string
    Route tag for routing table.
    SetTag string
    Tag value.
    SetVpnv4Nexthop string
    IP address of VPNv4 next-hop.
    SetVpnv6Nexthop string
    IPv6 global address of VPNv6 next-hop.
    SetVpnv6NexthopLocal string
    IPv6 link-local address of VPNv6 next-hop.
    SetWeight string
    BGP weight for routing table.
    RouteMap string
    Route Map.
    Action string
    Action. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid float64
    Rule ID.
    MatchAsPath string
    Match BGP AS path list.
    MatchCommunity string
    Match BGP community list.
    MatchCommunityExact string
    Enable/disable exact matching of communities. Valid values: disable, enable.
    MatchExtcommunity string
    Match BGP extended community list.
    MatchExtcommunityExact string
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    MatchFlags float64
    Match-Flags.
    MatchInterface string
    Match interface configuration.
    MatchIp6Address string
    Match IPv6 address permitted by access-list6 or prefix-list6.
    MatchIp6Nexthop string
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    MatchIpAddress string
    Match IP address permitted by access-list or prefix-list.
    MatchIpNexthop string
    Match next hop IP address passed by access-list or prefix-list.
    MatchMetric string
    Match metric for redistribute routes.
    MatchOrigin string
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    MatchRouteType string
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    MatchTag string
    Match tag.
    MatchVrf float64
    Match VRF ID.
    ObjectRouterRoutemapRuleId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SetAggregatorAs float64
    BGP aggregator AS.
    SetAggregatorIp string
    BGP aggregator IP.
    SetAspathAction string
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    SetAspaths []string
    Prepend BGP AS path attribute.
    SetAtomicAggregate string
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    SetCommunities []string
    BGP community attribute.
    SetCommunityAdditive string
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    SetCommunityDelete string
    Delete communities matching community list.
    SetDampeningMaxSuppress float64
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    SetDampeningReachabilityHalfLife float64
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    SetDampeningReuse float64
    Value to start reusing a route (1 - 20000, 0 = unset).
    SetDampeningSuppress float64
    Value to start suppressing a route (1 - 20000, 0 = unset).
    SetDampeningUnreachabilityHalfLife float64
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    SetExtcommunityRts []string
    Route Target extended community.
    SetExtcommunitySoos []string
    Site-of-Origin extended community.
    SetFlags float64
    Set-Flags.
    SetIp6Nexthop string
    IPv6 global address of next hop.
    SetIp6NexthopLocal string
    IPv6 local address of next hop.
    SetIpNexthop string
    IP address of next hop.
    SetIpPrefsrc string
    IP address of preferred source.
    SetLocalPreference string
    BGP local preference path attribute.
    SetMetric string
    Metric value.
    SetMetricType string
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    SetOrigin string
    BGP origin code. Valid values: none, egp, igp, incomplete.
    SetOriginatorId string
    BGP originator ID attribute.
    SetPriority float64
    Priority for routing table.
    SetRouteTag string
    Route tag for routing table.
    SetTag string
    Tag value.
    SetVpnv4Nexthop string
    IP address of VPNv4 next-hop.
    SetVpnv6Nexthop string
    IPv6 global address of VPNv6 next-hop.
    SetVpnv6NexthopLocal string
    IPv6 link-local address of VPNv6 next-hop.
    SetWeight string
    BGP weight for routing table.
    routeMap String
    Route Map.
    action String
    Action. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Double
    Rule ID.
    matchAsPath String
    Match BGP AS path list.
    matchCommunity String
    Match BGP community list.
    matchCommunityExact String
    Enable/disable exact matching of communities. Valid values: disable, enable.
    matchExtcommunity String
    Match BGP extended community list.
    matchExtcommunityExact String
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    matchFlags Double
    Match-Flags.
    matchInterface String
    Match interface configuration.
    matchIp6Address String
    Match IPv6 address permitted by access-list6 or prefix-list6.
    matchIp6Nexthop String
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    matchIpAddress String
    Match IP address permitted by access-list or prefix-list.
    matchIpNexthop String
    Match next hop IP address passed by access-list or prefix-list.
    matchMetric String
    Match metric for redistribute routes.
    matchOrigin String
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    matchRouteType String
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    matchTag String
    Match tag.
    matchVrf Double
    Match VRF ID.
    objectRouterRoutemapRuleId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    setAggregatorAs Double
    BGP aggregator AS.
    setAggregatorIp String
    BGP aggregator IP.
    setAspathAction String
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    setAspaths List<String>
    Prepend BGP AS path attribute.
    setAtomicAggregate String
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    setCommunities List<String>
    BGP community attribute.
    setCommunityAdditive String
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    setCommunityDelete String
    Delete communities matching community list.
    setDampeningMaxSuppress Double
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    setDampeningReachabilityHalfLife Double
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    setDampeningReuse Double
    Value to start reusing a route (1 - 20000, 0 = unset).
    setDampeningSuppress Double
    Value to start suppressing a route (1 - 20000, 0 = unset).
    setDampeningUnreachabilityHalfLife Double
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    setExtcommunityRts List<String>
    Route Target extended community.
    setExtcommunitySoos List<String>
    Site-of-Origin extended community.
    setFlags Double
    Set-Flags.
    setIp6Nexthop String
    IPv6 global address of next hop.
    setIp6NexthopLocal String
    IPv6 local address of next hop.
    setIpNexthop String
    IP address of next hop.
    setIpPrefsrc String
    IP address of preferred source.
    setLocalPreference String
    BGP local preference path attribute.
    setMetric String
    Metric value.
    setMetricType String
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    setOrigin String
    BGP origin code. Valid values: none, egp, igp, incomplete.
    setOriginatorId String
    BGP originator ID attribute.
    setPriority Double
    Priority for routing table.
    setRouteTag String
    Route tag for routing table.
    setTag String
    Tag value.
    setVpnv4Nexthop String
    IP address of VPNv4 next-hop.
    setVpnv6Nexthop String
    IPv6 global address of VPNv6 next-hop.
    setVpnv6NexthopLocal String
    IPv6 link-local address of VPNv6 next-hop.
    setWeight String
    BGP weight for routing table.
    routeMap string
    Route Map.
    action string
    Action. Valid values: permit, deny.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid number
    Rule ID.
    matchAsPath string
    Match BGP AS path list.
    matchCommunity string
    Match BGP community list.
    matchCommunityExact string
    Enable/disable exact matching of communities. Valid values: disable, enable.
    matchExtcommunity string
    Match BGP extended community list.
    matchExtcommunityExact string
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    matchFlags number
    Match-Flags.
    matchInterface string
    Match interface configuration.
    matchIp6Address string
    Match IPv6 address permitted by access-list6 or prefix-list6.
    matchIp6Nexthop string
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    matchIpAddress string
    Match IP address permitted by access-list or prefix-list.
    matchIpNexthop string
    Match next hop IP address passed by access-list or prefix-list.
    matchMetric string
    Match metric for redistribute routes.
    matchOrigin string
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    matchRouteType string
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    matchTag string
    Match tag.
    matchVrf number
    Match VRF ID.
    objectRouterRoutemapRuleId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    setAggregatorAs number
    BGP aggregator AS.
    setAggregatorIp string
    BGP aggregator IP.
    setAspathAction string
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    setAspaths string[]
    Prepend BGP AS path attribute.
    setAtomicAggregate string
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    setCommunities string[]
    BGP community attribute.
    setCommunityAdditive string
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    setCommunityDelete string
    Delete communities matching community list.
    setDampeningMaxSuppress number
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    setDampeningReachabilityHalfLife number
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    setDampeningReuse number
    Value to start reusing a route (1 - 20000, 0 = unset).
    setDampeningSuppress number
    Value to start suppressing a route (1 - 20000, 0 = unset).
    setDampeningUnreachabilityHalfLife number
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    setExtcommunityRts string[]
    Route Target extended community.
    setExtcommunitySoos string[]
    Site-of-Origin extended community.
    setFlags number
    Set-Flags.
    setIp6Nexthop string
    IPv6 global address of next hop.
    setIp6NexthopLocal string
    IPv6 local address of next hop.
    setIpNexthop string
    IP address of next hop.
    setIpPrefsrc string
    IP address of preferred source.
    setLocalPreference string
    BGP local preference path attribute.
    setMetric string
    Metric value.
    setMetricType string
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    setOrigin string
    BGP origin code. Valid values: none, egp, igp, incomplete.
    setOriginatorId string
    BGP originator ID attribute.
    setPriority number
    Priority for routing table.
    setRouteTag string
    Route tag for routing table.
    setTag string
    Tag value.
    setVpnv4Nexthop string
    IP address of VPNv4 next-hop.
    setVpnv6Nexthop string
    IPv6 global address of VPNv6 next-hop.
    setVpnv6NexthopLocal string
    IPv6 link-local address of VPNv6 next-hop.
    setWeight string
    BGP weight for routing table.
    route_map str
    Route Map.
    action str
    Action. Valid values: permit, deny.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid float
    Rule ID.
    match_as_path str
    Match BGP AS path list.
    match_community str
    Match BGP community list.
    match_community_exact str
    Enable/disable exact matching of communities. Valid values: disable, enable.
    match_extcommunity str
    Match BGP extended community list.
    match_extcommunity_exact str
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    match_flags float
    Match-Flags.
    match_interface str
    Match interface configuration.
    match_ip6_address str
    Match IPv6 address permitted by access-list6 or prefix-list6.
    match_ip6_nexthop str
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    match_ip_address str
    Match IP address permitted by access-list or prefix-list.
    match_ip_nexthop str
    Match next hop IP address passed by access-list or prefix-list.
    match_metric str
    Match metric for redistribute routes.
    match_origin str
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    match_route_type str
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    match_tag str
    Match tag.
    match_vrf float
    Match VRF ID.
    object_router_routemap_rule_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    set_aggregator_as float
    BGP aggregator AS.
    set_aggregator_ip str
    BGP aggregator IP.
    set_aspath_action str
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    set_aspaths Sequence[str]
    Prepend BGP AS path attribute.
    set_atomic_aggregate str
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    set_communities Sequence[str]
    BGP community attribute.
    set_community_additive str
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    set_community_delete str
    Delete communities matching community list.
    set_dampening_max_suppress float
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    set_dampening_reachability_half_life float
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    set_dampening_reuse float
    Value to start reusing a route (1 - 20000, 0 = unset).
    set_dampening_suppress float
    Value to start suppressing a route (1 - 20000, 0 = unset).
    set_dampening_unreachability_half_life float
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    set_extcommunity_rts Sequence[str]
    Route Target extended community.
    set_extcommunity_soos Sequence[str]
    Site-of-Origin extended community.
    set_flags float
    Set-Flags.
    set_ip6_nexthop str
    IPv6 global address of next hop.
    set_ip6_nexthop_local str
    IPv6 local address of next hop.
    set_ip_nexthop str
    IP address of next hop.
    set_ip_prefsrc str
    IP address of preferred source.
    set_local_preference str
    BGP local preference path attribute.
    set_metric str
    Metric value.
    set_metric_type str
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    set_origin str
    BGP origin code. Valid values: none, egp, igp, incomplete.
    set_originator_id str
    BGP originator ID attribute.
    set_priority float
    Priority for routing table.
    set_route_tag str
    Route tag for routing table.
    set_tag str
    Tag value.
    set_vpnv4_nexthop str
    IP address of VPNv4 next-hop.
    set_vpnv6_nexthop str
    IPv6 global address of VPNv6 next-hop.
    set_vpnv6_nexthop_local str
    IPv6 link-local address of VPNv6 next-hop.
    set_weight str
    BGP weight for routing table.
    routeMap String
    Route Map.
    action String
    Action. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Number
    Rule ID.
    matchAsPath String
    Match BGP AS path list.
    matchCommunity String
    Match BGP community list.
    matchCommunityExact String
    Enable/disable exact matching of communities. Valid values: disable, enable.
    matchExtcommunity String
    Match BGP extended community list.
    matchExtcommunityExact String
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    matchFlags Number
    Match-Flags.
    matchInterface String
    Match interface configuration.
    matchIp6Address String
    Match IPv6 address permitted by access-list6 or prefix-list6.
    matchIp6Nexthop String
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    matchIpAddress String
    Match IP address permitted by access-list or prefix-list.
    matchIpNexthop String
    Match next hop IP address passed by access-list or prefix-list.
    matchMetric String
    Match metric for redistribute routes.
    matchOrigin String
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    matchRouteType String
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    matchTag String
    Match tag.
    matchVrf Number
    Match VRF ID.
    objectRouterRoutemapRuleId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    setAggregatorAs Number
    BGP aggregator AS.
    setAggregatorIp String
    BGP aggregator IP.
    setAspathAction String
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    setAspaths List<String>
    Prepend BGP AS path attribute.
    setAtomicAggregate String
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    setCommunities List<String>
    BGP community attribute.
    setCommunityAdditive String
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    setCommunityDelete String
    Delete communities matching community list.
    setDampeningMaxSuppress Number
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    setDampeningReachabilityHalfLife Number
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    setDampeningReuse Number
    Value to start reusing a route (1 - 20000, 0 = unset).
    setDampeningSuppress Number
    Value to start suppressing a route (1 - 20000, 0 = unset).
    setDampeningUnreachabilityHalfLife Number
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    setExtcommunityRts List<String>
    Route Target extended community.
    setExtcommunitySoos List<String>
    Site-of-Origin extended community.
    setFlags Number
    Set-Flags.
    setIp6Nexthop String
    IPv6 global address of next hop.
    setIp6NexthopLocal String
    IPv6 local address of next hop.
    setIpNexthop String
    IP address of next hop.
    setIpPrefsrc String
    IP address of preferred source.
    setLocalPreference String
    BGP local preference path attribute.
    setMetric String
    Metric value.
    setMetricType String
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    setOrigin String
    BGP origin code. Valid values: none, egp, igp, incomplete.
    setOriginatorId String
    BGP originator ID attribute.
    setPriority Number
    Priority for routing table.
    setRouteTag String
    Route tag for routing table.
    setTag String
    Tag value.
    setVpnv4Nexthop String
    IP address of VPNv4 next-hop.
    setVpnv6Nexthop String
    IPv6 global address of VPNv6 next-hop.
    setVpnv6NexthopLocal String
    IPv6 link-local address of VPNv6 next-hop.
    setWeight String
    BGP weight for routing table.

    Outputs

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

    Get an existing ObjectRouterRoutemapRule 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?: ObjectRouterRoutemapRuleState, opts?: CustomResourceOptions): ObjectRouterRoutemapRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            fosid: Optional[float] = None,
            match_as_path: Optional[str] = None,
            match_community: Optional[str] = None,
            match_community_exact: Optional[str] = None,
            match_extcommunity: Optional[str] = None,
            match_extcommunity_exact: Optional[str] = None,
            match_flags: Optional[float] = None,
            match_interface: Optional[str] = None,
            match_ip6_address: Optional[str] = None,
            match_ip6_nexthop: Optional[str] = None,
            match_ip_address: Optional[str] = None,
            match_ip_nexthop: Optional[str] = None,
            match_metric: Optional[str] = None,
            match_origin: Optional[str] = None,
            match_route_type: Optional[str] = None,
            match_tag: Optional[str] = None,
            match_vrf: Optional[float] = None,
            object_router_routemap_rule_id: Optional[str] = None,
            route_map: Optional[str] = None,
            scopetype: Optional[str] = None,
            set_aggregator_as: Optional[float] = None,
            set_aggregator_ip: Optional[str] = None,
            set_aspath_action: Optional[str] = None,
            set_aspaths: Optional[Sequence[str]] = None,
            set_atomic_aggregate: Optional[str] = None,
            set_communities: Optional[Sequence[str]] = None,
            set_community_additive: Optional[str] = None,
            set_community_delete: Optional[str] = None,
            set_dampening_max_suppress: Optional[float] = None,
            set_dampening_reachability_half_life: Optional[float] = None,
            set_dampening_reuse: Optional[float] = None,
            set_dampening_suppress: Optional[float] = None,
            set_dampening_unreachability_half_life: Optional[float] = None,
            set_extcommunity_rts: Optional[Sequence[str]] = None,
            set_extcommunity_soos: Optional[Sequence[str]] = None,
            set_flags: Optional[float] = None,
            set_ip6_nexthop: Optional[str] = None,
            set_ip6_nexthop_local: Optional[str] = None,
            set_ip_nexthop: Optional[str] = None,
            set_ip_prefsrc: Optional[str] = None,
            set_local_preference: Optional[str] = None,
            set_metric: Optional[str] = None,
            set_metric_type: Optional[str] = None,
            set_origin: Optional[str] = None,
            set_originator_id: Optional[str] = None,
            set_priority: Optional[float] = None,
            set_route_tag: Optional[str] = None,
            set_tag: Optional[str] = None,
            set_vpnv4_nexthop: Optional[str] = None,
            set_vpnv6_nexthop: Optional[str] = None,
            set_vpnv6_nexthop_local: Optional[str] = None,
            set_weight: Optional[str] = None) -> ObjectRouterRoutemapRule
    func GetObjectRouterRoutemapRule(ctx *Context, name string, id IDInput, state *ObjectRouterRoutemapRuleState, opts ...ResourceOption) (*ObjectRouterRoutemapRule, error)
    public static ObjectRouterRoutemapRule Get(string name, Input<string> id, ObjectRouterRoutemapRuleState? state, CustomResourceOptions? opts = null)
    public static ObjectRouterRoutemapRule get(String name, Output<String> id, ObjectRouterRoutemapRuleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectRouterRoutemapRule    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.
    The following state arguments are supported:
    Action string
    Action. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid double
    Rule ID.
    MatchAsPath string
    Match BGP AS path list.
    MatchCommunity string
    Match BGP community list.
    MatchCommunityExact string
    Enable/disable exact matching of communities. Valid values: disable, enable.
    MatchExtcommunity string
    Match BGP extended community list.
    MatchExtcommunityExact string
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    MatchFlags double
    Match-Flags.
    MatchInterface string
    Match interface configuration.
    MatchIp6Address string
    Match IPv6 address permitted by access-list6 or prefix-list6.
    MatchIp6Nexthop string
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    MatchIpAddress string
    Match IP address permitted by access-list or prefix-list.
    MatchIpNexthop string
    Match next hop IP address passed by access-list or prefix-list.
    MatchMetric string
    Match metric for redistribute routes.
    MatchOrigin string
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    MatchRouteType string
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    MatchTag string
    Match tag.
    MatchVrf double
    Match VRF ID.
    ObjectRouterRoutemapRuleId string
    an identifier for the resource with format {{fosid}}.
    RouteMap string
    Route Map.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SetAggregatorAs double
    BGP aggregator AS.
    SetAggregatorIp string
    BGP aggregator IP.
    SetAspathAction string
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    SetAspaths List<string>
    Prepend BGP AS path attribute.
    SetAtomicAggregate string
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    SetCommunities List<string>
    BGP community attribute.
    SetCommunityAdditive string
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    SetCommunityDelete string
    Delete communities matching community list.
    SetDampeningMaxSuppress double
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    SetDampeningReachabilityHalfLife double
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    SetDampeningReuse double
    Value to start reusing a route (1 - 20000, 0 = unset).
    SetDampeningSuppress double
    Value to start suppressing a route (1 - 20000, 0 = unset).
    SetDampeningUnreachabilityHalfLife double
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    SetExtcommunityRts List<string>
    Route Target extended community.
    SetExtcommunitySoos List<string>
    Site-of-Origin extended community.
    SetFlags double
    Set-Flags.
    SetIp6Nexthop string
    IPv6 global address of next hop.
    SetIp6NexthopLocal string
    IPv6 local address of next hop.
    SetIpNexthop string
    IP address of next hop.
    SetIpPrefsrc string
    IP address of preferred source.
    SetLocalPreference string
    BGP local preference path attribute.
    SetMetric string
    Metric value.
    SetMetricType string
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    SetOrigin string
    BGP origin code. Valid values: none, egp, igp, incomplete.
    SetOriginatorId string
    BGP originator ID attribute.
    SetPriority double
    Priority for routing table.
    SetRouteTag string
    Route tag for routing table.
    SetTag string
    Tag value.
    SetVpnv4Nexthop string
    IP address of VPNv4 next-hop.
    SetVpnv6Nexthop string
    IPv6 global address of VPNv6 next-hop.
    SetVpnv6NexthopLocal string
    IPv6 link-local address of VPNv6 next-hop.
    SetWeight string
    BGP weight for routing table.
    Action string
    Action. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid float64
    Rule ID.
    MatchAsPath string
    Match BGP AS path list.
    MatchCommunity string
    Match BGP community list.
    MatchCommunityExact string
    Enable/disable exact matching of communities. Valid values: disable, enable.
    MatchExtcommunity string
    Match BGP extended community list.
    MatchExtcommunityExact string
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    MatchFlags float64
    Match-Flags.
    MatchInterface string
    Match interface configuration.
    MatchIp6Address string
    Match IPv6 address permitted by access-list6 or prefix-list6.
    MatchIp6Nexthop string
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    MatchIpAddress string
    Match IP address permitted by access-list or prefix-list.
    MatchIpNexthop string
    Match next hop IP address passed by access-list or prefix-list.
    MatchMetric string
    Match metric for redistribute routes.
    MatchOrigin string
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    MatchRouteType string
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    MatchTag string
    Match tag.
    MatchVrf float64
    Match VRF ID.
    ObjectRouterRoutemapRuleId string
    an identifier for the resource with format {{fosid}}.
    RouteMap string
    Route Map.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SetAggregatorAs float64
    BGP aggregator AS.
    SetAggregatorIp string
    BGP aggregator IP.
    SetAspathAction string
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    SetAspaths []string
    Prepend BGP AS path attribute.
    SetAtomicAggregate string
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    SetCommunities []string
    BGP community attribute.
    SetCommunityAdditive string
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    SetCommunityDelete string
    Delete communities matching community list.
    SetDampeningMaxSuppress float64
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    SetDampeningReachabilityHalfLife float64
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    SetDampeningReuse float64
    Value to start reusing a route (1 - 20000, 0 = unset).
    SetDampeningSuppress float64
    Value to start suppressing a route (1 - 20000, 0 = unset).
    SetDampeningUnreachabilityHalfLife float64
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    SetExtcommunityRts []string
    Route Target extended community.
    SetExtcommunitySoos []string
    Site-of-Origin extended community.
    SetFlags float64
    Set-Flags.
    SetIp6Nexthop string
    IPv6 global address of next hop.
    SetIp6NexthopLocal string
    IPv6 local address of next hop.
    SetIpNexthop string
    IP address of next hop.
    SetIpPrefsrc string
    IP address of preferred source.
    SetLocalPreference string
    BGP local preference path attribute.
    SetMetric string
    Metric value.
    SetMetricType string
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    SetOrigin string
    BGP origin code. Valid values: none, egp, igp, incomplete.
    SetOriginatorId string
    BGP originator ID attribute.
    SetPriority float64
    Priority for routing table.
    SetRouteTag string
    Route tag for routing table.
    SetTag string
    Tag value.
    SetVpnv4Nexthop string
    IP address of VPNv4 next-hop.
    SetVpnv6Nexthop string
    IPv6 global address of VPNv6 next-hop.
    SetVpnv6NexthopLocal string
    IPv6 link-local address of VPNv6 next-hop.
    SetWeight string
    BGP weight for routing table.
    action String
    Action. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Double
    Rule ID.
    matchAsPath String
    Match BGP AS path list.
    matchCommunity String
    Match BGP community list.
    matchCommunityExact String
    Enable/disable exact matching of communities. Valid values: disable, enable.
    matchExtcommunity String
    Match BGP extended community list.
    matchExtcommunityExact String
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    matchFlags Double
    Match-Flags.
    matchInterface String
    Match interface configuration.
    matchIp6Address String
    Match IPv6 address permitted by access-list6 or prefix-list6.
    matchIp6Nexthop String
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    matchIpAddress String
    Match IP address permitted by access-list or prefix-list.
    matchIpNexthop String
    Match next hop IP address passed by access-list or prefix-list.
    matchMetric String
    Match metric for redistribute routes.
    matchOrigin String
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    matchRouteType String
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    matchTag String
    Match tag.
    matchVrf Double
    Match VRF ID.
    objectRouterRoutemapRuleId String
    an identifier for the resource with format {{fosid}}.
    routeMap String
    Route Map.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    setAggregatorAs Double
    BGP aggregator AS.
    setAggregatorIp String
    BGP aggregator IP.
    setAspathAction String
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    setAspaths List<String>
    Prepend BGP AS path attribute.
    setAtomicAggregate String
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    setCommunities List<String>
    BGP community attribute.
    setCommunityAdditive String
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    setCommunityDelete String
    Delete communities matching community list.
    setDampeningMaxSuppress Double
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    setDampeningReachabilityHalfLife Double
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    setDampeningReuse Double
    Value to start reusing a route (1 - 20000, 0 = unset).
    setDampeningSuppress Double
    Value to start suppressing a route (1 - 20000, 0 = unset).
    setDampeningUnreachabilityHalfLife Double
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    setExtcommunityRts List<String>
    Route Target extended community.
    setExtcommunitySoos List<String>
    Site-of-Origin extended community.
    setFlags Double
    Set-Flags.
    setIp6Nexthop String
    IPv6 global address of next hop.
    setIp6NexthopLocal String
    IPv6 local address of next hop.
    setIpNexthop String
    IP address of next hop.
    setIpPrefsrc String
    IP address of preferred source.
    setLocalPreference String
    BGP local preference path attribute.
    setMetric String
    Metric value.
    setMetricType String
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    setOrigin String
    BGP origin code. Valid values: none, egp, igp, incomplete.
    setOriginatorId String
    BGP originator ID attribute.
    setPriority Double
    Priority for routing table.
    setRouteTag String
    Route tag for routing table.
    setTag String
    Tag value.
    setVpnv4Nexthop String
    IP address of VPNv4 next-hop.
    setVpnv6Nexthop String
    IPv6 global address of VPNv6 next-hop.
    setVpnv6NexthopLocal String
    IPv6 link-local address of VPNv6 next-hop.
    setWeight String
    BGP weight for routing table.
    action string
    Action. Valid values: permit, deny.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid number
    Rule ID.
    matchAsPath string
    Match BGP AS path list.
    matchCommunity string
    Match BGP community list.
    matchCommunityExact string
    Enable/disable exact matching of communities. Valid values: disable, enable.
    matchExtcommunity string
    Match BGP extended community list.
    matchExtcommunityExact string
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    matchFlags number
    Match-Flags.
    matchInterface string
    Match interface configuration.
    matchIp6Address string
    Match IPv6 address permitted by access-list6 or prefix-list6.
    matchIp6Nexthop string
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    matchIpAddress string
    Match IP address permitted by access-list or prefix-list.
    matchIpNexthop string
    Match next hop IP address passed by access-list or prefix-list.
    matchMetric string
    Match metric for redistribute routes.
    matchOrigin string
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    matchRouteType string
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    matchTag string
    Match tag.
    matchVrf number
    Match VRF ID.
    objectRouterRoutemapRuleId string
    an identifier for the resource with format {{fosid}}.
    routeMap string
    Route Map.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    setAggregatorAs number
    BGP aggregator AS.
    setAggregatorIp string
    BGP aggregator IP.
    setAspathAction string
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    setAspaths string[]
    Prepend BGP AS path attribute.
    setAtomicAggregate string
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    setCommunities string[]
    BGP community attribute.
    setCommunityAdditive string
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    setCommunityDelete string
    Delete communities matching community list.
    setDampeningMaxSuppress number
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    setDampeningReachabilityHalfLife number
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    setDampeningReuse number
    Value to start reusing a route (1 - 20000, 0 = unset).
    setDampeningSuppress number
    Value to start suppressing a route (1 - 20000, 0 = unset).
    setDampeningUnreachabilityHalfLife number
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    setExtcommunityRts string[]
    Route Target extended community.
    setExtcommunitySoos string[]
    Site-of-Origin extended community.
    setFlags number
    Set-Flags.
    setIp6Nexthop string
    IPv6 global address of next hop.
    setIp6NexthopLocal string
    IPv6 local address of next hop.
    setIpNexthop string
    IP address of next hop.
    setIpPrefsrc string
    IP address of preferred source.
    setLocalPreference string
    BGP local preference path attribute.
    setMetric string
    Metric value.
    setMetricType string
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    setOrigin string
    BGP origin code. Valid values: none, egp, igp, incomplete.
    setOriginatorId string
    BGP originator ID attribute.
    setPriority number
    Priority for routing table.
    setRouteTag string
    Route tag for routing table.
    setTag string
    Tag value.
    setVpnv4Nexthop string
    IP address of VPNv4 next-hop.
    setVpnv6Nexthop string
    IPv6 global address of VPNv6 next-hop.
    setVpnv6NexthopLocal string
    IPv6 link-local address of VPNv6 next-hop.
    setWeight string
    BGP weight for routing table.
    action str
    Action. Valid values: permit, deny.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid float
    Rule ID.
    match_as_path str
    Match BGP AS path list.
    match_community str
    Match BGP community list.
    match_community_exact str
    Enable/disable exact matching of communities. Valid values: disable, enable.
    match_extcommunity str
    Match BGP extended community list.
    match_extcommunity_exact str
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    match_flags float
    Match-Flags.
    match_interface str
    Match interface configuration.
    match_ip6_address str
    Match IPv6 address permitted by access-list6 or prefix-list6.
    match_ip6_nexthop str
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    match_ip_address str
    Match IP address permitted by access-list or prefix-list.
    match_ip_nexthop str
    Match next hop IP address passed by access-list or prefix-list.
    match_metric str
    Match metric for redistribute routes.
    match_origin str
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    match_route_type str
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    match_tag str
    Match tag.
    match_vrf float
    Match VRF ID.
    object_router_routemap_rule_id str
    an identifier for the resource with format {{fosid}}.
    route_map str
    Route Map.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    set_aggregator_as float
    BGP aggregator AS.
    set_aggregator_ip str
    BGP aggregator IP.
    set_aspath_action str
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    set_aspaths Sequence[str]
    Prepend BGP AS path attribute.
    set_atomic_aggregate str
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    set_communities Sequence[str]
    BGP community attribute.
    set_community_additive str
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    set_community_delete str
    Delete communities matching community list.
    set_dampening_max_suppress float
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    set_dampening_reachability_half_life float
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    set_dampening_reuse float
    Value to start reusing a route (1 - 20000, 0 = unset).
    set_dampening_suppress float
    Value to start suppressing a route (1 - 20000, 0 = unset).
    set_dampening_unreachability_half_life float
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    set_extcommunity_rts Sequence[str]
    Route Target extended community.
    set_extcommunity_soos Sequence[str]
    Site-of-Origin extended community.
    set_flags float
    Set-Flags.
    set_ip6_nexthop str
    IPv6 global address of next hop.
    set_ip6_nexthop_local str
    IPv6 local address of next hop.
    set_ip_nexthop str
    IP address of next hop.
    set_ip_prefsrc str
    IP address of preferred source.
    set_local_preference str
    BGP local preference path attribute.
    set_metric str
    Metric value.
    set_metric_type str
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    set_origin str
    BGP origin code. Valid values: none, egp, igp, incomplete.
    set_originator_id str
    BGP originator ID attribute.
    set_priority float
    Priority for routing table.
    set_route_tag str
    Route tag for routing table.
    set_tag str
    Tag value.
    set_vpnv4_nexthop str
    IP address of VPNv4 next-hop.
    set_vpnv6_nexthop str
    IPv6 global address of VPNv6 next-hop.
    set_vpnv6_nexthop_local str
    IPv6 link-local address of VPNv6 next-hop.
    set_weight str
    BGP weight for routing table.
    action String
    Action. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Number
    Rule ID.
    matchAsPath String
    Match BGP AS path list.
    matchCommunity String
    Match BGP community list.
    matchCommunityExact String
    Enable/disable exact matching of communities. Valid values: disable, enable.
    matchExtcommunity String
    Match BGP extended community list.
    matchExtcommunityExact String
    Enable/disable exact matching of extended communities. Valid values: disable, enable.
    matchFlags Number
    Match-Flags.
    matchInterface String
    Match interface configuration.
    matchIp6Address String
    Match IPv6 address permitted by access-list6 or prefix-list6.
    matchIp6Nexthop String
    Match next hop IPv6 address passed by access-list6 or prefix-list6.
    matchIpAddress String
    Match IP address permitted by access-list or prefix-list.
    matchIpNexthop String
    Match next hop IP address passed by access-list or prefix-list.
    matchMetric String
    Match metric for redistribute routes.
    matchOrigin String
    Match BGP origin code. Valid values: none, egp, igp, incomplete.
    matchRouteType String
    Match route type. Valid values: 1, 2, none, external-type1, external-type2.
    matchTag String
    Match tag.
    matchVrf Number
    Match VRF ID.
    objectRouterRoutemapRuleId String
    an identifier for the resource with format {{fosid}}.
    routeMap String
    Route Map.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    setAggregatorAs Number
    BGP aggregator AS.
    setAggregatorIp String
    BGP aggregator IP.
    setAspathAction String
    Specify preferred action of set-aspath. Valid values: prepend, replace.
    setAspaths List<String>
    Prepend BGP AS path attribute.
    setAtomicAggregate String
    Enable/disable BGP atomic aggregate attribute. Valid values: disable, enable.
    setCommunities List<String>
    BGP community attribute.
    setCommunityAdditive String
    Enable/disable adding set-community to existing community. Valid values: disable, enable.
    setCommunityDelete String
    Delete communities matching community list.
    setDampeningMaxSuppress Number
    Maximum duration to suppress a route (1 - 255 min, 0 = unset).
    setDampeningReachabilityHalfLife Number
    Reachability half-life time for the penalty (1 - 45 min, 0 = unset).
    setDampeningReuse Number
    Value to start reusing a route (1 - 20000, 0 = unset).
    setDampeningSuppress Number
    Value to start suppressing a route (1 - 20000, 0 = unset).
    setDampeningUnreachabilityHalfLife Number
    Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset)
    setExtcommunityRts List<String>
    Route Target extended community.
    setExtcommunitySoos List<String>
    Site-of-Origin extended community.
    setFlags Number
    Set-Flags.
    setIp6Nexthop String
    IPv6 global address of next hop.
    setIp6NexthopLocal String
    IPv6 local address of next hop.
    setIpNexthop String
    IP address of next hop.
    setIpPrefsrc String
    IP address of preferred source.
    setLocalPreference String
    BGP local preference path attribute.
    setMetric String
    Metric value.
    setMetricType String
    Metric type. Valid values: 1, 2, none, external-type1, external-type2.
    setOrigin String
    BGP origin code. Valid values: none, egp, igp, incomplete.
    setOriginatorId String
    BGP originator ID attribute.
    setPriority Number
    Priority for routing table.
    setRouteTag String
    Route tag for routing table.
    setTag String
    Tag value.
    setVpnv4Nexthop String
    IP address of VPNv4 next-hop.
    setVpnv6Nexthop String
    IPv6 global address of VPNv6 next-hop.
    setVpnv6NexthopLocal String
    IPv6 link-local address of VPNv6 next-hop.
    setWeight String
    BGP weight for routing table.

    Import

    ObjectRouter RouteMapRule can be imported using any of these accepted formats:

    Set import_options = [“route_map=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectRouterRoutemapRule:ObjectRouterRoutemapRule labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev