1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaStaticMroute
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 Static Mroute.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaStaticMroute("example", {
        address: "40.40.40.0",
        maskLength: 24,
        nextHops: [{
            gateway: "172.23.22.1",
            priority: "default",
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaStaticMroute("example",
        address="40.40.40.0",
        mask_length=24,
        next_hops=[{
            "gateway": "172.23.22.1",
            "priority": "default",
        }])
    
    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.NewGaiaStaticMroute(ctx, "example", &checkpoint.GaiaStaticMrouteArgs{
    			Address:    pulumi.String("40.40.40.0"),
    			MaskLength: pulumi.Float64(24),
    			NextHops: checkpoint.GaiaStaticMrouteNextHopArray{
    				&checkpoint.GaiaStaticMrouteNextHopArgs{
    					Gateway:  pulumi.String("172.23.22.1"),
    					Priority: pulumi.String("default"),
    				},
    			},
    		})
    		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.GaiaStaticMroute("example", new()
        {
            Address = "40.40.40.0",
            MaskLength = 24,
            NextHops = new[]
            {
                new Checkpoint.Inputs.GaiaStaticMrouteNextHopArgs
                {
                    Gateway = "172.23.22.1",
                    Priority = "default",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaStaticMroute;
    import com.pulumi.checkpoint.GaiaStaticMrouteArgs;
    import com.pulumi.checkpoint.inputs.GaiaStaticMrouteNextHopArgs;
    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 GaiaStaticMroute("example", GaiaStaticMrouteArgs.builder()
                .address("40.40.40.0")
                .maskLength(24.0)
                .nextHops(GaiaStaticMrouteNextHopArgs.builder()
                    .gateway("172.23.22.1")
                    .priority("default")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaStaticMroute
        properties:
          address: 40.40.40.0
          maskLength: 24
          nextHops:
            - gateway: 172.23.22.1
              priority: default
    
    Example coming soon!
    

    Create GaiaStaticMroute Resource

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

    Constructor syntax

    new GaiaStaticMroute(name: string, args: GaiaStaticMrouteArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaStaticMroute(resource_name: str,
                         args: GaiaStaticMrouteArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaStaticMroute(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         address: Optional[str] = None,
                         mask_length: Optional[float] = None,
                         next_hops: Optional[Sequence[GaiaStaticMrouteNextHopArgs]] = None,
                         debug: Optional[bool] = None,
                         gaia_static_mroute_id: Optional[str] = None,
                         member_id: Optional[str] = None,
                         ping: Optional[bool] = None,
                         virtual_system_id: Optional[float] = None)
    func NewGaiaStaticMroute(ctx *Context, name string, args GaiaStaticMrouteArgs, opts ...ResourceOption) (*GaiaStaticMroute, error)
    public GaiaStaticMroute(string name, GaiaStaticMrouteArgs args, CustomResourceOptions? opts = null)
    public GaiaStaticMroute(String name, GaiaStaticMrouteArgs args)
    public GaiaStaticMroute(String name, GaiaStaticMrouteArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaStaticMroute
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiastaticmroute" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaStaticMrouteArgs
    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 GaiaStaticMrouteArgs
    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 GaiaStaticMrouteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaStaticMrouteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaStaticMrouteArgs
    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 gaiaStaticMrouteResource = new Checkpoint.GaiaStaticMroute("gaiaStaticMrouteResource", new()
    {
        Address = "string",
        MaskLength = 0,
        NextHops = new[]
        {
            new Checkpoint.Inputs.GaiaStaticMrouteNextHopArgs
            {
                Gateway = "string",
                Priority = "string",
            },
        },
        Debug = false,
        GaiaStaticMrouteId = "string",
        MemberId = "string",
        Ping = false,
        VirtualSystemId = 0,
    });
    
    example, err := checkpoint.NewGaiaStaticMroute(ctx, "gaiaStaticMrouteResource", &checkpoint.GaiaStaticMrouteArgs{
    	Address:    pulumi.String("string"),
    	MaskLength: pulumi.Float64(0),
    	NextHops: checkpoint.GaiaStaticMrouteNextHopArray{
    		&checkpoint.GaiaStaticMrouteNextHopArgs{
    			Gateway:  pulumi.String("string"),
    			Priority: pulumi.String("string"),
    		},
    	},
    	Debug:              pulumi.Bool(false),
    	GaiaStaticMrouteId: pulumi.String("string"),
    	MemberId:           pulumi.String("string"),
    	Ping:               pulumi.Bool(false),
    	VirtualSystemId:    pulumi.Float64(0),
    })
    
    resource "checkpoint_gaiastaticmroute" "gaiaStaticMrouteResource" {
      address     = "string"
      mask_length = 0
      next_hops {
        gateway  = "string"
        priority = "string"
      }
      debug                 = false
      gaia_static_mroute_id = "string"
      member_id             = "string"
      ping                  = false
      virtual_system_id     = 0
    }
    
    var gaiaStaticMrouteResource = new GaiaStaticMroute("gaiaStaticMrouteResource", GaiaStaticMrouteArgs.builder()
        .address("string")
        .maskLength(0.0)
        .nextHops(GaiaStaticMrouteNextHopArgs.builder()
            .gateway("string")
            .priority("string")
            .build())
        .debug(false)
        .gaiaStaticMrouteId("string")
        .memberId("string")
        .ping(false)
        .virtualSystemId(0.0)
        .build());
    
    gaia_static_mroute_resource = checkpoint.GaiaStaticMroute("gaiaStaticMrouteResource",
        address="string",
        mask_length=float(0),
        next_hops=[{
            "gateway": "string",
            "priority": "string",
        }],
        debug=False,
        gaia_static_mroute_id="string",
        member_id="string",
        ping=False,
        virtual_system_id=float(0))
    
    const gaiaStaticMrouteResource = new checkpoint.GaiaStaticMroute("gaiaStaticMrouteResource", {
        address: "string",
        maskLength: 0,
        nextHops: [{
            gateway: "string",
            priority: "string",
        }],
        debug: false,
        gaiaStaticMrouteId: "string",
        memberId: "string",
        ping: false,
        virtualSystemId: 0,
    });
    
    type: checkpoint:GaiaStaticMroute
    properties:
        address: string
        debug: false
        gaiaStaticMrouteId: string
        maskLength: 0
        memberId: string
        nextHops:
            - gateway: string
              priority: string
        ping: false
        virtualSystemId: 0
    

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

    Address string
    Address of the static-mroute to set configuration for.
    MaskLength double
    Mask length for the static-mroute.
    NextHops List<GaiaStaticMrouteNextHop>
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaStaticMrouteId 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
    Ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Address string
    Address of the static-mroute to set configuration for.
    MaskLength float64
    Mask length for the static-mroute.
    NextHops []GaiaStaticMrouteNextHopArgs
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaStaticMrouteId 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
    Ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    address string
    Address of the static-mroute to set configuration for.
    mask_length number
    Mask length for the static-mroute.
    next_hops list(object)
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_static_mroute_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
    ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    address String
    Address of the static-mroute to set configuration for.
    maskLength Double
    Mask length for the static-mroute.
    nextHops List<GaiaStaticMrouteNextHop>
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaStaticMrouteId 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
    ping Boolean
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    address string
    Address of the static-mroute to set configuration for.
    maskLength number
    Mask length for the static-mroute.
    nextHops GaiaStaticMrouteNextHop[]
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaStaticMrouteId 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
    ping boolean
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    address str
    Address of the static-mroute to set configuration for.
    mask_length float
    Mask length for the static-mroute.
    next_hops Sequence[GaiaStaticMrouteNextHopArgs]
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_static_mroute_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
    ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    address String
    Address of the static-mroute to set configuration for.
    maskLength Number
    Mask length for the static-mroute.
    nextHops List<Property Map>
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaStaticMrouteId 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
    ping Boolean
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

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

    Get an existing GaiaStaticMroute 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?: GaiaStaticMrouteState, opts?: CustomResourceOptions): GaiaStaticMroute
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            debug: Optional[bool] = None,
            gaia_static_mroute_id: Optional[str] = None,
            mask_length: Optional[float] = None,
            member_id: Optional[str] = None,
            next_hops: Optional[Sequence[GaiaStaticMrouteNextHopArgs]] = None,
            ping: Optional[bool] = None,
            virtual_system_id: Optional[float] = None) -> GaiaStaticMroute
    func GetGaiaStaticMroute(ctx *Context, name string, id IDInput, state *GaiaStaticMrouteState, opts ...ResourceOption) (*GaiaStaticMroute, error)
    public static GaiaStaticMroute Get(string name, Input<string> id, GaiaStaticMrouteState? state, CustomResourceOptions? opts = null)
    public static GaiaStaticMroute get(String name, Output<String> id, GaiaStaticMrouteState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaStaticMroute    get:      id: ${id}
    import {
      to = checkpoint_gaiastaticmroute.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:
    Address string
    Address of the static-mroute to set configuration for.
    Debug bool
    Enable debug logging for this resource.
    GaiaStaticMrouteId string
    MaskLength double
    Mask length for the static-mroute.
    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
    NextHops List<GaiaStaticMrouteNextHop>
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    Ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Address string
    Address of the static-mroute to set configuration for.
    Debug bool
    Enable debug logging for this resource.
    GaiaStaticMrouteId string
    MaskLength float64
    Mask length for the static-mroute.
    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
    NextHops []GaiaStaticMrouteNextHopArgs
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    Ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    address string
    Address of the static-mroute to set configuration for.
    debug bool
    Enable debug logging for this resource.
    gaia_static_mroute_id string
    mask_length number
    Mask length for the static-mroute.
    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
    next_hops list(object)
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    address String
    Address of the static-mroute to set configuration for.
    debug Boolean
    Enable debug logging for this resource.
    gaiaStaticMrouteId String
    maskLength Double
    Mask length for the static-mroute.
    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
    nextHops List<GaiaStaticMrouteNextHop>
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    ping Boolean
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    address string
    Address of the static-mroute to set configuration for.
    debug boolean
    Enable debug logging for this resource.
    gaiaStaticMrouteId string
    maskLength number
    Mask length for the static-mroute.
    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
    nextHops GaiaStaticMrouteNextHop[]
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    ping boolean
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    address str
    Address of the static-mroute to set configuration for.
    debug bool
    Enable debug logging for this resource.
    gaia_static_mroute_id str
    mask_length float
    Mask length for the static-mroute.
    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
    next_hops Sequence[GaiaStaticMrouteNextHopArgs]
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    ping bool
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    address String
    Address of the static-mroute to set configuration for.
    debug Boolean
    Enable debug logging for this resource.
    gaiaStaticMrouteId String
    maskLength Number
    Mask length for the static-mroute.
    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
    nextHops List<Property Map>
    Static next-hop. Contains a list of next-hop gateways. Each gateway is formatted in the following manner: {"gateway": IP address, "priority": default or integer 1-8} next_hop blocks are documented below.
    ping Boolean
    Configures ping monitoring of the given IPv4 static-mroute. Possible values: true, false NOTE: Static-mroute ping is not supported in versions prior to R82.10
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Supporting Types

    GaiaStaticMrouteNextHop, GaiaStaticMrouteNextHopArgs

    Gateway string
    IP address for the static next-hop gateway.
    Priority string
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8
    Gateway string
    IP address for the static next-hop gateway.
    Priority string
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8
    gateway string
    IP address for the static next-hop gateway.
    priority string
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8
    gateway String
    IP address for the static next-hop gateway.
    priority String
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8
    gateway string
    IP address for the static next-hop gateway.
    priority string
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8
    gateway str
    IP address for the static next-hop gateway.
    priority str
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8
    gateway String
    IP address for the static next-hop gateway.
    priority String
    Priority defines which gateway to select as the next-hop: the lower the priority, the higher the preference. Possible values: default or integer 1-8

    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