published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Inbound Route Filter Ospf2.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaInboundRouteFilterOspf2("example", {
instance: "default",
restrictAllIpv4: true,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaInboundRouteFilterOspf2("example",
instance="default",
restrict_all_ipv4=True)
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.NewGaiaInboundRouteFilterOspf2(ctx, "example", &checkpoint.GaiaInboundRouteFilterOspf2Args{
Instance: pulumi.String("default"),
RestrictAllIpv4: pulumi.Bool(true),
})
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.GaiaInboundRouteFilterOspf2("example", new()
{
Instance = "default",
RestrictAllIpv4 = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaInboundRouteFilterOspf2;
import com.pulumi.checkpoint.GaiaInboundRouteFilterOspf2Args;
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 GaiaInboundRouteFilterOspf2("example", GaiaInboundRouteFilterOspf2Args.builder()
.instance("default")
.restrictAllIpv4(true)
.build());
}
}
resources:
example:
type: checkpoint:GaiaInboundRouteFilterOspf2
properties:
instance: default
restrictAllIpv4: true
Example coming soon!
Create GaiaInboundRouteFilterOspf2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaInboundRouteFilterOspf2(name: string, args?: GaiaInboundRouteFilterOspf2Args, opts?: CustomResourceOptions);@overload
def GaiaInboundRouteFilterOspf2(resource_name: str,
args: Optional[GaiaInboundRouteFilterOspf2Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaInboundRouteFilterOspf2(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_inbound_route_filter_ospf2_id: Optional[str] = None,
instance: Optional[str] = None,
member_id: Optional[str] = None,
rank: Optional[str] = None,
reset: Optional[bool] = None,
restrict_all_ipv4: Optional[bool] = None,
routes: Optional[Sequence[GaiaInboundRouteFilterOspf2RouteArgs]] = None)func NewGaiaInboundRouteFilterOspf2(ctx *Context, name string, args *GaiaInboundRouteFilterOspf2Args, opts ...ResourceOption) (*GaiaInboundRouteFilterOspf2, error)public GaiaInboundRouteFilterOspf2(string name, GaiaInboundRouteFilterOspf2Args? args = null, CustomResourceOptions? opts = null)
public GaiaInboundRouteFilterOspf2(String name, GaiaInboundRouteFilterOspf2Args args)
public GaiaInboundRouteFilterOspf2(String name, GaiaInboundRouteFilterOspf2Args args, CustomResourceOptions options)
type: checkpoint:GaiaInboundRouteFilterOspf2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiainboundroutefilterospf2" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaInboundRouteFilterOspf2Args
- 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 GaiaInboundRouteFilterOspf2Args
- 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 GaiaInboundRouteFilterOspf2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaInboundRouteFilterOspf2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaInboundRouteFilterOspf2Args
- 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 gaiaInboundRouteFilterOspf2Resource = new Checkpoint.GaiaInboundRouteFilterOspf2("gaiaInboundRouteFilterOspf2Resource", new()
{
Debug = false,
GaiaInboundRouteFilterOspf2Id = "string",
Instance = "string",
MemberId = "string",
Rank = "string",
Reset = false,
RestrictAllIpv4 = false,
Routes = new[]
{
new Checkpoint.Inputs.GaiaInboundRouteFilterOspf2RouteArgs
{
MatchType = "string",
Range = new Checkpoint.Inputs.GaiaInboundRouteFilterOspf2RouteRangeArgs
{
From = 0,
To = 0,
},
Rank = "string",
Restrict = false,
Subnet = "string",
},
},
});
example, err := checkpoint.NewGaiaInboundRouteFilterOspf2(ctx, "gaiaInboundRouteFilterOspf2Resource", &checkpoint.GaiaInboundRouteFilterOspf2Args{
Debug: pulumi.Bool(false),
GaiaInboundRouteFilterOspf2Id: pulumi.String("string"),
Instance: pulumi.String("string"),
MemberId: pulumi.String("string"),
Rank: pulumi.String("string"),
Reset: pulumi.Bool(false),
RestrictAllIpv4: pulumi.Bool(false),
Routes: checkpoint.GaiaInboundRouteFilterOspf2RouteArray{
&checkpoint.GaiaInboundRouteFilterOspf2RouteArgs{
MatchType: pulumi.String("string"),
Range: &checkpoint.GaiaInboundRouteFilterOspf2RouteRangeArgs{
From: pulumi.Float64(0),
To: pulumi.Float64(0),
},
Rank: pulumi.String("string"),
Restrict: pulumi.Bool(false),
Subnet: pulumi.String("string"),
},
},
})
resource "checkpoint_gaiainboundroutefilterospf2" "gaiaInboundRouteFilterOspf2Resource" {
debug = false
gaia_inbound_route_filter_ospf2_id = "string"
instance = "string"
member_id = "string"
rank = "string"
reset = false
restrict_all_ipv4 = false
routes {
match_type = "string"
range = {
from = 0
to = 0
}
rank = "string"
restrict = false
subnet = "string"
}
}
var gaiaInboundRouteFilterOspf2Resource = new GaiaInboundRouteFilterOspf2("gaiaInboundRouteFilterOspf2Resource", GaiaInboundRouteFilterOspf2Args.builder()
.debug(false)
.gaiaInboundRouteFilterOspf2Id("string")
.instance("string")
.memberId("string")
.rank("string")
.reset(false)
.restrictAllIpv4(false)
.routes(GaiaInboundRouteFilterOspf2RouteArgs.builder()
.matchType("string")
.range(GaiaInboundRouteFilterOspf2RouteRangeArgs.builder()
.from(0.0)
.to(0.0)
.build())
.rank("string")
.restrict(false)
.subnet("string")
.build())
.build());
gaia_inbound_route_filter_ospf2_resource = checkpoint.GaiaInboundRouteFilterOspf2("gaiaInboundRouteFilterOspf2Resource",
debug=False,
gaia_inbound_route_filter_ospf2_id="string",
instance="string",
member_id="string",
rank="string",
reset=False,
restrict_all_ipv4=False,
routes=[{
"match_type": "string",
"range": {
"from_": float(0),
"to": float(0),
},
"rank": "string",
"restrict": False,
"subnet": "string",
}])
const gaiaInboundRouteFilterOspf2Resource = new checkpoint.GaiaInboundRouteFilterOspf2("gaiaInboundRouteFilterOspf2Resource", {
debug: false,
gaiaInboundRouteFilterOspf2Id: "string",
instance: "string",
memberId: "string",
rank: "string",
reset: false,
restrictAllIpv4: false,
routes: [{
matchType: "string",
range: {
from: 0,
to: 0,
},
rank: "string",
restrict: false,
subnet: "string",
}],
});
type: checkpoint:GaiaInboundRouteFilterOspf2
properties:
debug: false
gaiaInboundRouteFilterOspf2Id: string
instance: string
memberId: string
rank: string
reset: false
restrictAllIpv4: false
routes:
- matchType: string
range:
from: 0
to: 0
rank: string
restrict: false
subnet: string
GaiaInboundRouteFilterOspf2 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 GaiaInboundRouteFilterOspf2 resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Gaia
Inbound stringRoute Filter Ospf2Id - Instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- Routes
List<Gaia
Inbound Route Filter Ospf2Route> - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Inbound stringRoute Filter Ospf2Id - Instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- Routes
[]Gaia
Inbound Route Filter Ospf2Route Args - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
inbound_ stringroute_ filter_ ospf2_ id - instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes list(object)
- Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Inbound StringRoute Filter Ospf2Id - instance String
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 Boolean
- Resets Inbound Route Filter configuration to a default state for a given OSPFv2 instance
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes
List<Gaia
Inbound Route Filter Ospf2Route> - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Inbound stringRoute Filter Ospf2Id - instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 boolean
- Resets Inbound Route Filter configuration to a default state for a given OSPFv2 instance
- restrict
All booleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes
Gaia
Inbound Route Filter Ospf2Route[] - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
inbound_ strroute_ filter_ ospf2_ id - instance str
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes
Sequence[Gaia
Inbound Route Filter Ospf2Route Args] - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Inbound StringRoute Filter Ospf2Id - instance String
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 Boolean
- Resets Inbound Route Filter configuration to a default state for a given OSPFv2 instance
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes List<Property Map>
- Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaInboundRouteFilterOspf2 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 GaiaInboundRouteFilterOspf2 Resource
Get an existing GaiaInboundRouteFilterOspf2 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?: GaiaInboundRouteFilterOspf2State, opts?: CustomResourceOptions): GaiaInboundRouteFilterOspf2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_inbound_route_filter_ospf2_id: Optional[str] = None,
instance: Optional[str] = None,
member_id: Optional[str] = None,
rank: Optional[str] = None,
reset: Optional[bool] = None,
restrict_all_ipv4: Optional[bool] = None,
routes: Optional[Sequence[GaiaInboundRouteFilterOspf2RouteArgs]] = None) -> GaiaInboundRouteFilterOspf2func GetGaiaInboundRouteFilterOspf2(ctx *Context, name string, id IDInput, state *GaiaInboundRouteFilterOspf2State, opts ...ResourceOption) (*GaiaInboundRouteFilterOspf2, error)public static GaiaInboundRouteFilterOspf2 Get(string name, Input<string> id, GaiaInboundRouteFilterOspf2State? state, CustomResourceOptions? opts = null)public static GaiaInboundRouteFilterOspf2 get(String name, Output<String> id, GaiaInboundRouteFilterOspf2State state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaInboundRouteFilterOspf2 get: id: ${id}import {
to = checkpoint_gaiainboundroutefilterospf2.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.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Inbound stringRoute Filter Ospf2Id - Instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- Routes
List<Gaia
Inbound Route Filter Ospf2Route> - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Inbound stringRoute Filter Ospf2Id - Instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- Routes
[]Gaia
Inbound Route Filter Ospf2Route Args - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
inbound_ stringroute_ filter_ ospf2_ id - instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes list(object)
- Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Inbound StringRoute Filter Ospf2Id - instance String
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 Boolean
- Resets Inbound Route Filter configuration to a default state for a given OSPFv2 instance
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes
List<Gaia
Inbound Route Filter Ospf2Route> - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Inbound stringRoute Filter Ospf2Id - instance string
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 boolean
- Resets Inbound Route Filter configuration to a default state for a given OSPFv2 instance
- restrict
All booleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes
Gaia
Inbound Route Filter Ospf2Route[] - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
inbound_ strroute_ filter_ ospf2_ id - instance str
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 a given OSPFv2 instance
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes
Sequence[Gaia
Inbound Route Filter Ospf2Route Args] - Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Inbound StringRoute Filter Ospf2Id - instance String
- Configures filtering of IPv4 routes for a specific OSPFv2 instance. Note: The specified OSPFv2 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 Boolean
- Resets Inbound Route Filter configuration to a default state for a given OSPFv2 instance
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific filter, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific filter, which rejects the routes. By default, the rule accepts all IPv4 routes
- routes List<Property Map>
- Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
Supporting Types
GaiaInboundRouteFilterOspf2Route, GaiaInboundRouteFilterOspf2RouteArgs
- 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- Range
Gaia
Inbound Route Filter Ospf2Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- Range
Gaia
Inbound Route Filter Ospf2Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- range object
- Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- range
Gaia
Inbound Route Filter Ospf2Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- range
Gaia
Inbound Route Filter Ospf2Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- range
Gaia
Inbound Route Filter Ospf2Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
- range Property Map
- Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- 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 IPv4 routes
GaiaInboundRouteFilterOspf2RouteRange, GaiaInboundRouteFilterOspf2RouteRangeArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw