published on Monday, Jun 15, 2026 by checkpointsw
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.
- Mask
Length double - Mask length for the static-mroute.
- Next
Hops List<GaiaStatic Mroute Next Hop> - 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 stringMroute Id - 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 doubleId - Virtual System ID. Relevant for VSNext setups
- Address string
- Address of the static-mroute to set configuration for.
- Mask
Length float64 - Mask length for the static-mroute.
- Next
Hops []GaiaStatic Mroute Next Hop Args - 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 stringMroute Id - 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 float64Id - 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_ stringmroute_ id - 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_ numberid - Virtual System ID. Relevant for VSNext setups
- address String
- Address of the static-mroute to set configuration for.
- mask
Length Double - Mask length for the static-mroute.
- next
Hops List<GaiaStatic Mroute Next Hop> - 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.
- gaia
Static StringMroute Id - 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 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
- virtual
System DoubleId - 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 GaiaStatic Mroute Next Hop[] - 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.
- gaia
Static stringMroute Id - 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 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
- virtual
System numberId - 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[GaiaStatic Mroute Next Hop Args] - 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_ strmroute_ id - 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_ floatid - 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<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.
- gaia
Static StringMroute Id - 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 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
- virtual
System NumberId - 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) -> GaiaStaticMroutefunc 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.
- Address string
- Address of the static-mroute to set configuration for.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Static stringMroute Id - Mask
Length double - 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<GaiaStatic Mroute Next Hop> - 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 doubleId - 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 stringMroute Id - Mask
Length float64 - 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 []GaiaStatic Mroute Next Hop Args - 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 float64Id - 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_ stringmroute_ id - 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_ numberid - 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.
- gaia
Static StringMroute Id - mask
Length Double - 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<GaiaStatic Mroute Next Hop> - 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
- virtual
System DoubleId - 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.
- gaia
Static stringMroute Id - 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 GaiaStatic Mroute Next Hop[] - 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
- virtual
System numberId - 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_ strmroute_ id - 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[GaiaStatic Mroute Next Hop Args] - 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_ floatid - 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.
- gaia
Static StringMroute Id - 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<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
- virtual
System NumberId - Virtual System ID. Relevant for VSNext setups
Supporting Types
GaiaStaticMrouteNextHop, GaiaStaticMrouteNextHopArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw