published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Igmp Interface Static Group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaIgmpInterfaceStaticGroup("example", {
"interface": "eth0",
staticGroup: "224.5.5.5",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaIgmpInterfaceStaticGroup("example",
interface="eth0",
static_group="224.5.5.5")
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.NewGaiaIgmpInterfaceStaticGroup(ctx, "example", &checkpoint.GaiaIgmpInterfaceStaticGroupArgs{
Interface: pulumi.String("eth0"),
StaticGroup: pulumi.String("224.5.5.5"),
})
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.GaiaIgmpInterfaceStaticGroup("example", new()
{
Interface = "eth0",
StaticGroup = "224.5.5.5",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaIgmpInterfaceStaticGroup;
import com.pulumi.checkpoint.GaiaIgmpInterfaceStaticGroupArgs;
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 GaiaIgmpInterfaceStaticGroup("example", GaiaIgmpInterfaceStaticGroupArgs.builder()
.interface_("eth0")
.staticGroup("224.5.5.5")
.build());
}
}
resources:
example:
type: checkpoint:GaiaIgmpInterfaceStaticGroup
properties:
interface: eth0
staticGroup: 224.5.5.5
Example coming soon!
Create GaiaIgmpInterfaceStaticGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaIgmpInterfaceStaticGroup(name: string, args: GaiaIgmpInterfaceStaticGroupArgs, opts?: CustomResourceOptions);@overload
def GaiaIgmpInterfaceStaticGroup(resource_name: str,
args: GaiaIgmpInterfaceStaticGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaIgmpInterfaceStaticGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
interface: Optional[str] = None,
static_group: Optional[str] = None,
debug: Optional[bool] = None,
gaia_igmp_interface_static_group_id: Optional[str] = None,
group_count: Optional[str] = None,
group_increment: Optional[str] = None,
member_id: Optional[str] = None,
source_all_off: Optional[str] = None,
sources: Optional[Sequence[GaiaIgmpInterfaceStaticGroupSourceArgs]] = None)func NewGaiaIgmpInterfaceStaticGroup(ctx *Context, name string, args GaiaIgmpInterfaceStaticGroupArgs, opts ...ResourceOption) (*GaiaIgmpInterfaceStaticGroup, error)public GaiaIgmpInterfaceStaticGroup(string name, GaiaIgmpInterfaceStaticGroupArgs args, CustomResourceOptions? opts = null)
public GaiaIgmpInterfaceStaticGroup(String name, GaiaIgmpInterfaceStaticGroupArgs args)
public GaiaIgmpInterfaceStaticGroup(String name, GaiaIgmpInterfaceStaticGroupArgs args, CustomResourceOptions options)
type: checkpoint:GaiaIgmpInterfaceStaticGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiaigmpinterfacestaticgroup" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaIgmpInterfaceStaticGroupArgs
- 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 GaiaIgmpInterfaceStaticGroupArgs
- 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 GaiaIgmpInterfaceStaticGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaIgmpInterfaceStaticGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaIgmpInterfaceStaticGroupArgs
- 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 gaiaIgmpInterfaceStaticGroupResource = new Checkpoint.GaiaIgmpInterfaceStaticGroup("gaiaIgmpInterfaceStaticGroupResource", new()
{
Interface = "string",
StaticGroup = "string",
Debug = false,
GaiaIgmpInterfaceStaticGroupId = "string",
GroupCount = "string",
GroupIncrement = "string",
MemberId = "string",
SourceAllOff = "string",
Sources = new[]
{
new Checkpoint.Inputs.GaiaIgmpInterfaceStaticGroupSourceArgs
{
Source = "string",
SourceCount = "string",
SourceIncrement = "string",
},
},
});
example, err := checkpoint.NewGaiaIgmpInterfaceStaticGroup(ctx, "gaiaIgmpInterfaceStaticGroupResource", &checkpoint.GaiaIgmpInterfaceStaticGroupArgs{
Interface: pulumi.String("string"),
StaticGroup: pulumi.String("string"),
Debug: pulumi.Bool(false),
GaiaIgmpInterfaceStaticGroupId: pulumi.String("string"),
GroupCount: pulumi.String("string"),
GroupIncrement: pulumi.String("string"),
MemberId: pulumi.String("string"),
SourceAllOff: pulumi.String("string"),
Sources: checkpoint.GaiaIgmpInterfaceStaticGroupSourceArray{
&checkpoint.GaiaIgmpInterfaceStaticGroupSourceArgs{
Source: pulumi.String("string"),
SourceCount: pulumi.String("string"),
SourceIncrement: pulumi.String("string"),
},
},
})
resource "checkpoint_gaiaigmpinterfacestaticgroup" "gaiaIgmpInterfaceStaticGroupResource" {
interface = "string"
static_group = "string"
debug = false
gaia_igmp_interface_static_group_id = "string"
group_count = "string"
group_increment = "string"
member_id = "string"
source_all_off = "string"
sources {
source = "string"
source_count = "string"
source_increment = "string"
}
}
var gaiaIgmpInterfaceStaticGroupResource = new GaiaIgmpInterfaceStaticGroup("gaiaIgmpInterfaceStaticGroupResource", GaiaIgmpInterfaceStaticGroupArgs.builder()
.interface_("string")
.staticGroup("string")
.debug(false)
.gaiaIgmpInterfaceStaticGroupId("string")
.groupCount("string")
.groupIncrement("string")
.memberId("string")
.sourceAllOff("string")
.sources(GaiaIgmpInterfaceStaticGroupSourceArgs.builder()
.source("string")
.sourceCount("string")
.sourceIncrement("string")
.build())
.build());
gaia_igmp_interface_static_group_resource = checkpoint.GaiaIgmpInterfaceStaticGroup("gaiaIgmpInterfaceStaticGroupResource",
interface="string",
static_group="string",
debug=False,
gaia_igmp_interface_static_group_id="string",
group_count="string",
group_increment="string",
member_id="string",
source_all_off="string",
sources=[{
"source": "string",
"source_count": "string",
"source_increment": "string",
}])
const gaiaIgmpInterfaceStaticGroupResource = new checkpoint.GaiaIgmpInterfaceStaticGroup("gaiaIgmpInterfaceStaticGroupResource", {
"interface": "string",
staticGroup: "string",
debug: false,
gaiaIgmpInterfaceStaticGroupId: "string",
groupCount: "string",
groupIncrement: "string",
memberId: "string",
sourceAllOff: "string",
sources: [{
source: "string",
sourceCount: "string",
sourceIncrement: "string",
}],
});
type: checkpoint:GaiaIgmpInterfaceStaticGroup
properties:
debug: false
gaiaIgmpInterfaceStaticGroupId: string
groupCount: string
groupIncrement: string
interface: string
memberId: string
sourceAllOff: string
sources:
- source: string
sourceCount: string
sourceIncrement: string
staticGroup: string
GaiaIgmpInterfaceStaticGroup 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 GaiaIgmpInterfaceStaticGroup resource accepts the following input properties:
- Interface string
- The name of the IGMP interface
- Static
Group string - The statically configured group address that this IGMP interface receives multicast data for
- Debug bool
- Enable debug logging for this resource.
- Gaia
Igmp stringInterface Static Group Id - Group
Count string - The number of adjacent static groups
- Group
Increment string - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- Source
All stringOff - Remove all sources of a static group
- Sources
List<Gaia
Igmp Interface Static Group Source> - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- Interface string
- The name of the IGMP interface
- Static
Group string - The statically configured group address that this IGMP interface receives multicast data for
- Debug bool
- Enable debug logging for this resource.
- Gaia
Igmp stringInterface Static Group Id - Group
Count string - The number of adjacent static groups
- Group
Increment string - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- Source
All stringOff - Remove all sources of a static group
- Sources
[]Gaia
Igmp Interface Static Group Source Args - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- interface string
- The name of the IGMP interface
- static_
group string - The statically configured group address that this IGMP interface receives multicast data for
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ stringinterface_ static_ group_ id - group_
count string - The number of adjacent static groups
- group_
increment string - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- source_
all_ stringoff - Remove all sources of a static group
- sources list(object)
- The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- interface_ String
- The name of the IGMP interface
- static
Group String - The statically configured group address that this IGMP interface receives multicast data for
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Static Group Id - group
Count String - The number of adjacent static groups
- group
Increment String - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- source
All StringOff - Remove all sources of a static group
- sources
List<Gaia
Igmp Interface Static Group Source> - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- interface string
- The name of the IGMP interface
- static
Group string - The statically configured group address that this IGMP interface receives multicast data for
- debug boolean
- Enable debug logging for this resource.
- gaia
Igmp stringInterface Static Group Id - group
Count string - The number of adjacent static groups
- group
Increment string - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- source
All stringOff - Remove all sources of a static group
- sources
Gaia
Igmp Interface Static Group Source[] - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- interface str
- The name of the IGMP interface
- static_
group str - The statically configured group address that this IGMP interface receives multicast data for
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ strinterface_ static_ group_ id - group_
count str - The number of adjacent static groups
- group_
increment str - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- source_
all_ stroff - Remove all sources of a static group
- sources
Sequence[Gaia
Igmp Interface Static Group Source Args] - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- interface String
- The name of the IGMP interface
- static
Group String - The statically configured group address that this IGMP interface receives multicast data for
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Static Group Id - group
Count String - The number of adjacent static groups
- group
Increment String - The increment between IGMP static groups (default: 0.0.0.1)
- 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
- source
All StringOff - Remove all sources of a static group
- sources List<Property Map>
- The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaIgmpInterfaceStaticGroup 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 GaiaIgmpInterfaceStaticGroup Resource
Get an existing GaiaIgmpInterfaceStaticGroup 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?: GaiaIgmpInterfaceStaticGroupState, opts?: CustomResourceOptions): GaiaIgmpInterfaceStaticGroup@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_igmp_interface_static_group_id: Optional[str] = None,
group_count: Optional[str] = None,
group_increment: Optional[str] = None,
interface: Optional[str] = None,
member_id: Optional[str] = None,
source_all_off: Optional[str] = None,
sources: Optional[Sequence[GaiaIgmpInterfaceStaticGroupSourceArgs]] = None,
static_group: Optional[str] = None) -> GaiaIgmpInterfaceStaticGroupfunc GetGaiaIgmpInterfaceStaticGroup(ctx *Context, name string, id IDInput, state *GaiaIgmpInterfaceStaticGroupState, opts ...ResourceOption) (*GaiaIgmpInterfaceStaticGroup, error)public static GaiaIgmpInterfaceStaticGroup Get(string name, Input<string> id, GaiaIgmpInterfaceStaticGroupState? state, CustomResourceOptions? opts = null)public static GaiaIgmpInterfaceStaticGroup get(String name, Output<String> id, GaiaIgmpInterfaceStaticGroupState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaIgmpInterfaceStaticGroup get: id: ${id}import {
to = checkpoint_gaiaigmpinterfacestaticgroup.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.
- Gaia
Igmp stringInterface Static Group Id - Group
Count string - The number of adjacent static groups
- Group
Increment string - The increment between IGMP static groups (default: 0.0.0.1)
- Interface string
- The name of the IGMP interface
- 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
- Source
All stringOff - Remove all sources of a static group
- Sources
List<Gaia
Igmp Interface Static Group Source> - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- Static
Group string - The statically configured group address that this IGMP interface receives multicast data for
- Debug bool
- Enable debug logging for this resource.
- Gaia
Igmp stringInterface Static Group Id - Group
Count string - The number of adjacent static groups
- Group
Increment string - The increment between IGMP static groups (default: 0.0.0.1)
- Interface string
- The name of the IGMP interface
- 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
- Source
All stringOff - Remove all sources of a static group
- Sources
[]Gaia
Igmp Interface Static Group Source Args - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- Static
Group string - The statically configured group address that this IGMP interface receives multicast data for
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ stringinterface_ static_ group_ id - group_
count string - The number of adjacent static groups
- group_
increment string - The increment between IGMP static groups (default: 0.0.0.1)
- interface string
- The name of the IGMP interface
- 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
- source_
all_ stringoff - Remove all sources of a static group
- sources list(object)
- The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- static_
group string - The statically configured group address that this IGMP interface receives multicast data for
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Static Group Id - group
Count String - The number of adjacent static groups
- group
Increment String - The increment between IGMP static groups (default: 0.0.0.1)
- interface_ String
- The name of the IGMP interface
- 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
- source
All StringOff - Remove all sources of a static group
- sources
List<Gaia
Igmp Interface Static Group Source> - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- static
Group String - The statically configured group address that this IGMP interface receives multicast data for
- debug boolean
- Enable debug logging for this resource.
- gaia
Igmp stringInterface Static Group Id - group
Count string - The number of adjacent static groups
- group
Increment string - The increment between IGMP static groups (default: 0.0.0.1)
- interface string
- The name of the IGMP interface
- 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
- source
All stringOff - Remove all sources of a static group
- sources
Gaia
Igmp Interface Static Group Source[] - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- static
Group string - The statically configured group address that this IGMP interface receives multicast data for
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ strinterface_ static_ group_ id - group_
count str - The number of adjacent static groups
- group_
increment str - The increment between IGMP static groups (default: 0.0.0.1)
- interface str
- The name of the IGMP interface
- 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
- source_
all_ stroff - Remove all sources of a static group
- sources
Sequence[Gaia
Igmp Interface Static Group Source Args] - The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- static_
group str - The statically configured group address that this IGMP interface receives multicast data for
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Static Group Id - group
Count String - The number of adjacent static groups
- group
Increment String - The increment between IGMP static groups (default: 0.0.0.1)
- interface String
- The name of the IGMP interface
- 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
- source
All StringOff - Remove all sources of a static group
- sources List<Property Map>
- The list of IPv4 sources from which to receive traffic for this static group sources blocks are documented below.
- static
Group String - The statically configured group address that this IGMP interface receives multicast data for
Supporting Types
GaiaIgmpInterfaceStaticGroupSource, GaiaIgmpInterfaceStaticGroupSourceArgs
- Source string
- The IPv4 source from which to receive traffic for this static group
- Source
Count string - The number of adjacent static group sources
- Source
Increment string - The increment between IGMP static group sources (default: 0.0.0.1)
- Source string
- The IPv4 source from which to receive traffic for this static group
- Source
Count string - The number of adjacent static group sources
- Source
Increment string - The increment between IGMP static group sources (default: 0.0.0.1)
- source string
- The IPv4 source from which to receive traffic for this static group
- source_
count string - The number of adjacent static group sources
- source_
increment string - The increment between IGMP static group sources (default: 0.0.0.1)
- source String
- The IPv4 source from which to receive traffic for this static group
- source
Count String - The number of adjacent static group sources
- source
Increment String - The increment between IGMP static group sources (default: 0.0.0.1)
- source string
- The IPv4 source from which to receive traffic for this static group
- source
Count string - The number of adjacent static group sources
- source
Increment string - The increment between IGMP static group sources (default: 0.0.0.1)
- source str
- The IPv4 source from which to receive traffic for this static group
- source_
count str - The number of adjacent static group sources
- source_
increment str - The increment between IGMP static group sources (default: 0.0.0.1)
- source String
- The IPv4 source from which to receive traffic for this static group
- source
Count String - The number of adjacent static group sources
- source
Increment String - The increment between IGMP static group sources (default: 0.0.0.1)
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