1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaInboundRouteFilterOspf3
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Inbound Route Filter Ospf3.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaInboundRouteFilterOspf3("example", {
        instance: "default",
        rank: "255",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaInboundRouteFilterOspf3("example",
        instance="default",
        rank="255")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewGaiaInboundRouteFilterOspf3(ctx, "example", &checkpoint.GaiaInboundRouteFilterOspf3Args{
    			Instance: pulumi.String("default"),
    			Rank:     pulumi.String("255"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Checkpoint.GaiaInboundRouteFilterOspf3("example", new()
        {
            Instance = "default",
            Rank = "255",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaInboundRouteFilterOspf3;
    import com.pulumi.checkpoint.GaiaInboundRouteFilterOspf3Args;
    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 example = new GaiaInboundRouteFilterOspf3("example", GaiaInboundRouteFilterOspf3Args.builder()
                .instance("default")
                .rank("255")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaInboundRouteFilterOspf3
        properties:
          instance: default
          rank: '255'
    
    Example coming soon!
    

    Create GaiaInboundRouteFilterOspf3 Resource

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

    Constructor syntax

    new GaiaInboundRouteFilterOspf3(name: string, args?: GaiaInboundRouteFilterOspf3Args, opts?: CustomResourceOptions);
    @overload
    def GaiaInboundRouteFilterOspf3(resource_name: str,
                                    args: Optional[GaiaInboundRouteFilterOspf3Args] = None,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaInboundRouteFilterOspf3(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    debug: Optional[bool] = None,
                                    gaia_inbound_route_filter_ospf3_id: Optional[str] = None,
                                    instance: Optional[str] = None,
                                    member_id: Optional[str] = None,
                                    rank: Optional[str] = None,
                                    reset: Optional[bool] = None,
                                    restrict_all_ipv6: Optional[bool] = None,
                                    routes: Optional[Sequence[GaiaInboundRouteFilterOspf3RouteArgs]] = None)
    func NewGaiaInboundRouteFilterOspf3(ctx *Context, name string, args *GaiaInboundRouteFilterOspf3Args, opts ...ResourceOption) (*GaiaInboundRouteFilterOspf3, error)
    public GaiaInboundRouteFilterOspf3(string name, GaiaInboundRouteFilterOspf3Args? args = null, CustomResourceOptions? opts = null)
    public GaiaInboundRouteFilterOspf3(String name, GaiaInboundRouteFilterOspf3Args args)
    public GaiaInboundRouteFilterOspf3(String name, GaiaInboundRouteFilterOspf3Args args, CustomResourceOptions options)
    
    type: checkpoint:GaiaInboundRouteFilterOspf3
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiainboundroutefilterospf3" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaInboundRouteFilterOspf3Args
    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 GaiaInboundRouteFilterOspf3Args
    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 GaiaInboundRouteFilterOspf3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaInboundRouteFilterOspf3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaInboundRouteFilterOspf3Args
    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 gaiaInboundRouteFilterOspf3Resource = new Checkpoint.GaiaInboundRouteFilterOspf3("gaiaInboundRouteFilterOspf3Resource", new()
    {
        Debug = false,
        GaiaInboundRouteFilterOspf3Id = "string",
        Instance = "string",
        MemberId = "string",
        Rank = "string",
        Reset = false,
        RestrictAllIpv6 = false,
        Routes = new[]
        {
            new Checkpoint.Inputs.GaiaInboundRouteFilterOspf3RouteArgs
            {
                MatchType = "string",
                Rank = "string",
                Restrict = false,
                Subnet = "string",
            },
        },
    });
    
    example, err := checkpoint.NewGaiaInboundRouteFilterOspf3(ctx, "gaiaInboundRouteFilterOspf3Resource", &checkpoint.GaiaInboundRouteFilterOspf3Args{
    	Debug:                         pulumi.Bool(false),
    	GaiaInboundRouteFilterOspf3Id: pulumi.String("string"),
    	Instance:                      pulumi.String("string"),
    	MemberId:                      pulumi.String("string"),
    	Rank:                          pulumi.String("string"),
    	Reset:                         pulumi.Bool(false),
    	RestrictAllIpv6:               pulumi.Bool(false),
    	Routes: checkpoint.GaiaInboundRouteFilterOspf3RouteArray{
    		&checkpoint.GaiaInboundRouteFilterOspf3RouteArgs{
    			MatchType: pulumi.String("string"),
    			Rank:      pulumi.String("string"),
    			Restrict:  pulumi.Bool(false),
    			Subnet:    pulumi.String("string"),
    		},
    	},
    })
    
    resource "checkpoint_gaiainboundroutefilterospf3" "gaiaInboundRouteFilterOspf3Resource" {
      debug                              = false
      gaia_inbound_route_filter_ospf3_id = "string"
      instance                           = "string"
      member_id                          = "string"
      rank                               = "string"
      reset                              = false
      restrict_all_ipv6                  = false
      routes {
        match_type = "string"
        rank       = "string"
        restrict   = false
        subnet     = "string"
      }
    }
    
    var gaiaInboundRouteFilterOspf3Resource = new GaiaInboundRouteFilterOspf3("gaiaInboundRouteFilterOspf3Resource", GaiaInboundRouteFilterOspf3Args.builder()
        .debug(false)
        .gaiaInboundRouteFilterOspf3Id("string")
        .instance("string")
        .memberId("string")
        .rank("string")
        .reset(false)
        .restrictAllIpv6(false)
        .routes(GaiaInboundRouteFilterOspf3RouteArgs.builder()
            .matchType("string")
            .rank("string")
            .restrict(false)
            .subnet("string")
            .build())
        .build());
    
    gaia_inbound_route_filter_ospf3_resource = checkpoint.GaiaInboundRouteFilterOspf3("gaiaInboundRouteFilterOspf3Resource",
        debug=False,
        gaia_inbound_route_filter_ospf3_id="string",
        instance="string",
        member_id="string",
        rank="string",
        reset=False,
        restrict_all_ipv6=False,
        routes=[{
            "match_type": "string",
            "rank": "string",
            "restrict": False,
            "subnet": "string",
        }])
    
    const gaiaInboundRouteFilterOspf3Resource = new checkpoint.GaiaInboundRouteFilterOspf3("gaiaInboundRouteFilterOspf3Resource", {
        debug: false,
        gaiaInboundRouteFilterOspf3Id: "string",
        instance: "string",
        memberId: "string",
        rank: "string",
        reset: false,
        restrictAllIpv6: false,
        routes: [{
            matchType: "string",
            rank: "string",
            restrict: false,
            subnet: "string",
        }],
    });
    
    type: checkpoint:GaiaInboundRouteFilterOspf3
    properties:
        debug: false
        gaiaInboundRouteFilterOspf3Id: string
        instance: string
        memberId: string
        rank: string
        reset: false
        restrictAllIpv6: false
        routes:
            - matchType: string
              rank: string
              restrict: false
              subnet: string
    

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

    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterOspf3Id string
    Instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    Reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    RestrictAllIpv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    Routes List<GaiaInboundRouteFilterOspf3Route>
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterOspf3Id string
    Instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    Reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    RestrictAllIpv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    Routes []GaiaInboundRouteFilterOspf3RouteArgs
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_inbound_route_filter_ospf3_id string
    instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrict_all_ipv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes list(object)
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterOspf3Id String
    instance String
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank String
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset Boolean
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrictAllIpv6 Boolean
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes List<GaiaInboundRouteFilterOspf3Route>
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterOspf3Id string
    instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset boolean
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrictAllIpv6 boolean
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes GaiaInboundRouteFilterOspf3Route[]
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_inbound_route_filter_ospf3_id str
    instance str
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank str
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrict_all_ipv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes Sequence[GaiaInboundRouteFilterOspf3RouteArgs]
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterOspf3Id String
    instance String
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank String
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset Boolean
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrictAllIpv6 Boolean
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes List<Property Map>
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.

    Outputs

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

    Get an existing GaiaInboundRouteFilterOspf3 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?: GaiaInboundRouteFilterOspf3State, opts?: CustomResourceOptions): GaiaInboundRouteFilterOspf3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_inbound_route_filter_ospf3_id: Optional[str] = None,
            instance: Optional[str] = None,
            member_id: Optional[str] = None,
            rank: Optional[str] = None,
            reset: Optional[bool] = None,
            restrict_all_ipv6: Optional[bool] = None,
            routes: Optional[Sequence[GaiaInboundRouteFilterOspf3RouteArgs]] = None) -> GaiaInboundRouteFilterOspf3
    func GetGaiaInboundRouteFilterOspf3(ctx *Context, name string, id IDInput, state *GaiaInboundRouteFilterOspf3State, opts ...ResourceOption) (*GaiaInboundRouteFilterOspf3, error)
    public static GaiaInboundRouteFilterOspf3 Get(string name, Input<string> id, GaiaInboundRouteFilterOspf3State? state, CustomResourceOptions? opts = null)
    public static GaiaInboundRouteFilterOspf3 get(String name, Output<String> id, GaiaInboundRouteFilterOspf3State state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaInboundRouteFilterOspf3    get:      id: ${id}
    import {
      to = checkpoint_gaiainboundroutefilterospf3.example
      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:
    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterOspf3Id string
    Instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    Reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    RestrictAllIpv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    Routes List<GaiaInboundRouteFilterOspf3Route>
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterOspf3Id string
    Instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    Reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    RestrictAllIpv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    Routes []GaiaInboundRouteFilterOspf3RouteArgs
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_inbound_route_filter_ospf3_id string
    instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrict_all_ipv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes list(object)
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterOspf3Id String
    instance String
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank String
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset Boolean
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrictAllIpv6 Boolean
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes List<GaiaInboundRouteFilterOspf3Route>
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterOspf3Id string
    instance string
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank string
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset boolean
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrictAllIpv6 boolean
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes GaiaInboundRouteFilterOspf3Route[]
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_inbound_route_filter_ospf3_id str
    instance str
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank str
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset bool
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrict_all_ipv6 bool
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes Sequence[GaiaInboundRouteFilterOspf3RouteArgs]
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterOspf3Id String
    instance String
    Configures filtering of IPv6 routes for a specific OSPFv3 instance. Note: The specified OSPFv3 instance must be configured
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    rank String
    Assigns a rank to all incoming routes matching the filter. Rank is used by the routing system when there are routes from different protocols to the same destination. The route from the protocol with the lowest rank will be used. Note: This value cannot be specified when rule is set to restrict
    reset Boolean
    Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
    restrictAllIpv6 Boolean
    When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes
    routes List<Property Map>
    Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.

    Supporting Types

    GaiaInboundRouteFilterOspf3Route, GaiaInboundRouteFilterOspf3RouteArgs

    MatchType string
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    Rank string
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    Restrict bool
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    Subnet string
    Specifies the address range with which to filter imported IPv6 routes
    MatchType string
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    Rank string
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    Restrict bool
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    Subnet string
    Specifies the address range with which to filter imported IPv6 routes
    match_type string
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    rank string
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    restrict bool
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    subnet string
    Specifies the address range with which to filter imported IPv6 routes
    matchType String
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    rank String
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    restrict Boolean
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    subnet String
    Specifies the address range with which to filter imported IPv6 routes
    matchType string
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    rank string
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    restrict boolean
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    subnet string
    Specifies the address range with which to filter imported IPv6 routes
    match_type str
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    rank str
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    restrict bool
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    subnet str
    Specifies the address range with which to filter imported IPv6 routes
    matchType String
    Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length)
    rank String
    Assigns a rank to all incoming routes matching this filter, except those matching a more specific rule with a different rank configured. Rank is used by the routing system when there are routes from different protocols to the same destination. The route with the lowest rank from the protocol will be used
    restrict Boolean
    When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
    subnet String
    Specifies the address range with which to filter imported IPv6 routes

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial