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 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.
- Gaia
Inbound stringRoute Filter Ospf3Id - 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 boolIpv6 - 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<Gaia
Inbound Route Filter Ospf3Route> - 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 stringRoute Filter Ospf3Id - 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 boolIpv6 - 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
[]Gaia
Inbound Route Filter Ospf3Route Args - 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_ stringroute_ filter_ ospf3_ id - 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_ boolipv6 - 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.
- gaia
Inbound StringRoute Filter Ospf3Id - 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 Boolean
- Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
- restrict
All BooleanIpv6 - 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<Gaia
Inbound Route Filter Ospf3Route> - Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Inbound stringRoute Filter Ospf3Id - 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 boolean
- Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
- restrict
All booleanIpv6 - 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
Gaia
Inbound Route Filter Ospf3Route[] - 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_ strroute_ filter_ ospf3_ id - 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_ boolipv6 - 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[Gaia
Inbound Route Filter Ospf3Route Args] - Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Inbound StringRoute Filter Ospf3Id - 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 Boolean
- Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
- restrict
All BooleanIpv6 - 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) -> GaiaInboundRouteFilterOspf3func 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.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Inbound stringRoute Filter Ospf3Id - 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 boolIpv6 - 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<Gaia
Inbound Route Filter Ospf3Route> - 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 stringRoute Filter Ospf3Id - 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 boolIpv6 - 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
[]Gaia
Inbound Route Filter Ospf3Route Args - 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_ stringroute_ filter_ ospf3_ id - 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_ boolipv6 - 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.
- gaia
Inbound StringRoute Filter Ospf3Id - 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 Boolean
- Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
- restrict
All BooleanIpv6 - 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<Gaia
Inbound Route Filter Ospf3Route> - Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Inbound stringRoute Filter Ospf3Id - 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 boolean
- Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
- restrict
All booleanIpv6 - 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
Gaia
Inbound Route Filter Ospf3Route[] - 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_ strroute_ filter_ ospf3_ id - 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_ boolipv6 - 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[Gaia
Inbound Route Filter Ospf3Route Args] - Configures filtering of imported IPv6 routes for a given policy rule route blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Inbound StringRoute Filter Ospf3Id - 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 Boolean
- Resets Inbound Route Filter configuration to a default state for the given IPv6 OSPF Instance
- restrict
All BooleanIpv6 - 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
- 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
- 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
- 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
- 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 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 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
- 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 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
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw