1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaInboundRouteFilterRip
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 Rip.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaInboundRouteFilterRip("example", {
        restrictAllIpv4: false,
        rank: "255",
        routes: [
            {
                subnet: "1.2.3.0/24",
                matchType: "between",
                restrict: true,
                range: {
                    from: 24,
                    to: 32,
                },
            },
            {
                subnet: "1.2.4.0/24",
                matchType: "normal",
                restrict: false,
                rank: "1",
            },
        ],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaInboundRouteFilterRip("example",
        restrict_all_ipv4=False,
        rank="255",
        routes=[
            {
                "subnet": "1.2.3.0/24",
                "match_type": "between",
                "restrict": True,
                "range": {
                    "from_": 24,
                    "to": 32,
                },
            },
            {
                "subnet": "1.2.4.0/24",
                "match_type": "normal",
                "restrict": False,
                "rank": "1",
            },
        ])
    
    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.NewGaiaInboundRouteFilterRip(ctx, "example", &checkpoint.GaiaInboundRouteFilterRipArgs{
    			RestrictAllIpv4: pulumi.Bool(false),
    			Rank:            pulumi.String("255"),
    			Routes: checkpoint.GaiaInboundRouteFilterRipRouteArray{
    				&checkpoint.GaiaInboundRouteFilterRipRouteArgs{
    					Subnet:    pulumi.String("1.2.3.0/24"),
    					MatchType: pulumi.String("between"),
    					Restrict:  pulumi.Bool(true),
    					Range: &checkpoint.GaiaInboundRouteFilterRipRouteRangeArgs{
    						From: pulumi.Float64(24),
    						To:   pulumi.Float64(32),
    					},
    				},
    				&checkpoint.GaiaInboundRouteFilterRipRouteArgs{
    					Subnet:    pulumi.String("1.2.4.0/24"),
    					MatchType: pulumi.String("normal"),
    					Restrict:  pulumi.Bool(false),
    					Rank:      pulumi.String("1"),
    				},
    			},
    		})
    		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.GaiaInboundRouteFilterRip("example", new()
        {
            RestrictAllIpv4 = false,
            Rank = "255",
            Routes = new[]
            {
                new Checkpoint.Inputs.GaiaInboundRouteFilterRipRouteArgs
                {
                    Subnet = "1.2.3.0/24",
                    MatchType = "between",
                    Restrict = true,
                    Range = new Checkpoint.Inputs.GaiaInboundRouteFilterRipRouteRangeArgs
                    {
                        From = 24,
                        To = 32,
                    },
                },
                new Checkpoint.Inputs.GaiaInboundRouteFilterRipRouteArgs
                {
                    Subnet = "1.2.4.0/24",
                    MatchType = "normal",
                    Restrict = false,
                    Rank = "1",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaInboundRouteFilterRip;
    import com.pulumi.checkpoint.GaiaInboundRouteFilterRipArgs;
    import com.pulumi.checkpoint.inputs.GaiaInboundRouteFilterRipRouteArgs;
    import com.pulumi.checkpoint.inputs.GaiaInboundRouteFilterRipRouteRangeArgs;
    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 GaiaInboundRouteFilterRip("example", GaiaInboundRouteFilterRipArgs.builder()
                .restrictAllIpv4(false)
                .rank("255")
                .routes(            
                    GaiaInboundRouteFilterRipRouteArgs.builder()
                        .subnet("1.2.3.0/24")
                        .matchType("between")
                        .restrict(true)
                        .range(GaiaInboundRouteFilterRipRouteRangeArgs.builder()
                            .from(24.0)
                            .to(32.0)
                            .build())
                        .build(),
                    GaiaInboundRouteFilterRipRouteArgs.builder()
                        .subnet("1.2.4.0/24")
                        .matchType("normal")
                        .restrict(false)
                        .rank("1")
                        .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaInboundRouteFilterRip
        properties:
          restrictAllIpv4: false
          rank: '255'
          routes:
            - subnet: 1.2.3.0/24
              matchType: between
              restrict: true
              range:
                from: 24
                to: 32
            - subnet: 1.2.4.0/24
              matchType: normal
              restrict: false
              rank: '1'
    
    Example coming soon!
    

    Create GaiaInboundRouteFilterRip Resource

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

    Constructor syntax

    new GaiaInboundRouteFilterRip(name: string, args?: GaiaInboundRouteFilterRipArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaInboundRouteFilterRip(resource_name: str,
                                  args: Optional[GaiaInboundRouteFilterRipArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaInboundRouteFilterRip(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  debug: Optional[bool] = None,
                                  gaia_inbound_route_filter_rip_id: 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[GaiaInboundRouteFilterRipRouteArgs]] = None)
    func NewGaiaInboundRouteFilterRip(ctx *Context, name string, args *GaiaInboundRouteFilterRipArgs, opts ...ResourceOption) (*GaiaInboundRouteFilterRip, error)
    public GaiaInboundRouteFilterRip(string name, GaiaInboundRouteFilterRipArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaInboundRouteFilterRip(String name, GaiaInboundRouteFilterRipArgs args)
    public GaiaInboundRouteFilterRip(String name, GaiaInboundRouteFilterRipArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaInboundRouteFilterRip
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiainboundroutefilterrip" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaInboundRouteFilterRipArgs
    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 GaiaInboundRouteFilterRipArgs
    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 GaiaInboundRouteFilterRipArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaInboundRouteFilterRipArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaInboundRouteFilterRipArgs
    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 gaiaInboundRouteFilterRipResource = new Checkpoint.GaiaInboundRouteFilterRip("gaiaInboundRouteFilterRipResource", new()
    {
        Debug = false,
        GaiaInboundRouteFilterRipId = "string",
        MemberId = "string",
        Rank = "string",
        Reset = false,
        RestrictAllIpv4 = false,
        Routes = new[]
        {
            new Checkpoint.Inputs.GaiaInboundRouteFilterRipRouteArgs
            {
                MatchType = "string",
                Range = new Checkpoint.Inputs.GaiaInboundRouteFilterRipRouteRangeArgs
                {
                    From = 0,
                    To = 0,
                },
                Rank = "string",
                Restrict = false,
                Subnet = "string",
            },
        },
    });
    
    example, err := checkpoint.NewGaiaInboundRouteFilterRip(ctx, "gaiaInboundRouteFilterRipResource", &checkpoint.GaiaInboundRouteFilterRipArgs{
    	Debug:                       pulumi.Bool(false),
    	GaiaInboundRouteFilterRipId: pulumi.String("string"),
    	MemberId:                    pulumi.String("string"),
    	Rank:                        pulumi.String("string"),
    	Reset:                       pulumi.Bool(false),
    	RestrictAllIpv4:             pulumi.Bool(false),
    	Routes: checkpoint.GaiaInboundRouteFilterRipRouteArray{
    		&checkpoint.GaiaInboundRouteFilterRipRouteArgs{
    			MatchType: pulumi.String("string"),
    			Range: &checkpoint.GaiaInboundRouteFilterRipRouteRangeArgs{
    				From: pulumi.Float64(0),
    				To:   pulumi.Float64(0),
    			},
    			Rank:     pulumi.String("string"),
    			Restrict: pulumi.Bool(false),
    			Subnet:   pulumi.String("string"),
    		},
    	},
    })
    
    resource "checkpoint_gaiainboundroutefilterrip" "gaiaInboundRouteFilterRipResource" {
      debug                            = false
      gaia_inbound_route_filter_rip_id = "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 gaiaInboundRouteFilterRipResource = new GaiaInboundRouteFilterRip("gaiaInboundRouteFilterRipResource", GaiaInboundRouteFilterRipArgs.builder()
        .debug(false)
        .gaiaInboundRouteFilterRipId("string")
        .memberId("string")
        .rank("string")
        .reset(false)
        .restrictAllIpv4(false)
        .routes(GaiaInboundRouteFilterRipRouteArgs.builder()
            .matchType("string")
            .range(GaiaInboundRouteFilterRipRouteRangeArgs.builder()
                .from(0.0)
                .to(0.0)
                .build())
            .rank("string")
            .restrict(false)
            .subnet("string")
            .build())
        .build());
    
    gaia_inbound_route_filter_rip_resource = checkpoint.GaiaInboundRouteFilterRip("gaiaInboundRouteFilterRipResource",
        debug=False,
        gaia_inbound_route_filter_rip_id="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 gaiaInboundRouteFilterRipResource = new checkpoint.GaiaInboundRouteFilterRip("gaiaInboundRouteFilterRipResource", {
        debug: false,
        gaiaInboundRouteFilterRipId: "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:GaiaInboundRouteFilterRip
    properties:
        debug: false
        gaiaInboundRouteFilterRipId: string
        memberId: string
        rank: string
        reset: false
        restrictAllIpv4: false
        routes:
            - matchType: string
              range:
                from: 0
                to: 0
              rank: string
              restrict: false
              subnet: string
    

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

    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterRipId string
    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
    Reset Inbound Route Filter configuration to a default state
    RestrictAllIpv4 bool
    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<GaiaInboundRouteFilterRipRoute>
    Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterRipId string
    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
    Reset Inbound Route Filter configuration to a default state
    RestrictAllIpv4 bool
    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 []GaiaInboundRouteFilterRipRouteArgs
    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_route_filter_rip_id string
    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
    Reset Inbound Route Filter configuration to a default state
    restrict_all_ipv4 bool
    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.
    gaiaInboundRouteFilterRipId String
    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
    Reset Inbound Route Filter configuration to a default state
    restrictAllIpv4 Boolean
    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<GaiaInboundRouteFilterRipRoute>
    Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterRipId string
    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
    Reset Inbound Route Filter configuration to a default state
    restrictAllIpv4 boolean
    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 GaiaInboundRouteFilterRipRoute[]
    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_route_filter_rip_id str
    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
    Reset Inbound Route Filter configuration to a default state
    restrict_all_ipv4 bool
    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[GaiaInboundRouteFilterRipRouteArgs]
    Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterRipId String
    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
    Reset Inbound Route Filter configuration to a default state
    restrictAllIpv4 Boolean
    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 GaiaInboundRouteFilterRip 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 GaiaInboundRouteFilterRip Resource

    Get an existing GaiaInboundRouteFilterRip 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?: GaiaInboundRouteFilterRipState, opts?: CustomResourceOptions): GaiaInboundRouteFilterRip
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_inbound_route_filter_rip_id: 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[GaiaInboundRouteFilterRipRouteArgs]] = None) -> GaiaInboundRouteFilterRip
    func GetGaiaInboundRouteFilterRip(ctx *Context, name string, id IDInput, state *GaiaInboundRouteFilterRipState, opts ...ResourceOption) (*GaiaInboundRouteFilterRip, error)
    public static GaiaInboundRouteFilterRip Get(string name, Input<string> id, GaiaInboundRouteFilterRipState? state, CustomResourceOptions? opts = null)
    public static GaiaInboundRouteFilterRip get(String name, Output<String> id, GaiaInboundRouteFilterRipState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaInboundRouteFilterRip    get:      id: ${id}
    import {
      to = checkpoint_gaiainboundroutefilterrip.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.
    GaiaInboundRouteFilterRipId string
    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
    Reset Inbound Route Filter configuration to a default state
    RestrictAllIpv4 bool
    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<GaiaInboundRouteFilterRipRoute>
    Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaInboundRouteFilterRipId string
    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
    Reset Inbound Route Filter configuration to a default state
    RestrictAllIpv4 bool
    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 []GaiaInboundRouteFilterRipRouteArgs
    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_route_filter_rip_id string
    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
    Reset Inbound Route Filter configuration to a default state
    restrict_all_ipv4 bool
    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.
    gaiaInboundRouteFilterRipId String
    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
    Reset Inbound Route Filter configuration to a default state
    restrictAllIpv4 Boolean
    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<GaiaInboundRouteFilterRipRoute>
    Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterRipId string
    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
    Reset Inbound Route Filter configuration to a default state
    restrictAllIpv4 boolean
    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 GaiaInboundRouteFilterRipRoute[]
    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_route_filter_rip_id str
    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
    Reset Inbound Route Filter configuration to a default state
    restrict_all_ipv4 bool
    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[GaiaInboundRouteFilterRipRouteArgs]
    Configures filtering of imported IPv4 routes for a given policy rule route blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaInboundRouteFilterRipId String
    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
    Reset Inbound Route Filter configuration to a default state
    restrictAllIpv4 Boolean
    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

    GaiaInboundRouteFilterRipRoute, GaiaInboundRouteFilterRipRouteArgs

    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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
    Range GaiaInboundRouteFilterRipRouteRange
    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
    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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
    Range GaiaInboundRouteFilterRipRouteRange
    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
    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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
    range GaiaInboundRouteFilterRipRouteRange
    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
    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) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range
    range GaiaInboundRouteFilterRipRouteRange
    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 GaiaInboundRouteFilterRipRouteRange
    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
    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) 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

    GaiaInboundRouteFilterRipRouteRange, GaiaInboundRouteFilterRipRouteRangeArgs

    From double
    Specifies the lower limit of the range of mask lengths
    To double
    Specifies the upper limit of the range of mask lengths
    From float64
    Specifies the lower limit of the range of mask lengths
    To float64
    Specifies the upper limit of the range of mask lengths
    from number
    Specifies the lower limit of the range of mask lengths
    to number
    Specifies the upper limit of the range of mask lengths
    from Double
    Specifies the lower limit of the range of mask lengths
    to Double
    Specifies the upper limit of the range of mask lengths
    from number
    Specifies the lower limit of the range of mask lengths
    to number
    Specifies the upper limit of the range of mask lengths
    from_ float
    Specifies the lower limit of the range of mask lengths
    to float
    Specifies the upper limit of the range of mask lengths
    from Number
    Specifies the lower limit of the range of mask lengths
    to Number
    Specifies the upper limit of the range of mask lengths

    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