published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Ipv6 Pim Interface.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
// Step 1: configure IPv6 PIM mode
const ipv6PimSetup = new checkpoint.GaiaCommandSetIpv6Pim("ipv6_pim_setup", {mode: "sparse"});
// Step 2: add the IPv6 PIM interface
const example = new checkpoint.GaiaIpv6PimInterface("example", {
name: "eth0",
drPriority: "12",
enableVirtualAddress: false,
}, {
dependsOn: [ipv6PimSetup],
});
import pulumi
import pulumi_checkpoint as checkpoint
# Step 1: configure IPv6 PIM mode
ipv6_pim_setup = checkpoint.GaiaCommandSetIpv6Pim("ipv6_pim_setup", mode="sparse")
# Step 2: add the IPv6 PIM interface
example = checkpoint.GaiaIpv6PimInterface("example",
name="eth0",
dr_priority="12",
enable_virtual_address=False,
opts = pulumi.ResourceOptions(depends_on=[ipv6_pim_setup]))
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 {
// Step 1: configure IPv6 PIM mode
ipv6PimSetup, err := checkpoint.NewGaiaCommandSetIpv6Pim(ctx, "ipv6_pim_setup", &checkpoint.GaiaCommandSetIpv6PimArgs{
Mode: pulumi.String("sparse"),
})
if err != nil {
return err
}
// Step 2: add the IPv6 PIM interface
_, err = checkpoint.NewGaiaIpv6PimInterface(ctx, "example", &checkpoint.GaiaIpv6PimInterfaceArgs{
Name: pulumi.String("eth0"),
DrPriority: pulumi.String("12"),
EnableVirtualAddress: pulumi.Bool(false),
}, pulumi.DependsOn([]pulumi.Resource{
ipv6PimSetup,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
// Step 1: configure IPv6 PIM mode
var ipv6PimSetup = new Checkpoint.GaiaCommandSetIpv6Pim("ipv6_pim_setup", new()
{
Mode = "sparse",
});
// Step 2: add the IPv6 PIM interface
var example = new Checkpoint.GaiaIpv6PimInterface("example", new()
{
Name = "eth0",
DrPriority = "12",
EnableVirtualAddress = false,
}, new CustomResourceOptions
{
DependsOn =
{
ipv6PimSetup,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaCommandSetIpv6Pim;
import com.pulumi.checkpoint.GaiaCommandSetIpv6PimArgs;
import com.pulumi.checkpoint.GaiaIpv6PimInterface;
import com.pulumi.checkpoint.GaiaIpv6PimInterfaceArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
// Step 1: configure IPv6 PIM mode
var ipv6PimSetup = new GaiaCommandSetIpv6Pim("ipv6PimSetup", GaiaCommandSetIpv6PimArgs.builder()
.mode("sparse")
.build());
// Step 2: add the IPv6 PIM interface
var example = new GaiaIpv6PimInterface("example", GaiaIpv6PimInterfaceArgs.builder()
.name("eth0")
.drPriority("12")
.enableVirtualAddress(false)
.build(), CustomResourceOptions.builder()
.dependsOn(ipv6PimSetup)
.build());
}
}
resources:
# Step 1: configure IPv6 PIM mode
ipv6PimSetup:
type: checkpoint:GaiaCommandSetIpv6Pim
name: ipv6_pim_setup
properties:
mode: sparse
# Step 2: add the IPv6 PIM interface
example:
type: checkpoint:GaiaIpv6PimInterface
properties:
name: eth0
drPriority: '12'
enableVirtualAddress: false
options:
dependsOn:
- ${ipv6PimSetup}
Example coming soon!
Create GaiaIpv6PimInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaIpv6PimInterface(name: string, args?: GaiaIpv6PimInterfaceArgs, opts?: CustomResourceOptions);@overload
def GaiaIpv6PimInterface(resource_name: str,
args: Optional[GaiaIpv6PimInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaIpv6PimInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
dr_priority: Optional[str] = None,
enable_virtual_address: Optional[bool] = None,
gaia_ipv6_pim_interface_id: Optional[str] = None,
member_id: Optional[str] = None,
name: Optional[str] = None)func NewGaiaIpv6PimInterface(ctx *Context, name string, args *GaiaIpv6PimInterfaceArgs, opts ...ResourceOption) (*GaiaIpv6PimInterface, error)public GaiaIpv6PimInterface(string name, GaiaIpv6PimInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public GaiaIpv6PimInterface(String name, GaiaIpv6PimInterfaceArgs args)
public GaiaIpv6PimInterface(String name, GaiaIpv6PimInterfaceArgs args, CustomResourceOptions options)
type: checkpoint:GaiaIpv6PimInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiaipv6piminterface" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaIpv6PimInterfaceArgs
- 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 GaiaIpv6PimInterfaceArgs
- 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 GaiaIpv6PimInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaIpv6PimInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaIpv6PimInterfaceArgs
- 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 gaiaIpv6PimInterfaceResource = new Checkpoint.GaiaIpv6PimInterface("gaiaIpv6PimInterfaceResource", new()
{
Debug = false,
DrPriority = "string",
EnableVirtualAddress = false,
GaiaIpv6PimInterfaceId = "string",
MemberId = "string",
Name = "string",
});
example, err := checkpoint.NewGaiaIpv6PimInterface(ctx, "gaiaIpv6PimInterfaceResource", &checkpoint.GaiaIpv6PimInterfaceArgs{
Debug: pulumi.Bool(false),
DrPriority: pulumi.String("string"),
EnableVirtualAddress: pulumi.Bool(false),
GaiaIpv6PimInterfaceId: pulumi.String("string"),
MemberId: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "checkpoint_gaiaipv6piminterface" "gaiaIpv6PimInterfaceResource" {
debug = false
dr_priority = "string"
enable_virtual_address = false
gaia_ipv6_pim_interface_id = "string"
member_id = "string"
name = "string"
}
var gaiaIpv6PimInterfaceResource = new GaiaIpv6PimInterface("gaiaIpv6PimInterfaceResource", GaiaIpv6PimInterfaceArgs.builder()
.debug(false)
.drPriority("string")
.enableVirtualAddress(false)
.gaiaIpv6PimInterfaceId("string")
.memberId("string")
.name("string")
.build());
gaia_ipv6_pim_interface_resource = checkpoint.GaiaIpv6PimInterface("gaiaIpv6PimInterfaceResource",
debug=False,
dr_priority="string",
enable_virtual_address=False,
gaia_ipv6_pim_interface_id="string",
member_id="string",
name="string")
const gaiaIpv6PimInterfaceResource = new checkpoint.GaiaIpv6PimInterface("gaiaIpv6PimInterfaceResource", {
debug: false,
drPriority: "string",
enableVirtualAddress: false,
gaiaIpv6PimInterfaceId: "string",
memberId: "string",
name: "string",
});
type: checkpoint:GaiaIpv6PimInterface
properties:
debug: false
drPriority: string
enableVirtualAddress: false
gaiaIpv6PimInterfaceId: string
memberId: string
name: string
GaiaIpv6PimInterface 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 GaiaIpv6PimInterface resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Dr
Priority string - Used to determine the relative preference when electing a Designated Router (DR).
- Enable
Virtual boolAddress - Configures VRRP mode for the given interface.
- Gaia
Ipv6Pim stringInterface 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
- Name string
- The interface name.
- Debug bool
- Enable debug logging for this resource.
- Dr
Priority string - Used to determine the relative preference when electing a Designated Router (DR).
- Enable
Virtual boolAddress - Configures VRRP mode for the given interface.
- Gaia
Ipv6Pim stringInterface 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
- Name string
- The interface name.
- debug bool
- Enable debug logging for this resource.
- dr_
priority string - Used to determine the relative preference when electing a Designated Router (DR).
- enable_
virtual_ booladdress - Configures VRRP mode for the given interface.
- gaia_
ipv6_ stringpim_ interface_ 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
- name string
- The interface name.
- debug Boolean
- Enable debug logging for this resource.
- dr
Priority String - Used to determine the relative preference when electing a Designated Router (DR).
- enable
Virtual BooleanAddress - Configures VRRP mode for the given interface.
- gaia
Ipv6Pim StringInterface 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
- name String
- The interface name.
- debug boolean
- Enable debug logging for this resource.
- dr
Priority string - Used to determine the relative preference when electing a Designated Router (DR).
- enable
Virtual booleanAddress - Configures VRRP mode for the given interface.
- gaia
Ipv6Pim stringInterface 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
- name string
- The interface name.
- debug bool
- Enable debug logging for this resource.
- dr_
priority str - Used to determine the relative preference when electing a Designated Router (DR).
- enable_
virtual_ booladdress - Configures VRRP mode for the given interface.
- gaia_
ipv6_ strpim_ interface_ 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
- name str
- The interface name.
- debug Boolean
- Enable debug logging for this resource.
- dr
Priority String - Used to determine the relative preference when electing a Designated Router (DR).
- enable
Virtual BooleanAddress - Configures VRRP mode for the given interface.
- gaia
Ipv6Pim StringInterface 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
- name String
- The interface name.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaIpv6PimInterface resource produces the following output properties:
- Dr
Address string - Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Reachability boolDetection - Computed field, returned in the response.
- Mode string
- Neighbor
Amount double - Neighbor
Filters List<GaiaIpv6Pim Interface Neighbor Filter> - Computed field, returned in the response. neighbor_filter blocks are documented below.
- State string
- Status string
- Dr
Address string - Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Reachability boolDetection - Computed field, returned in the response.
- Mode string
- Neighbor
Amount float64 - Neighbor
Filters []GaiaIpv6Pim Interface Neighbor Filter - Computed field, returned in the response. neighbor_filter blocks are documented below.
- State string
- Status string
- dr_
address string - id string
- The provider-assigned unique ID for this managed resource.
- ip_
reachability_ booldetection - Computed field, returned in the response.
- mode string
- neighbor_
amount number - neighbor_
filters list(object) - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state string
- status string
- dr
Address String - id String
- The provider-assigned unique ID for this managed resource.
- ip
Reachability BooleanDetection - Computed field, returned in the response.
- mode String
- neighbor
Amount Double - neighbor
Filters List<GaiaIpv6Pim Interface Neighbor Filter> - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state String
- status String
- dr
Address string - id string
- The provider-assigned unique ID for this managed resource.
- ip
Reachability booleanDetection - Computed field, returned in the response.
- mode string
- neighbor
Amount number - neighbor
Filters GaiaIpv6Pim Interface Neighbor Filter[] - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state string
- status string
- dr_
address str - id str
- The provider-assigned unique ID for this managed resource.
- ip_
reachability_ booldetection - Computed field, returned in the response.
- mode str
- neighbor_
amount float - neighbor_
filters Sequence[GaiaIpv6Pim Interface Neighbor Filter] - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state str
- status str
- dr
Address String - id String
- The provider-assigned unique ID for this managed resource.
- ip
Reachability BooleanDetection - Computed field, returned in the response.
- mode String
- neighbor
Amount Number - neighbor
Filters List<Property Map> - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state String
- status String
Look up Existing GaiaIpv6PimInterface Resource
Get an existing GaiaIpv6PimInterface 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?: GaiaIpv6PimInterfaceState, opts?: CustomResourceOptions): GaiaIpv6PimInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
dr_address: Optional[str] = None,
dr_priority: Optional[str] = None,
enable_virtual_address: Optional[bool] = None,
gaia_ipv6_pim_interface_id: Optional[str] = None,
ip_reachability_detection: Optional[bool] = None,
member_id: Optional[str] = None,
mode: Optional[str] = None,
name: Optional[str] = None,
neighbor_amount: Optional[float] = None,
neighbor_filters: Optional[Sequence[GaiaIpv6PimInterfaceNeighborFilterArgs]] = None,
state: Optional[str] = None,
status: Optional[str] = None) -> GaiaIpv6PimInterfacefunc GetGaiaIpv6PimInterface(ctx *Context, name string, id IDInput, state *GaiaIpv6PimInterfaceState, opts ...ResourceOption) (*GaiaIpv6PimInterface, error)public static GaiaIpv6PimInterface Get(string name, Input<string> id, GaiaIpv6PimInterfaceState? state, CustomResourceOptions? opts = null)public static GaiaIpv6PimInterface get(String name, Output<String> id, GaiaIpv6PimInterfaceState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaIpv6PimInterface get: id: ${id}import {
to = checkpoint_gaiaipv6piminterface.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Debug bool
- Enable debug logging for this resource.
- Dr
Address string - Dr
Priority string - Used to determine the relative preference when electing a Designated Router (DR).
- Enable
Virtual boolAddress - Configures VRRP mode for the given interface.
- Gaia
Ipv6Pim stringInterface Id - Ip
Reachability boolDetection - Computed field, returned in the response.
- 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
- Mode string
- Name string
- The interface name.
- Neighbor
Amount double - Neighbor
Filters List<GaiaIpv6Pim Interface Neighbor Filter> - Computed field, returned in the response. neighbor_filter blocks are documented below.
- State string
- Status string
- Debug bool
- Enable debug logging for this resource.
- Dr
Address string - Dr
Priority string - Used to determine the relative preference when electing a Designated Router (DR).
- Enable
Virtual boolAddress - Configures VRRP mode for the given interface.
- Gaia
Ipv6Pim stringInterface Id - Ip
Reachability boolDetection - Computed field, returned in the response.
- 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
- Mode string
- Name string
- The interface name.
- Neighbor
Amount float64 - Neighbor
Filters []GaiaIpv6Pim Interface Neighbor Filter Args - Computed field, returned in the response. neighbor_filter blocks are documented below.
- State string
- Status string
- debug bool
- Enable debug logging for this resource.
- dr_
address string - dr_
priority string - Used to determine the relative preference when electing a Designated Router (DR).
- enable_
virtual_ booladdress - Configures VRRP mode for the given interface.
- gaia_
ipv6_ stringpim_ interface_ id - ip_
reachability_ booldetection - Computed field, returned in the response.
- 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
- mode string
- name string
- The interface name.
- neighbor_
amount number - neighbor_
filters list(object) - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state string
- status string
- debug Boolean
- Enable debug logging for this resource.
- dr
Address String - dr
Priority String - Used to determine the relative preference when electing a Designated Router (DR).
- enable
Virtual BooleanAddress - Configures VRRP mode for the given interface.
- gaia
Ipv6Pim StringInterface Id - ip
Reachability BooleanDetection - Computed field, returned in the response.
- 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
- mode String
- name String
- The interface name.
- neighbor
Amount Double - neighbor
Filters List<GaiaIpv6Pim Interface Neighbor Filter> - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state String
- status String
- debug boolean
- Enable debug logging for this resource.
- dr
Address string - dr
Priority string - Used to determine the relative preference when electing a Designated Router (DR).
- enable
Virtual booleanAddress - Configures VRRP mode for the given interface.
- gaia
Ipv6Pim stringInterface Id - ip
Reachability booleanDetection - Computed field, returned in the response.
- 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
- mode string
- name string
- The interface name.
- neighbor
Amount number - neighbor
Filters GaiaIpv6Pim Interface Neighbor Filter[] - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state string
- status string
- debug bool
- Enable debug logging for this resource.
- dr_
address str - dr_
priority str - Used to determine the relative preference when electing a Designated Router (DR).
- enable_
virtual_ booladdress - Configures VRRP mode for the given interface.
- gaia_
ipv6_ strpim_ interface_ id - ip_
reachability_ booldetection - Computed field, returned in the response.
- 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
- mode str
- name str
- The interface name.
- neighbor_
amount float - neighbor_
filters Sequence[GaiaIpv6Pim Interface Neighbor Filter Args] - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state str
- status str
- debug Boolean
- Enable debug logging for this resource.
- dr
Address String - dr
Priority String - Used to determine the relative preference when electing a Designated Router (DR).
- enable
Virtual BooleanAddress - Configures VRRP mode for the given interface.
- gaia
Ipv6Pim StringInterface Id - ip
Reachability BooleanDetection - Computed field, returned in the response.
- 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
- mode String
- name String
- The interface name.
- neighbor
Amount Number - neighbor
Filters List<Property Map> - Computed field, returned in the response. neighbor_filter blocks are documented below.
- state String
- status String
Supporting Types
GaiaIpv6PimInterfaceNeighborFilter, GaiaIpv6PimInterfaceNeighborFilterArgs
- Address string
- Computed field, returned in the response.
- Address string
- Computed field, returned in the response.
- address string
- Computed field, returned in the response.
- address String
- Computed field, returned in the response.
- address string
- Computed field, returned in the response.
- address str
- Computed field, returned in the response.
- address String
- Computed field, returned in the response.
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