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

fortimanager.ObjectRouterPrefixlist6Rule

Explore with Pulumi AI

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

    IPv6 prefix list rule.

    This resource is a sub resource for variable rule of resource fortimanager.ObjectRouterPrefixlist6. 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 trnameObjectRouterPrefixlist6 = new fortimanager.ObjectRouterPrefixlist6("trnameObjectRouterPrefixlist6", {});
    const trnameObjectRouterPrefixlist6Rule = new fortimanager.ObjectRouterPrefixlist6Rule("trnameObjectRouterPrefixlist6Rule", {
        prefixList6: trnameObjectRouterPrefixlist6.name,
        action: "deny",
        ge: 12,
        fosid: 23,
        le: 20,
    }, {
        dependsOn: [trnameObjectRouterPrefixlist6],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_router_prefixlist6 = fortimanager.ObjectRouterPrefixlist6("trnameObjectRouterPrefixlist6")
    trname_object_router_prefixlist6_rule = fortimanager.ObjectRouterPrefixlist6Rule("trnameObjectRouterPrefixlist6Rule",
        prefix_list6=trname_object_router_prefixlist6.name,
        action="deny",
        ge=12,
        fosid=23,
        le=20,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_router_prefixlist6]))
    
    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 {
    		trnameObjectRouterPrefixlist6, err := fortimanager.NewObjectRouterPrefixlist6(ctx, "trnameObjectRouterPrefixlist6", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectRouterPrefixlist6Rule(ctx, "trnameObjectRouterPrefixlist6Rule", &fortimanager.ObjectRouterPrefixlist6RuleArgs{
    			PrefixList6: trnameObjectRouterPrefixlist6.Name,
    			Action:      pulumi.String("deny"),
    			Ge:          pulumi.Float64(12),
    			Fosid:       pulumi.Float64(23),
    			Le:          pulumi.Float64(20),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectRouterPrefixlist6,
    		}))
    		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 trnameObjectRouterPrefixlist6 = new Fortimanager.ObjectRouterPrefixlist6("trnameObjectRouterPrefixlist6");
    
        var trnameObjectRouterPrefixlist6Rule = new Fortimanager.ObjectRouterPrefixlist6Rule("trnameObjectRouterPrefixlist6Rule", new()
        {
            PrefixList6 = trnameObjectRouterPrefixlist6.Name,
            Action = "deny",
            Ge = 12,
            Fosid = 23,
            Le = 20,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectRouterPrefixlist6,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectRouterPrefixlist6;
    import com.pulumi.fortimanager.ObjectRouterPrefixlist6Rule;
    import com.pulumi.fortimanager.ObjectRouterPrefixlist6RuleArgs;
    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 trnameObjectRouterPrefixlist6 = new ObjectRouterPrefixlist6("trnameObjectRouterPrefixlist6");
    
            var trnameObjectRouterPrefixlist6Rule = new ObjectRouterPrefixlist6Rule("trnameObjectRouterPrefixlist6Rule", ObjectRouterPrefixlist6RuleArgs.builder()
                .prefixList6(trnameObjectRouterPrefixlist6.name())
                .action("deny")
                .ge(12)
                .fosid(23)
                .le(20)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectRouterPrefixlist6)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectRouterPrefixlist6Rule:
        type: fortimanager:ObjectRouterPrefixlist6Rule
        properties:
          prefixList6: ${trnameObjectRouterPrefixlist6.name}
          action: deny
          ge: 12
          fosid: 23
          le: 20
        options:
          dependsOn:
            - ${trnameObjectRouterPrefixlist6}
      trnameObjectRouterPrefixlist6:
        type: fortimanager:ObjectRouterPrefixlist6
    

    Create ObjectRouterPrefixlist6Rule Resource

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

    Constructor syntax

    new ObjectRouterPrefixlist6Rule(name: string, args: ObjectRouterPrefixlist6RuleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectRouterPrefixlist6Rule(resource_name: str,
                                    args: ObjectRouterPrefixlist6RuleInitArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectRouterPrefixlist6Rule(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    prefix_list6: 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_prefixlist6_rule_id: Optional[str] = None,
                                    prefix6: Optional[str] = None,
                                    scopetype: Optional[str] = None)
    func NewObjectRouterPrefixlist6Rule(ctx *Context, name string, args ObjectRouterPrefixlist6RuleArgs, opts ...ResourceOption) (*ObjectRouterPrefixlist6Rule, error)
    public ObjectRouterPrefixlist6Rule(string name, ObjectRouterPrefixlist6RuleArgs args, CustomResourceOptions? opts = null)
    public ObjectRouterPrefixlist6Rule(String name, ObjectRouterPrefixlist6RuleArgs args)
    public ObjectRouterPrefixlist6Rule(String name, ObjectRouterPrefixlist6RuleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectRouterPrefixlist6Rule
    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 ObjectRouterPrefixlist6RuleArgs
    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 ObjectRouterPrefixlist6RuleInitArgs
    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 ObjectRouterPrefixlist6RuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectRouterPrefixlist6RuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectRouterPrefixlist6RuleArgs
    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 objectRouterPrefixlist6RuleResource = new Fortimanager.ObjectRouterPrefixlist6Rule("objectRouterPrefixlist6RuleResource", new()
    {
        PrefixList6 = "string",
        Action = "string",
        Adom = "string",
        Flags = 0,
        Fosid = 0,
        Ge = 0,
        Le = 0,
        ObjectRouterPrefixlist6RuleId = "string",
        Prefix6 = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectRouterPrefixlist6Rule(ctx, "objectRouterPrefixlist6RuleResource", &fortimanager.ObjectRouterPrefixlist6RuleArgs{
    PrefixList6: 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),
    ObjectRouterPrefixlist6RuleId: pulumi.String("string"),
    Prefix6: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectRouterPrefixlist6RuleResource = new ObjectRouterPrefixlist6Rule("objectRouterPrefixlist6RuleResource", ObjectRouterPrefixlist6RuleArgs.builder()
        .prefixList6("string")
        .action("string")
        .adom("string")
        .flags(0)
        .fosid(0)
        .ge(0)
        .le(0)
        .objectRouterPrefixlist6RuleId("string")
        .prefix6("string")
        .scopetype("string")
        .build());
    
    object_router_prefixlist6_rule_resource = fortimanager.ObjectRouterPrefixlist6Rule("objectRouterPrefixlist6RuleResource",
        prefix_list6="string",
        action="string",
        adom="string",
        flags=0,
        fosid=0,
        ge=0,
        le=0,
        object_router_prefixlist6_rule_id="string",
        prefix6="string",
        scopetype="string")
    
    const objectRouterPrefixlist6RuleResource = new fortimanager.ObjectRouterPrefixlist6Rule("objectRouterPrefixlist6RuleResource", {
        prefixList6: "string",
        action: "string",
        adom: "string",
        flags: 0,
        fosid: 0,
        ge: 0,
        le: 0,
        objectRouterPrefixlist6RuleId: "string",
        prefix6: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectRouterPrefixlist6Rule
    properties:
        action: string
        adom: string
        flags: 0
        fosid: 0
        ge: 0
        le: 0
        objectRouterPrefixlist6RuleId: string
        prefix6: string
        prefixList6: string
        scopetype: string
    

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

    PrefixList6 string
    Prefix List6.
    Action string
    Permit or deny packets that match this rule. 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 - 128).
    Le double
    Maximum prefix length to be matched (0 - 128).
    ObjectRouterPrefixlist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 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.
    PrefixList6 string
    Prefix List6.
    Action string
    Permit or deny packets that match this rule. 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 - 128).
    Le float64
    Maximum prefix length to be matched (0 - 128).
    ObjectRouterPrefixlist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 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.
    prefixList6 String
    Prefix List6.
    action String
    Permit or deny packets that match this rule. 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 - 128).
    le Double
    Maximum prefix length to be matched (0 - 128).
    objectRouterPrefixlist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 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.
    prefixList6 string
    Prefix List6.
    action string
    Permit or deny packets that match this rule. 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 - 128).
    le number
    Maximum prefix length to be matched (0 - 128).
    objectRouterPrefixlist6RuleId string
    an identifier for the resource with format {{fosid}}.
    prefix6 string
    IPv6 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_list6 str
    Prefix List6.
    action str
    Permit or deny packets that match this rule. 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 - 128).
    le float
    Maximum prefix length to be matched (0 - 128).
    object_router_prefixlist6_rule_id str
    an identifier for the resource with format {{fosid}}.
    prefix6 str
    IPv6 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.
    prefixList6 String
    Prefix List6.
    action String
    Permit or deny packets that match this rule. 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 - 128).
    le Number
    Maximum prefix length to be matched (0 - 128).
    objectRouterPrefixlist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 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 ObjectRouterPrefixlist6Rule 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 ObjectRouterPrefixlist6Rule Resource

    Get an existing ObjectRouterPrefixlist6Rule 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?: ObjectRouterPrefixlist6RuleState, opts?: CustomResourceOptions): ObjectRouterPrefixlist6Rule
    @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_prefixlist6_rule_id: Optional[str] = None,
            prefix6: Optional[str] = None,
            prefix_list6: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectRouterPrefixlist6Rule
    func GetObjectRouterPrefixlist6Rule(ctx *Context, name string, id IDInput, state *ObjectRouterPrefixlist6RuleState, opts ...ResourceOption) (*ObjectRouterPrefixlist6Rule, error)
    public static ObjectRouterPrefixlist6Rule Get(string name, Input<string> id, ObjectRouterPrefixlist6RuleState? state, CustomResourceOptions? opts = null)
    public static ObjectRouterPrefixlist6Rule get(String name, Output<String> id, ObjectRouterPrefixlist6RuleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectRouterPrefixlist6Rule    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 packets that match this rule. 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 - 128).
    Le double
    Maximum prefix length to be matched (0 - 128).
    ObjectRouterPrefixlist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    PrefixList6 string
    Prefix List6.
    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 packets that match this rule. 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 - 128).
    Le float64
    Maximum prefix length to be matched (0 - 128).
    ObjectRouterPrefixlist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    PrefixList6 string
    Prefix List6.
    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 packets that match this rule. 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 - 128).
    le Double
    Maximum prefix length to be matched (0 - 128).
    objectRouterPrefixlist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    prefixList6 String
    Prefix List6.
    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 packets that match this rule. 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 - 128).
    le number
    Maximum prefix length to be matched (0 - 128).
    objectRouterPrefixlist6RuleId string
    an identifier for the resource with format {{fosid}}.
    prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    prefixList6 string
    Prefix List6.
    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 packets that match this rule. 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 - 128).
    le float
    Maximum prefix length to be matched (0 - 128).
    object_router_prefixlist6_rule_id str
    an identifier for the resource with format {{fosid}}.
    prefix6 str
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    prefix_list6 str
    Prefix List6.
    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 packets that match this rule. 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 - 128).
    le Number
    Maximum prefix length to be matched (0 - 128).
    objectRouterPrefixlist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    prefixList6 String
    Prefix List6.
    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 PrefixList6Rule can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectRouterPrefixlist6Rule:ObjectRouterPrefixlist6Rule 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