1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaIgmpInterfaceLocalGroup
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 Igmp Interface Local Group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaIgmpInterfaceLocalGroup("example", {
        "interface": "eth0",
        localGroup: "224.6.6.6",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaIgmpInterfaceLocalGroup("example",
        interface="eth0",
        local_group="224.6.6.6")
    
    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.NewGaiaIgmpInterfaceLocalGroup(ctx, "example", &checkpoint.GaiaIgmpInterfaceLocalGroupArgs{
    			Interface:  pulumi.String("eth0"),
    			LocalGroup: pulumi.String("224.6.6.6"),
    		})
    		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.GaiaIgmpInterfaceLocalGroup("example", new()
        {
            Interface = "eth0",
            LocalGroup = "224.6.6.6",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaIgmpInterfaceLocalGroup;
    import com.pulumi.checkpoint.GaiaIgmpInterfaceLocalGroupArgs;
    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 GaiaIgmpInterfaceLocalGroup("example", GaiaIgmpInterfaceLocalGroupArgs.builder()
                .interface_("eth0")
                .localGroup("224.6.6.6")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaIgmpInterfaceLocalGroup
        properties:
          interface: eth0
          localGroup: 224.6.6.6
    
    Example coming soon!
    

    Create GaiaIgmpInterfaceLocalGroup Resource

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

    Constructor syntax

    new GaiaIgmpInterfaceLocalGroup(name: string, args: GaiaIgmpInterfaceLocalGroupArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaIgmpInterfaceLocalGroup(resource_name: str,
                                    args: GaiaIgmpInterfaceLocalGroupArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaIgmpInterfaceLocalGroup(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    interface: Optional[str] = None,
                                    local_group: Optional[str] = None,
                                    debug: Optional[bool] = None,
                                    gaia_igmp_interface_local_group_id: Optional[str] = None)
    func NewGaiaIgmpInterfaceLocalGroup(ctx *Context, name string, args GaiaIgmpInterfaceLocalGroupArgs, opts ...ResourceOption) (*GaiaIgmpInterfaceLocalGroup, error)
    public GaiaIgmpInterfaceLocalGroup(string name, GaiaIgmpInterfaceLocalGroupArgs args, CustomResourceOptions? opts = null)
    public GaiaIgmpInterfaceLocalGroup(String name, GaiaIgmpInterfaceLocalGroupArgs args)
    public GaiaIgmpInterfaceLocalGroup(String name, GaiaIgmpInterfaceLocalGroupArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaIgmpInterfaceLocalGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiaigmpinterfacelocalgroup" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaIgmpInterfaceLocalGroupArgs
    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 GaiaIgmpInterfaceLocalGroupArgs
    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 GaiaIgmpInterfaceLocalGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaIgmpInterfaceLocalGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaIgmpInterfaceLocalGroupArgs
    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 gaiaIgmpInterfaceLocalGroupResource = new Checkpoint.GaiaIgmpInterfaceLocalGroup("gaiaIgmpInterfaceLocalGroupResource", new()
    {
        Interface = "string",
        LocalGroup = "string",
        Debug = false,
        GaiaIgmpInterfaceLocalGroupId = "string",
    });
    
    example, err := checkpoint.NewGaiaIgmpInterfaceLocalGroup(ctx, "gaiaIgmpInterfaceLocalGroupResource", &checkpoint.GaiaIgmpInterfaceLocalGroupArgs{
    	Interface:                     pulumi.String("string"),
    	LocalGroup:                    pulumi.String("string"),
    	Debug:                         pulumi.Bool(false),
    	GaiaIgmpInterfaceLocalGroupId: pulumi.String("string"),
    })
    
    resource "checkpoint_gaiaigmpinterfacelocalgroup" "gaiaIgmpInterfaceLocalGroupResource" {
      interface                          = "string"
      local_group                        = "string"
      debug                              = false
      gaia_igmp_interface_local_group_id = "string"
    }
    
    var gaiaIgmpInterfaceLocalGroupResource = new GaiaIgmpInterfaceLocalGroup("gaiaIgmpInterfaceLocalGroupResource", GaiaIgmpInterfaceLocalGroupArgs.builder()
        .interface_("string")
        .localGroup("string")
        .debug(false)
        .gaiaIgmpInterfaceLocalGroupId("string")
        .build());
    
    gaia_igmp_interface_local_group_resource = checkpoint.GaiaIgmpInterfaceLocalGroup("gaiaIgmpInterfaceLocalGroupResource",
        interface="string",
        local_group="string",
        debug=False,
        gaia_igmp_interface_local_group_id="string")
    
    const gaiaIgmpInterfaceLocalGroupResource = new checkpoint.GaiaIgmpInterfaceLocalGroup("gaiaIgmpInterfaceLocalGroupResource", {
        "interface": "string",
        localGroup: "string",
        debug: false,
        gaiaIgmpInterfaceLocalGroupId: "string",
    });
    
    type: checkpoint:GaiaIgmpInterfaceLocalGroup
    properties:
        debug: false
        gaiaIgmpInterfaceLocalGroupId: string
        interface: string
        localGroup: string
    

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

    Interface string
    The name of the IGMP interface
    LocalGroup string
    The locally configured group address that this IGMP interface receives multicast data for
    Debug bool
    Enable debug logging for this resource.
    GaiaIgmpInterfaceLocalGroupId string
    Interface string
    The name of the IGMP interface
    LocalGroup string
    The locally configured group address that this IGMP interface receives multicast data for
    Debug bool
    Enable debug logging for this resource.
    GaiaIgmpInterfaceLocalGroupId string
    interface string
    The name of the IGMP interface
    local_group string
    The locally configured group address that this IGMP interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_igmp_interface_local_group_id string
    interface_ String
    The name of the IGMP interface
    localGroup String
    The locally configured group address that this IGMP interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaIgmpInterfaceLocalGroupId String
    interface string
    The name of the IGMP interface
    localGroup string
    The locally configured group address that this IGMP interface receives multicast data for
    debug boolean
    Enable debug logging for this resource.
    gaiaIgmpInterfaceLocalGroupId string
    interface str
    The name of the IGMP interface
    local_group str
    The locally configured group address that this IGMP interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_igmp_interface_local_group_id str
    interface String
    The name of the IGMP interface
    localGroup String
    The locally configured group address that this IGMP interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaIgmpInterfaceLocalGroupId String

    Outputs

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

    Get an existing GaiaIgmpInterfaceLocalGroup 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?: GaiaIgmpInterfaceLocalGroupState, opts?: CustomResourceOptions): GaiaIgmpInterfaceLocalGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_igmp_interface_local_group_id: Optional[str] = None,
            interface: Optional[str] = None,
            local_group: Optional[str] = None) -> GaiaIgmpInterfaceLocalGroup
    func GetGaiaIgmpInterfaceLocalGroup(ctx *Context, name string, id IDInput, state *GaiaIgmpInterfaceLocalGroupState, opts ...ResourceOption) (*GaiaIgmpInterfaceLocalGroup, error)
    public static GaiaIgmpInterfaceLocalGroup Get(string name, Input<string> id, GaiaIgmpInterfaceLocalGroupState? state, CustomResourceOptions? opts = null)
    public static GaiaIgmpInterfaceLocalGroup get(String name, Output<String> id, GaiaIgmpInterfaceLocalGroupState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaIgmpInterfaceLocalGroup    get:      id: ${id}
    import {
      to = checkpoint_gaiaigmpinterfacelocalgroup.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.
    GaiaIgmpInterfaceLocalGroupId string
    Interface string
    The name of the IGMP interface
    LocalGroup string
    The locally configured group address that this IGMP interface receives multicast data for
    Debug bool
    Enable debug logging for this resource.
    GaiaIgmpInterfaceLocalGroupId string
    Interface string
    The name of the IGMP interface
    LocalGroup string
    The locally configured group address that this IGMP interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_igmp_interface_local_group_id string
    interface string
    The name of the IGMP interface
    local_group string
    The locally configured group address that this IGMP interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaIgmpInterfaceLocalGroupId String
    interface_ String
    The name of the IGMP interface
    localGroup String
    The locally configured group address that this IGMP interface receives multicast data for
    debug boolean
    Enable debug logging for this resource.
    gaiaIgmpInterfaceLocalGroupId string
    interface string
    The name of the IGMP interface
    localGroup string
    The locally configured group address that this IGMP interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_igmp_interface_local_group_id str
    interface str
    The name of the IGMP interface
    local_group str
    The locally configured group address that this IGMP interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaIgmpInterfaceLocalGroupId String
    interface String
    The name of the IGMP interface
    localGroup String
    The locally configured group address that this IGMP interface receives multicast data for

    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