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

fortimanager.ObjectRouterPrefixlistRule

Explore with Pulumi AI

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

    IPv4 prefix list rule.

    This resource is a sub resource for variable rule of resource fortimanager.ObjectRouterPrefixlist. 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 trnameObjectRouterPrefixlist = new fortimanager.ObjectRouterPrefixlist("trnameObjectRouterPrefixlist", {});
    const trnameObjectRouterPrefixlistRule = new fortimanager.ObjectRouterPrefixlistRule("trnameObjectRouterPrefixlistRule", {
        prefixList: trnameObjectRouterPrefixlist.name,
        ge: 12,
        fosid: 23,
        le: 20,
    }, {
        dependsOn: [trnameObjectRouterPrefixlist],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_router_prefixlist = fortimanager.ObjectRouterPrefixlist("trnameObjectRouterPrefixlist")
    trname_object_router_prefixlist_rule = fortimanager.ObjectRouterPrefixlistRule("trnameObjectRouterPrefixlistRule",
        prefix_list=trname_object_router_prefixlist.name,
        ge=12,
        fosid=23,
        le=20,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_router_prefixlist]))
    
    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 {
    		trnameObjectRouterPrefixlist, err := fortimanager.NewObjectRouterPrefixlist(ctx, "trnameObjectRouterPrefixlist", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectRouterPrefixlistRule(ctx, "trnameObjectRouterPrefixlistRule", &fortimanager.ObjectRouterPrefixlistRuleArgs{
    			PrefixList: trnameObjectRouterPrefixlist.Name,
    			Ge:         pulumi.Float64(12),
    			Fosid:      pulumi.Float64(23),
    			Le:         pulumi.Float64(20),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectRouterPrefixlist,
    		}))
    		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 trnameObjectRouterPrefixlist = new Fortimanager.ObjectRouterPrefixlist("trnameObjectRouterPrefixlist");
    
        var trnameObjectRouterPrefixlistRule = new Fortimanager.ObjectRouterPrefixlistRule("trnameObjectRouterPrefixlistRule", new()
        {
            PrefixList = trnameObjectRouterPrefixlist.Name,
            Ge = 12,
            Fosid = 23,
            Le = 20,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectRouterPrefixlist,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectRouterPrefixlist;
    import com.pulumi.fortimanager.ObjectRouterPrefixlistRule;
    import com.pulumi.fortimanager.ObjectRouterPrefixlistRuleArgs;
    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 trnameObjectRouterPrefixlist = new ObjectRouterPrefixlist("trnameObjectRouterPrefixlist");
    
            var trnameObjectRouterPrefixlistRule = new ObjectRouterPrefixlistRule("trnameObjectRouterPrefixlistRule", ObjectRouterPrefixlistRuleArgs.builder()
                .prefixList(trnameObjectRouterPrefixlist.name())
                .ge(12)
                .fosid(23)
                .le(20)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectRouterPrefixlist)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectRouterPrefixlistRule:
        type: fortimanager:ObjectRouterPrefixlistRule
        properties:
          prefixList: ${trnameObjectRouterPrefixlist.name}
          ge: 12
          fosid: 23
          le: 20
        options:
          dependsOn:
            - ${trnameObjectRouterPrefixlist}
      trnameObjectRouterPrefixlist:
        type: fortimanager:ObjectRouterPrefixlist
    

    Create ObjectRouterPrefixlistRule Resource

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

    Constructor syntax

    new ObjectRouterPrefixlistRule(name: string, args: ObjectRouterPrefixlistRuleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectRouterPrefixlistRule(resource_name: str,
                                   args: ObjectRouterPrefixlistRuleInitArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectRouterPrefixlistRule(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   prefix_list: Optional[str] = None,
                                   action: Optional[str] = None,
                                   adom: Optional[str] = None,
                                   flags: Optional[float] = None,
                                   fosid: Optional[float] = None,
                                   ge: Optional[float] = None,
                                   le: Optional[float] = None,
                                   object_router_prefixlist_rule_id: Optional[str] = None,
                                   prefixes: Optional[Sequence[str]] = None,
                                   scopetype: Optional[str] = None)
    func NewObjectRouterPrefixlistRule(ctx *Context, name string, args ObjectRouterPrefixlistRuleArgs, opts ...ResourceOption) (*ObjectRouterPrefixlistRule, error)
    public ObjectRouterPrefixlistRule(string name, ObjectRouterPrefixlistRuleArgs args, CustomResourceOptions? opts = null)
    public ObjectRouterPrefixlistRule(String name, ObjectRouterPrefixlistRuleArgs args)
    public ObjectRouterPrefixlistRule(String name, ObjectRouterPrefixlistRuleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectRouterPrefixlistRule
    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 ObjectRouterPrefixlistRuleArgs
    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 ObjectRouterPrefixlistRuleInitArgs
    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 ObjectRouterPrefixlistRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectRouterPrefixlistRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectRouterPrefixlistRuleArgs
    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 objectRouterPrefixlistRuleResource = new Fortimanager.ObjectRouterPrefixlistRule("objectRouterPrefixlistRuleResource", new()
    {
        PrefixList = "string",
        Action = "string",
        Adom = "string",
        Flags = 0,
        Fosid = 0,
        Ge = 0,
        Le = 0,
        ObjectRouterPrefixlistRuleId = "string",
        Prefixes = new[]
        {
            "string",
        },
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectRouterPrefixlistRule(ctx, "objectRouterPrefixlistRuleResource", &fortimanager.ObjectRouterPrefixlistRuleArgs{
    PrefixList: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Flags: pulumi.Float64(0),
    Fosid: pulumi.Float64(0),
    Ge: pulumi.Float64(0),
    Le: pulumi.Float64(0),
    ObjectRouterPrefixlistRuleId: pulumi.String("string"),
    Prefixes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Scopetype: pulumi.String("string"),
    })
    
    var objectRouterPrefixlistRuleResource = new ObjectRouterPrefixlistRule("objectRouterPrefixlistRuleResource", ObjectRouterPrefixlistRuleArgs.builder()
        .prefixList("string")
        .action("string")
        .adom("string")
        .flags(0)
        .fosid(0)
        .ge(0)
        .le(0)
        .objectRouterPrefixlistRuleId("string")
        .prefixes("string")
        .scopetype("string")
        .build());
    
    object_router_prefixlist_rule_resource = fortimanager.ObjectRouterPrefixlistRule("objectRouterPrefixlistRuleResource",
        prefix_list="string",
        action="string",
        adom="string",
        flags=0,
        fosid=0,
        ge=0,
        le=0,
        object_router_prefixlist_rule_id="string",
        prefixes=["string"],
        scopetype="string")
    
    const objectRouterPrefixlistRuleResource = new fortimanager.ObjectRouterPrefixlistRule("objectRouterPrefixlistRuleResource", {
        prefixList: "string",
        action: "string",
        adom: "string",
        flags: 0,
        fosid: 0,
        ge: 0,
        le: 0,
        objectRouterPrefixlistRuleId: "string",
        prefixes: ["string"],
        scopetype: "string",
    });
    
    type: fortimanager:ObjectRouterPrefixlistRule
    properties:
        action: string
        adom: string
        flags: 0
        fosid: 0
        ge: 0
        le: 0
        objectRouterPrefixlistRuleId: string
        prefixList: string
        prefixes:
            - string
        scopetype: string
    

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

    PrefixList string
    Prefix List.
    Action string
    Permit or deny this IP address and netmask prefix. 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.
    Flags double
    Flags.
    Fosid double
    Rule ID.
    Ge double
    Minimum prefix length to be matched (0 - 32).
    Le double
    Maximum prefix length to be matched (0 - 32).
    ObjectRouterPrefixlistRuleId string
    an identifier for the resource with format {{fosid}}.
    Prefixes List<string>
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    PrefixList string
    Prefix List.
    Action string
    Permit or deny this IP address and netmask prefix. 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.
    Flags float64
    Flags.
    Fosid float64
    Rule ID.
    Ge float64
    Minimum prefix length to be matched (0 - 32).
    Le float64
    Maximum prefix length to be matched (0 - 32).
    ObjectRouterPrefixlistRuleId string
    an identifier for the resource with format {{fosid}}.
    Prefixes []string
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    prefixList String
    Prefix List.
    action String
    Permit or deny this IP address and netmask prefix. 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.
    flags Double
    Flags.
    fosid Double
    Rule ID.
    ge Double
    Minimum prefix length to be matched (0 - 32).
    le Double
    Maximum prefix length to be matched (0 - 32).
    objectRouterPrefixlistRuleId String
    an identifier for the resource with format {{fosid}}.
    prefixes List<String>
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    prefixList string
    Prefix List.
    action string
    Permit or deny this IP address and netmask prefix. 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.
    flags number
    Flags.
    fosid number
    Rule ID.
    ge number
    Minimum prefix length to be matched (0 - 32).
    le number
    Maximum prefix length to be matched (0 - 32).
    objectRouterPrefixlistRuleId string
    an identifier for the resource with format {{fosid}}.
    prefixes string[]
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    prefix_list str
    Prefix List.
    action str
    Permit or deny this IP address and netmask prefix. 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.
    flags float
    Flags.
    fosid float
    Rule ID.
    ge float
    Minimum prefix length to be matched (0 - 32).
    le float
    Maximum prefix length to be matched (0 - 32).
    object_router_prefixlist_rule_id str
    an identifier for the resource with format {{fosid}}.
    prefixes Sequence[str]
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    prefixList String
    Prefix List.
    action String
    Permit or deny this IP address and netmask prefix. 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.
    flags Number
    Flags.
    fosid Number
    Rule ID.
    ge Number
    Minimum prefix length to be matched (0 - 32).
    le Number
    Maximum prefix length to be matched (0 - 32).
    objectRouterPrefixlistRuleId String
    an identifier for the resource with format {{fosid}}.
    prefixes List<String>
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.

    Outputs

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

    Get an existing ObjectRouterPrefixlistRule 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?: ObjectRouterPrefixlistRuleState, opts?: CustomResourceOptions): ObjectRouterPrefixlistRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            flags: Optional[float] = None,
            fosid: Optional[float] = None,
            ge: Optional[float] = None,
            le: Optional[float] = None,
            object_router_prefixlist_rule_id: Optional[str] = None,
            prefix_list: Optional[str] = None,
            prefixes: Optional[Sequence[str]] = None,
            scopetype: Optional[str] = None) -> ObjectRouterPrefixlistRule
    func GetObjectRouterPrefixlistRule(ctx *Context, name string, id IDInput, state *ObjectRouterPrefixlistRuleState, opts ...ResourceOption) (*ObjectRouterPrefixlistRule, error)
    public static ObjectRouterPrefixlistRule Get(string name, Input<string> id, ObjectRouterPrefixlistRuleState? state, CustomResourceOptions? opts = null)
    public static ObjectRouterPrefixlistRule get(String name, Output<String> id, ObjectRouterPrefixlistRuleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectRouterPrefixlistRule    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
    Permit or deny this IP address and netmask prefix. 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.
    Flags double
    Flags.
    Fosid double
    Rule ID.
    Ge double
    Minimum prefix length to be matched (0 - 32).
    Le double
    Maximum prefix length to be matched (0 - 32).
    ObjectRouterPrefixlistRuleId string
    an identifier for the resource with format {{fosid}}.
    PrefixList string
    Prefix List.
    Prefixes List<string>
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    Action string
    Permit or deny this IP address and netmask prefix. 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.
    Flags float64
    Flags.
    Fosid float64
    Rule ID.
    Ge float64
    Minimum prefix length to be matched (0 - 32).
    Le float64
    Maximum prefix length to be matched (0 - 32).
    ObjectRouterPrefixlistRuleId string
    an identifier for the resource with format {{fosid}}.
    PrefixList string
    Prefix List.
    Prefixes []string
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    action String
    Permit or deny this IP address and netmask prefix. 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.
    flags Double
    Flags.
    fosid Double
    Rule ID.
    ge Double
    Minimum prefix length to be matched (0 - 32).
    le Double
    Maximum prefix length to be matched (0 - 32).
    objectRouterPrefixlistRuleId String
    an identifier for the resource with format {{fosid}}.
    prefixList String
    Prefix List.
    prefixes List<String>
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    action string
    Permit or deny this IP address and netmask prefix. 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.
    flags number
    Flags.
    fosid number
    Rule ID.
    ge number
    Minimum prefix length to be matched (0 - 32).
    le number
    Maximum prefix length to be matched (0 - 32).
    objectRouterPrefixlistRuleId string
    an identifier for the resource with format {{fosid}}.
    prefixList string
    Prefix List.
    prefixes string[]
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    action str
    Permit or deny this IP address and netmask prefix. 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.
    flags float
    Flags.
    fosid float
    Rule ID.
    ge float
    Minimum prefix length to be matched (0 - 32).
    le float
    Maximum prefix length to be matched (0 - 32).
    object_router_prefixlist_rule_id str
    an identifier for the resource with format {{fosid}}.
    prefix_list str
    Prefix List.
    prefixes Sequence[str]
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    action String
    Permit or deny this IP address and netmask prefix. 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.
    flags Number
    Flags.
    fosid Number
    Rule ID.
    ge Number
    Minimum prefix length to be matched (0 - 32).
    le Number
    Maximum prefix length to be matched (0 - 32).
    objectRouterPrefixlistRuleId String
    an identifier for the resource with format {{fosid}}.
    prefixList String
    Prefix List.
    prefixes List<String>
    IPv4 prefix to define regular filter criteria, such as "any" or subnets.
    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.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectRouterPrefixlistRule:ObjectRouterPrefixlistRule 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