1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaIpv6PimInterface
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 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.
    DrPriority string
    Used to determine the relative preference when electing a Designated Router (DR).
    EnableVirtualAddress bool
    Configures VRRP mode for the given interface.
    GaiaIpv6PimInterfaceId 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
    Name string
    The interface name.
    Debug bool
    Enable debug logging for this resource.
    DrPriority string
    Used to determine the relative preference when electing a Designated Router (DR).
    EnableVirtualAddress bool
    Configures VRRP mode for the given interface.
    GaiaIpv6PimInterfaceId 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
    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_address bool
    Configures VRRP mode for the given interface.
    gaia_ipv6_pim_interface_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
    name string
    The interface name.
    debug Boolean
    Enable debug logging for this resource.
    drPriority String
    Used to determine the relative preference when electing a Designated Router (DR).
    enableVirtualAddress Boolean
    Configures VRRP mode for the given interface.
    gaiaIpv6PimInterfaceId 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
    name String
    The interface name.
    debug boolean
    Enable debug logging for this resource.
    drPriority string
    Used to determine the relative preference when electing a Designated Router (DR).
    enableVirtualAddress boolean
    Configures VRRP mode for the given interface.
    gaiaIpv6PimInterfaceId 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
    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_address bool
    Configures VRRP mode for the given interface.
    gaia_ipv6_pim_interface_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
    name str
    The interface name.
    debug Boolean
    Enable debug logging for this resource.
    drPriority String
    Used to determine the relative preference when electing a Designated Router (DR).
    enableVirtualAddress Boolean
    Configures VRRP mode for the given interface.
    gaiaIpv6PimInterfaceId 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
    name String
    The interface name.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaIpv6PimInterface resource produces the following output properties:

    DrAddress string
    Id string
    The provider-assigned unique ID for this managed resource.
    IpReachabilityDetection bool
    Computed field, returned in the response.
    Mode string
    NeighborAmount double
    NeighborFilters List<GaiaIpv6PimInterfaceNeighborFilter>
    Computed field, returned in the response. neighbor_filter blocks are documented below.
    State string
    Status string
    DrAddress string
    Id string
    The provider-assigned unique ID for this managed resource.
    IpReachabilityDetection bool
    Computed field, returned in the response.
    Mode string
    NeighborAmount float64
    NeighborFilters []GaiaIpv6PimInterfaceNeighborFilter
    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_detection bool
    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
    drAddress String
    id String
    The provider-assigned unique ID for this managed resource.
    ipReachabilityDetection Boolean
    Computed field, returned in the response.
    mode String
    neighborAmount Double
    neighborFilters List<GaiaIpv6PimInterfaceNeighborFilter>
    Computed field, returned in the response. neighbor_filter blocks are documented below.
    state String
    status String
    drAddress string
    id string
    The provider-assigned unique ID for this managed resource.
    ipReachabilityDetection boolean
    Computed field, returned in the response.
    mode string
    neighborAmount number
    neighborFilters GaiaIpv6PimInterfaceNeighborFilter[]
    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_detection bool
    Computed field, returned in the response.
    mode str
    neighbor_amount float
    neighbor_filters Sequence[GaiaIpv6PimInterfaceNeighborFilter]
    Computed field, returned in the response. neighbor_filter blocks are documented below.
    state str
    status str
    drAddress String
    id String
    The provider-assigned unique ID for this managed resource.
    ipReachabilityDetection Boolean
    Computed field, returned in the response.
    mode String
    neighborAmount Number
    neighborFilters 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) -> GaiaIpv6PimInterface
    func 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.
    The following state arguments are supported:
    Debug bool
    Enable debug logging for this resource.
    DrAddress string
    DrPriority string
    Used to determine the relative preference when electing a Designated Router (DR).
    EnableVirtualAddress bool
    Configures VRRP mode for the given interface.
    GaiaIpv6PimInterfaceId string
    IpReachabilityDetection bool
    Computed field, returned in the response.
    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
    Mode string
    Name string
    The interface name.
    NeighborAmount double
    NeighborFilters List<GaiaIpv6PimInterfaceNeighborFilter>
    Computed field, returned in the response. neighbor_filter blocks are documented below.
    State string
    Status string
    Debug bool
    Enable debug logging for this resource.
    DrAddress string
    DrPriority string
    Used to determine the relative preference when electing a Designated Router (DR).
    EnableVirtualAddress bool
    Configures VRRP mode for the given interface.
    GaiaIpv6PimInterfaceId string
    IpReachabilityDetection bool
    Computed field, returned in the response.
    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
    Mode string
    Name string
    The interface name.
    NeighborAmount float64
    NeighborFilters []GaiaIpv6PimInterfaceNeighborFilterArgs
    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_address bool
    Configures VRRP mode for the given interface.
    gaia_ipv6_pim_interface_id string
    ip_reachability_detection bool
    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.
    drAddress String
    drPriority String
    Used to determine the relative preference when electing a Designated Router (DR).
    enableVirtualAddress Boolean
    Configures VRRP mode for the given interface.
    gaiaIpv6PimInterfaceId String
    ipReachabilityDetection Boolean
    Computed field, returned in the response.
    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
    mode String
    name String
    The interface name.
    neighborAmount Double
    neighborFilters List<GaiaIpv6PimInterfaceNeighborFilter>
    Computed field, returned in the response. neighbor_filter blocks are documented below.
    state String
    status String
    debug boolean
    Enable debug logging for this resource.
    drAddress string
    drPriority string
    Used to determine the relative preference when electing a Designated Router (DR).
    enableVirtualAddress boolean
    Configures VRRP mode for the given interface.
    gaiaIpv6PimInterfaceId string
    ipReachabilityDetection boolean
    Computed field, returned in the response.
    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
    mode string
    name string
    The interface name.
    neighborAmount number
    neighborFilters GaiaIpv6PimInterfaceNeighborFilter[]
    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_address bool
    Configures VRRP mode for the given interface.
    gaia_ipv6_pim_interface_id str
    ip_reachability_detection bool
    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[GaiaIpv6PimInterfaceNeighborFilterArgs]
    Computed field, returned in the response. neighbor_filter blocks are documented below.
    state str
    status str
    debug Boolean
    Enable debug logging for this resource.
    drAddress String
    drPriority String
    Used to determine the relative preference when electing a Designated Router (DR).
    enableVirtualAddress Boolean
    Configures VRRP mode for the given interface.
    gaiaIpv6PimInterfaceId String
    ipReachabilityDetection Boolean
    Computed field, returned in the response.
    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
    mode String
    name String
    The interface name.
    neighborAmount Number
    neighborFilters 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 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