1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaPbrRule
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 Pbr Rule.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaPbrRule("example", {
        priority: 1,
        match: {
            "interface": "eth0",
            protocol: "tcp",
            port: 80,
            source: {
                address: "10.0.0.0",
                maskLength: 24,
            },
            destination: {
                address: "10.1.0.0",
                maskLength: 24,
            },
        },
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaPbrRule("example",
        priority=1,
        match={
            "interface": "eth0",
            "protocol": "tcp",
            "port": 80,
            "source": {
                "address": "10.0.0.0",
                "mask_length": 24,
            },
            "destination": {
                "address": "10.1.0.0",
                "mask_length": 24,
            },
        })
    
    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.NewGaiaPbrRule(ctx, "example", &checkpoint.GaiaPbrRuleArgs{
    			Priority: pulumi.Float64(1),
    			Match: &checkpoint.GaiaPbrRuleMatchArgs{
    				Interface: pulumi.String("eth0"),
    				Protocol:  pulumi.String("tcp"),
    				Port:      pulumi.Float64(80),
    				Source: &checkpoint.GaiaPbrRuleMatchSourceArgs{
    					Address:    pulumi.String("10.0.0.0"),
    					MaskLength: pulumi.Float64(24),
    				},
    				Destination: &checkpoint.GaiaPbrRuleMatchDestinationArgs{
    					Address:    pulumi.String("10.1.0.0"),
    					MaskLength: pulumi.Float64(24),
    				},
    			},
    		})
    		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.GaiaPbrRule("example", new()
        {
            Priority = 1,
            Match = new Checkpoint.Inputs.GaiaPbrRuleMatchArgs
            {
                Interface = "eth0",
                Protocol = "tcp",
                Port = 80,
                Source = new Checkpoint.Inputs.GaiaPbrRuleMatchSourceArgs
                {
                    Address = "10.0.0.0",
                    MaskLength = 24,
                },
                Destination = new Checkpoint.Inputs.GaiaPbrRuleMatchDestinationArgs
                {
                    Address = "10.1.0.0",
                    MaskLength = 24,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaPbrRule;
    import com.pulumi.checkpoint.GaiaPbrRuleArgs;
    import com.pulumi.checkpoint.inputs.GaiaPbrRuleMatchArgs;
    import com.pulumi.checkpoint.inputs.GaiaPbrRuleMatchSourceArgs;
    import com.pulumi.checkpoint.inputs.GaiaPbrRuleMatchDestinationArgs;
    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 GaiaPbrRule("example", GaiaPbrRuleArgs.builder()
                .priority(1.0)
                .match(GaiaPbrRuleMatchArgs.builder()
                    .interface_("eth0")
                    .protocol("tcp")
                    .port(80.0)
                    .source(GaiaPbrRuleMatchSourceArgs.builder()
                        .address("10.0.0.0")
                        .maskLength(24.0)
                        .build())
                    .destination(GaiaPbrRuleMatchDestinationArgs.builder()
                        .address("10.1.0.0")
                        .maskLength(24.0)
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaPbrRule
        properties:
          priority: 1
          match:
            interface: eth0
            protocol: tcp
            port: 80
            source:
              address: 10.0.0.0
              maskLength: 24
            destination:
              address: 10.1.0.0
              maskLength: 24
    
    Example coming soon!
    

    Create GaiaPbrRule Resource

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

    Constructor syntax

    new GaiaPbrRule(name: string, args: GaiaPbrRuleArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaPbrRule(resource_name: str,
                    args: GaiaPbrRuleArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaPbrRule(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    match: Optional[GaiaPbrRuleMatchArgs] = None,
                    priority: Optional[float] = None,
                    action: Optional[GaiaPbrRuleActionArgs] = None,
                    debug: Optional[bool] = None,
                    gaia_pbr_rule_id: Optional[str] = None,
                    member_id: Optional[str] = None,
                    virtual_system_id: Optional[float] = None)
    func NewGaiaPbrRule(ctx *Context, name string, args GaiaPbrRuleArgs, opts ...ResourceOption) (*GaiaPbrRule, error)
    public GaiaPbrRule(string name, GaiaPbrRuleArgs args, CustomResourceOptions? opts = null)
    public GaiaPbrRule(String name, GaiaPbrRuleArgs args)
    public GaiaPbrRule(String name, GaiaPbrRuleArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaPbrRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiapbrrule" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaPbrRuleArgs
    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 GaiaPbrRuleArgs
    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 GaiaPbrRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaPbrRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaPbrRuleArgs
    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 gaiaPbrRuleResource = new Checkpoint.GaiaPbrRule("gaiaPbrRuleResource", new()
    {
        Match = new Checkpoint.Inputs.GaiaPbrRuleMatchArgs
        {
            Destination = new Checkpoint.Inputs.GaiaPbrRuleMatchDestinationArgs
            {
                Address = "string",
                MaskLength = 0,
            },
            Interface = "string",
            Port = 0,
            Protocol = "string",
            Source = new Checkpoint.Inputs.GaiaPbrRuleMatchSourceArgs
            {
                Address = "string",
                MaskLength = 0,
            },
        },
        Priority = 0,
        Action = new Checkpoint.Inputs.GaiaPbrRuleActionArgs
        {
            MainTable = false,
            Prohibit = false,
            Table = "string",
            Unreachable = false,
        },
        Debug = false,
        GaiaPbrRuleId = "string",
        MemberId = "string",
        VirtualSystemId = 0,
    });
    
    example, err := checkpoint.NewGaiaPbrRule(ctx, "gaiaPbrRuleResource", &checkpoint.GaiaPbrRuleArgs{
    	Match: &checkpoint.GaiaPbrRuleMatchArgs{
    		Destination: &checkpoint.GaiaPbrRuleMatchDestinationArgs{
    			Address:    pulumi.String("string"),
    			MaskLength: pulumi.Float64(0),
    		},
    		Interface: pulumi.String("string"),
    		Port:      pulumi.Float64(0),
    		Protocol:  pulumi.String("string"),
    		Source: &checkpoint.GaiaPbrRuleMatchSourceArgs{
    			Address:    pulumi.String("string"),
    			MaskLength: pulumi.Float64(0),
    		},
    	},
    	Priority: pulumi.Float64(0),
    	Action: &checkpoint.GaiaPbrRuleActionArgs{
    		MainTable:   pulumi.Bool(false),
    		Prohibit:    pulumi.Bool(false),
    		Table:       pulumi.String("string"),
    		Unreachable: pulumi.Bool(false),
    	},
    	Debug:           pulumi.Bool(false),
    	GaiaPbrRuleId:   pulumi.String("string"),
    	MemberId:        pulumi.String("string"),
    	VirtualSystemId: pulumi.Float64(0),
    })
    
    resource "checkpoint_gaiapbrrule" "gaiaPbrRuleResource" {
      match = {
        destination = {
          address     = "string"
          mask_length = 0
        }
        interface = "string"
        port      = 0
        protocol  = "string"
        source = {
          address     = "string"
          mask_length = 0
        }
      }
      priority = 0
      action = {
        main_table  = false
        prohibit    = false
        table       = "string"
        unreachable = false
      }
      debug             = false
      gaia_pbr_rule_id  = "string"
      member_id         = "string"
      virtual_system_id = 0
    }
    
    var gaiaPbrRuleResource = new GaiaPbrRule("gaiaPbrRuleResource", GaiaPbrRuleArgs.builder()
        .match(GaiaPbrRuleMatchArgs.builder()
            .destination(GaiaPbrRuleMatchDestinationArgs.builder()
                .address("string")
                .maskLength(0.0)
                .build())
            .interface_("string")
            .port(0.0)
            .protocol("string")
            .source(GaiaPbrRuleMatchSourceArgs.builder()
                .address("string")
                .maskLength(0.0)
                .build())
            .build())
        .priority(0.0)
        .action(GaiaPbrRuleActionArgs.builder()
            .mainTable(false)
            .prohibit(false)
            .table("string")
            .unreachable(false)
            .build())
        .debug(false)
        .gaiaPbrRuleId("string")
        .memberId("string")
        .virtualSystemId(0.0)
        .build());
    
    gaia_pbr_rule_resource = checkpoint.GaiaPbrRule("gaiaPbrRuleResource",
        match={
            "destination": {
                "address": "string",
                "mask_length": float(0),
            },
            "interface": "string",
            "port": float(0),
            "protocol": "string",
            "source": {
                "address": "string",
                "mask_length": float(0),
            },
        },
        priority=float(0),
        action={
            "main_table": False,
            "prohibit": False,
            "table": "string",
            "unreachable": False,
        },
        debug=False,
        gaia_pbr_rule_id="string",
        member_id="string",
        virtual_system_id=float(0))
    
    const gaiaPbrRuleResource = new checkpoint.GaiaPbrRule("gaiaPbrRuleResource", {
        match: {
            destination: {
                address: "string",
                maskLength: 0,
            },
            "interface": "string",
            port: 0,
            protocol: "string",
            source: {
                address: "string",
                maskLength: 0,
            },
        },
        priority: 0,
        action: {
            mainTable: false,
            prohibit: false,
            table: "string",
            unreachable: false,
        },
        debug: false,
        gaiaPbrRuleId: "string",
        memberId: "string",
        virtualSystemId: 0,
    });
    
    type: checkpoint:GaiaPbrRule
    properties:
        action:
            mainTable: false
            prohibit: false
            table: string
            unreachable: false
        debug: false
        gaiaPbrRuleId: string
        match:
            destination:
                address: string
                maskLength: 0
            interface: string
            port: 0
            protocol: string
            source:
                address: string
                maskLength: 0
        memberId: string
        priority: 0
        virtualSystemId: 0
    

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

    Match GaiaPbrRuleMatch
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    Priority double
    PBR Rule Priority
    Action GaiaPbrRuleAction
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaPbrRuleId 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
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Match GaiaPbrRuleMatchArgs
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    Priority float64
    PBR Rule Priority
    Action GaiaPbrRuleActionArgs
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaPbrRuleId 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
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    match object
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    priority number
    PBR Rule Priority
    action object
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_pbr_rule_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
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    match GaiaPbrRuleMatch
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    priority Double
    PBR Rule Priority
    action GaiaPbrRuleAction
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaPbrRuleId 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
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    match GaiaPbrRuleMatch
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    priority number
    PBR Rule Priority
    action GaiaPbrRuleAction
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaPbrRuleId 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
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    match GaiaPbrRuleMatchArgs
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    priority float
    PBR Rule Priority
    action GaiaPbrRuleActionArgs
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_pbr_rule_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
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    match Property Map
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    priority Number
    PBR Rule Priority
    action Property Map
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaPbrRuleId 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
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

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

    Get an existing GaiaPbrRule 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?: GaiaPbrRuleState, opts?: CustomResourceOptions): GaiaPbrRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[GaiaPbrRuleActionArgs] = None,
            debug: Optional[bool] = None,
            gaia_pbr_rule_id: Optional[str] = None,
            match: Optional[GaiaPbrRuleMatchArgs] = None,
            member_id: Optional[str] = None,
            priority: Optional[float] = None,
            virtual_system_id: Optional[float] = None) -> GaiaPbrRule
    func GetGaiaPbrRule(ctx *Context, name string, id IDInput, state *GaiaPbrRuleState, opts ...ResourceOption) (*GaiaPbrRule, error)
    public static GaiaPbrRule Get(string name, Input<string> id, GaiaPbrRuleState? state, CustomResourceOptions? opts = null)
    public static GaiaPbrRule get(String name, Output<String> id, GaiaPbrRuleState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaPbrRule    get:      id: ${id}
    import {
      to = checkpoint_gaiapbrrule.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:
    Action GaiaPbrRuleAction
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaPbrRuleId string
    Match GaiaPbrRuleMatch
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    Priority double
    PBR Rule Priority
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Action GaiaPbrRuleActionArgs
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaPbrRuleId string
    Match GaiaPbrRuleMatchArgs
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    Priority float64
    PBR Rule Priority
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    action object
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_pbr_rule_id string
    match object
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    priority number
    PBR Rule Priority
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    action GaiaPbrRuleAction
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaPbrRuleId String
    match GaiaPbrRuleMatch
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    priority Double
    PBR Rule Priority
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    action GaiaPbrRuleAction
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaPbrRuleId string
    match GaiaPbrRuleMatch
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    priority number
    PBR Rule Priority
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    action GaiaPbrRuleActionArgs
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_pbr_rule_id str
    match GaiaPbrRuleMatchArgs
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    priority float
    PBR Rule Priority
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    action Property Map
    PBR Rule actions. These specify the action to take if traffic matches the PBR Rule. action blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaPbrRuleId String
    match Property Map
    PBR Rule match conditions. These determine what traffic will match the PBR Rule. match blocks are documented below.
    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
    priority Number
    PBR Rule Priority
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Supporting Types

    GaiaPbrRuleAction, GaiaPbrRuleActionArgs

    MainTable bool
    Use the main routing table to route matched traffic
    Prohibit bool
    Mark matched traffic as prohibited
    Table string
    Name of PBR Table used to route matched traffic
    Unreachable bool
    Report matched traffic as having an unreachable destination
    MainTable bool
    Use the main routing table to route matched traffic
    Prohibit bool
    Mark matched traffic as prohibited
    Table string
    Name of PBR Table used to route matched traffic
    Unreachable bool
    Report matched traffic as having an unreachable destination
    main_table bool
    Use the main routing table to route matched traffic
    prohibit bool
    Mark matched traffic as prohibited
    table string
    Name of PBR Table used to route matched traffic
    unreachable bool
    Report matched traffic as having an unreachable destination
    mainTable Boolean
    Use the main routing table to route matched traffic
    prohibit Boolean
    Mark matched traffic as prohibited
    table String
    Name of PBR Table used to route matched traffic
    unreachable Boolean
    Report matched traffic as having an unreachable destination
    mainTable boolean
    Use the main routing table to route matched traffic
    prohibit boolean
    Mark matched traffic as prohibited
    table string
    Name of PBR Table used to route matched traffic
    unreachable boolean
    Report matched traffic as having an unreachable destination
    main_table bool
    Use the main routing table to route matched traffic
    prohibit bool
    Mark matched traffic as prohibited
    table str
    Name of PBR Table used to route matched traffic
    unreachable bool
    Report matched traffic as having an unreachable destination
    mainTable Boolean
    Use the main routing table to route matched traffic
    prohibit Boolean
    Mark matched traffic as prohibited
    table String
    Name of PBR Table used to route matched traffic
    unreachable Boolean
    Report matched traffic as having an unreachable destination

    GaiaPbrRuleMatch, GaiaPbrRuleMatchArgs

    Destination GaiaPbrRuleMatchDestination
    Match traffic with destination network destination blocks are documented below.
    Interface string
    Match traffic on inbound interface
    Port double
    Match traffic by service port
    Protocol string
    Match traffic by protocol
    Source GaiaPbrRuleMatchSource
    Match traffic with source network source blocks are documented below.
    Destination GaiaPbrRuleMatchDestination
    Match traffic with destination network destination blocks are documented below.
    Interface string
    Match traffic on inbound interface
    Port float64
    Match traffic by service port
    Protocol string
    Match traffic by protocol
    Source GaiaPbrRuleMatchSource
    Match traffic with source network source blocks are documented below.
    destination object
    Match traffic with destination network destination blocks are documented below.
    interface string
    Match traffic on inbound interface
    port number
    Match traffic by service port
    protocol string
    Match traffic by protocol
    source object
    Match traffic with source network source blocks are documented below.
    destination GaiaPbrRuleMatchDestination
    Match traffic with destination network destination blocks are documented below.
    interface_ String
    Match traffic on inbound interface
    port Double
    Match traffic by service port
    protocol String
    Match traffic by protocol
    source GaiaPbrRuleMatchSource
    Match traffic with source network source blocks are documented below.
    destination GaiaPbrRuleMatchDestination
    Match traffic with destination network destination blocks are documented below.
    interface string
    Match traffic on inbound interface
    port number
    Match traffic by service port
    protocol string
    Match traffic by protocol
    source GaiaPbrRuleMatchSource
    Match traffic with source network source blocks are documented below.
    destination GaiaPbrRuleMatchDestination
    Match traffic with destination network destination blocks are documented below.
    interface str
    Match traffic on inbound interface
    port float
    Match traffic by service port
    protocol str
    Match traffic by protocol
    source GaiaPbrRuleMatchSource
    Match traffic with source network source blocks are documented below.
    destination Property Map
    Match traffic with destination network destination blocks are documented below.
    interface String
    Match traffic on inbound interface
    port Number
    Match traffic by service port
    protocol String
    Match traffic by protocol
    source Property Map
    Match traffic with source network source blocks are documented below.

    GaiaPbrRuleMatchDestination, GaiaPbrRuleMatchDestinationArgs

    Address string
    IPv4 address of network
    MaskLength double
    Mask length of network
    Address string
    IPv4 address of network
    MaskLength float64
    Mask length of network
    address string
    IPv4 address of network
    mask_length number
    Mask length of network
    address String
    IPv4 address of network
    maskLength Double
    Mask length of network
    address string
    IPv4 address of network
    maskLength number
    Mask length of network
    address str
    IPv4 address of network
    mask_length float
    Mask length of network
    address String
    IPv4 address of network
    maskLength Number
    Mask length of network

    GaiaPbrRuleMatchSource, GaiaPbrRuleMatchSourceArgs

    Address string
    IPv4 address of network
    MaskLength double
    Mask length of network
    Address string
    IPv4 address of network
    MaskLength float64
    Mask length of network
    address string
    IPv4 address of network
    mask_length number
    Mask length of network
    address String
    IPv4 address of network
    maskLength Double
    Mask length of network
    address string
    IPv4 address of network
    maskLength number
    Mask length of network
    address str
    IPv4 address of network
    mask_length float
    Mask length of network
    address String
    IPv4 address of network
    maskLength Number
    Mask length of network

    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