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.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaIgmpInterface("example", {
name: "eth0",
lossRobustness: "7",
queryInterval: "125",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaIgmpInterface("example",
name="eth0",
loss_robustness="7",
query_interval="125")
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.NewGaiaIgmpInterface(ctx, "example", &checkpoint.GaiaIgmpInterfaceArgs{
Name: pulumi.String("eth0"),
LossRobustness: pulumi.String("7"),
QueryInterval: pulumi.String("125"),
})
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.GaiaIgmpInterface("example", new()
{
Name = "eth0",
LossRobustness = "7",
QueryInterval = "125",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaIgmpInterface;
import com.pulumi.checkpoint.GaiaIgmpInterfaceArgs;
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 GaiaIgmpInterface("example", GaiaIgmpInterfaceArgs.builder()
.name("eth0")
.lossRobustness("7")
.queryInterval("125")
.build());
}
}
resources:
example:
type: checkpoint:GaiaIgmpInterface
properties:
name: eth0
lossRobustness: '7'
queryInterval: '125'
Example coming soon!
Create GaiaIgmpInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaIgmpInterface(name: string, args?: GaiaIgmpInterfaceArgs, opts?: CustomResourceOptions);@overload
def GaiaIgmpInterface(resource_name: str,
args: Optional[GaiaIgmpInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaIgmpInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_igmp_interface_id: Optional[str] = None,
igmp_version: Optional[str] = None,
last_member_query_interval: Optional[str] = None,
loss_robustness: Optional[str] = None,
member_id: Optional[str] = None,
name: Optional[str] = None,
query_interval: Optional[str] = None,
query_response_interval: Optional[str] = None,
reset: Optional[bool] = None,
router_alert: Optional[bool] = None)func NewGaiaIgmpInterface(ctx *Context, name string, args *GaiaIgmpInterfaceArgs, opts ...ResourceOption) (*GaiaIgmpInterface, error)public GaiaIgmpInterface(string name, GaiaIgmpInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public GaiaIgmpInterface(String name, GaiaIgmpInterfaceArgs args)
public GaiaIgmpInterface(String name, GaiaIgmpInterfaceArgs args, CustomResourceOptions options)
type: checkpoint:GaiaIgmpInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiaigmpinterface" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaIgmpInterfaceArgs
- 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 GaiaIgmpInterfaceArgs
- 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 GaiaIgmpInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaIgmpInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaIgmpInterfaceArgs
- 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 gaiaIgmpInterfaceResource = new Checkpoint.GaiaIgmpInterface("gaiaIgmpInterfaceResource", new()
{
Debug = false,
GaiaIgmpInterfaceId = "string",
IgmpVersion = "string",
LastMemberQueryInterval = "string",
LossRobustness = "string",
MemberId = "string",
Name = "string",
QueryInterval = "string",
QueryResponseInterval = "string",
Reset = false,
RouterAlert = false,
});
example, err := checkpoint.NewGaiaIgmpInterface(ctx, "gaiaIgmpInterfaceResource", &checkpoint.GaiaIgmpInterfaceArgs{
Debug: pulumi.Bool(false),
GaiaIgmpInterfaceId: pulumi.String("string"),
IgmpVersion: pulumi.String("string"),
LastMemberQueryInterval: pulumi.String("string"),
LossRobustness: pulumi.String("string"),
MemberId: pulumi.String("string"),
Name: pulumi.String("string"),
QueryInterval: pulumi.String("string"),
QueryResponseInterval: pulumi.String("string"),
Reset: pulumi.Bool(false),
RouterAlert: pulumi.Bool(false),
})
resource "checkpoint_gaiaigmpinterface" "gaiaIgmpInterfaceResource" {
debug = false
gaia_igmp_interface_id = "string"
igmp_version = "string"
last_member_query_interval = "string"
loss_robustness = "string"
member_id = "string"
name = "string"
query_interval = "string"
query_response_interval = "string"
reset = false
router_alert = false
}
var gaiaIgmpInterfaceResource = new GaiaIgmpInterface("gaiaIgmpInterfaceResource", GaiaIgmpInterfaceArgs.builder()
.debug(false)
.gaiaIgmpInterfaceId("string")
.igmpVersion("string")
.lastMemberQueryInterval("string")
.lossRobustness("string")
.memberId("string")
.name("string")
.queryInterval("string")
.queryResponseInterval("string")
.reset(false)
.routerAlert(false)
.build());
gaia_igmp_interface_resource = checkpoint.GaiaIgmpInterface("gaiaIgmpInterfaceResource",
debug=False,
gaia_igmp_interface_id="string",
igmp_version="string",
last_member_query_interval="string",
loss_robustness="string",
member_id="string",
name="string",
query_interval="string",
query_response_interval="string",
reset=False,
router_alert=False)
const gaiaIgmpInterfaceResource = new checkpoint.GaiaIgmpInterface("gaiaIgmpInterfaceResource", {
debug: false,
gaiaIgmpInterfaceId: "string",
igmpVersion: "string",
lastMemberQueryInterval: "string",
lossRobustness: "string",
memberId: "string",
name: "string",
queryInterval: "string",
queryResponseInterval: "string",
reset: false,
routerAlert: false,
});
type: checkpoint:GaiaIgmpInterface
properties:
debug: false
gaiaIgmpInterfaceId: string
igmpVersion: string
lastMemberQueryInterval: string
lossRobustness: string
memberId: string
name: string
queryInterval: string
queryResponseInterval: string
reset: false
routerAlert: false
GaiaIgmpInterface 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 GaiaIgmpInterface resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Gaia
Igmp stringInterface Id - Igmp
Version string - The IGMP version running
- Last
Member stringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- Loss
Robustness string - The loss-robustness value
- 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 name of the IGMP interface
- Query
Interval string - The number of seconds between IGMP general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- Reset bool
- Reset all attributes of this interface to default values
- Router
Alert bool - Configure the router-alert option for this IGMP interface
- Debug bool
- Enable debug logging for this resource.
- Gaia
Igmp stringInterface Id - Igmp
Version string - The IGMP version running
- Last
Member stringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- Loss
Robustness string - The loss-robustness value
- 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 name of the IGMP interface
- Query
Interval string - The number of seconds between IGMP general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- Reset bool
- Reset all attributes of this interface to default values
- Router
Alert bool - Configure the router-alert option for this IGMP interface
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ stringinterface_ id - igmp_
version string - The IGMP version running
- last_
member_ stringquery_ interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss_
robustness string - The loss-robustness value
- 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 name of the IGMP interface
- query_
interval string - The number of seconds between IGMP general queries
- query_
response_ stringinterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset bool
- Reset all attributes of this interface to default values
- router_
alert bool - Configure the router-alert option for this IGMP interface
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Id - igmp
Version String - The IGMP version running
- last
Member StringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss
Robustness String - The loss-robustness value
- 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 name of the IGMP interface
- query
Interval String - The number of seconds between IGMP general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset Boolean
- Reset all attributes of this interface to default values
- router
Alert Boolean - Configure the router-alert option for this IGMP interface
- debug boolean
- Enable debug logging for this resource.
- gaia
Igmp stringInterface Id - igmp
Version string - The IGMP version running
- last
Member stringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss
Robustness string - The loss-robustness value
- 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 name of the IGMP interface
- query
Interval string - The number of seconds between IGMP general queries
- query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset boolean
- Reset all attributes of this interface to default values
- router
Alert boolean - Configure the router-alert option for this IGMP interface
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ strinterface_ id - igmp_
version str - The IGMP version running
- last_
member_ strquery_ interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss_
robustness str - The loss-robustness value
- 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 name of the IGMP interface
- query_
interval str - The number of seconds between IGMP general queries
- query_
response_ strinterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset bool
- Reset all attributes of this interface to default values
- router_
alert bool - Configure the router-alert option for this IGMP interface
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Id - igmp
Version String - The IGMP version running
- last
Member StringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss
Robustness String - The loss-robustness value
- 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 name of the IGMP interface
- query
Interval String - The number of seconds between IGMP general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset Boolean
- Reset all attributes of this interface to default values
- router
Alert Boolean - Configure the router-alert option for this IGMP interface
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaIgmpInterface 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 GaiaIgmpInterface Resource
Get an existing GaiaIgmpInterface 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?: GaiaIgmpInterfaceState, opts?: CustomResourceOptions): GaiaIgmpInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_igmp_interface_id: Optional[str] = None,
igmp_version: Optional[str] = None,
last_member_query_interval: Optional[str] = None,
loss_robustness: Optional[str] = None,
member_id: Optional[str] = None,
name: Optional[str] = None,
query_interval: Optional[str] = None,
query_response_interval: Optional[str] = None,
reset: Optional[bool] = None,
router_alert: Optional[bool] = None) -> GaiaIgmpInterfacefunc GetGaiaIgmpInterface(ctx *Context, name string, id IDInput, state *GaiaIgmpInterfaceState, opts ...ResourceOption) (*GaiaIgmpInterface, error)public static GaiaIgmpInterface Get(string name, Input<string> id, GaiaIgmpInterfaceState? state, CustomResourceOptions? opts = null)public static GaiaIgmpInterface get(String name, Output<String> id, GaiaIgmpInterfaceState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaIgmpInterface get: id: ${id}import {
to = checkpoint_gaiaigmpinterface.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 Id - Igmp
Version string - The IGMP version running
- Last
Member stringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- Loss
Robustness string - The loss-robustness value
- 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 name of the IGMP interface
- Query
Interval string - The number of seconds between IGMP general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- Reset bool
- Reset all attributes of this interface to default values
- Router
Alert bool - Configure the router-alert option for this IGMP interface
- Debug bool
- Enable debug logging for this resource.
- Gaia
Igmp stringInterface Id - Igmp
Version string - The IGMP version running
- Last
Member stringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- Loss
Robustness string - The loss-robustness value
- 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 name of the IGMP interface
- Query
Interval string - The number of seconds between IGMP general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- Reset bool
- Reset all attributes of this interface to default values
- Router
Alert bool - Configure the router-alert option for this IGMP interface
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ stringinterface_ id - igmp_
version string - The IGMP version running
- last_
member_ stringquery_ interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss_
robustness string - The loss-robustness value
- 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 name of the IGMP interface
- query_
interval string - The number of seconds between IGMP general queries
- query_
response_ stringinterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset bool
- Reset all attributes of this interface to default values
- router_
alert bool - Configure the router-alert option for this IGMP interface
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Id - igmp
Version String - The IGMP version running
- last
Member StringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss
Robustness String - The loss-robustness value
- 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 name of the IGMP interface
- query
Interval String - The number of seconds between IGMP general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset Boolean
- Reset all attributes of this interface to default values
- router
Alert Boolean - Configure the router-alert option for this IGMP interface
- debug boolean
- Enable debug logging for this resource.
- gaia
Igmp stringInterface Id - igmp
Version string - The IGMP version running
- last
Member stringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss
Robustness string - The loss-robustness value
- 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 name of the IGMP interface
- query
Interval string - The number of seconds between IGMP general queries
- query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset boolean
- Reset all attributes of this interface to default values
- router
Alert boolean - Configure the router-alert option for this IGMP interface
- debug bool
- Enable debug logging for this resource.
- gaia_
igmp_ strinterface_ id - igmp_
version str - The IGMP version running
- last_
member_ strquery_ interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss_
robustness str - The loss-robustness value
- 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 name of the IGMP interface
- query_
interval str - The number of seconds between IGMP general queries
- query_
response_ strinterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset bool
- Reset all attributes of this interface to default values
- router_
alert bool - Configure the router-alert option for this IGMP interface
- debug Boolean
- Enable debug logging for this resource.
- gaia
Igmp StringInterface Id - igmp
Version String - The IGMP version running
- last
Member StringQuery Interval - The number of seconds between queries that an IGMP router sends after it receives a "Leave Group" message from a host
- loss
Robustness String - The loss-robustness value
- 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 name of the IGMP interface
- query
Interval String - The number of seconds between IGMP general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an IGMP membership query
- reset Boolean
- Reset all attributes of this interface to default values
- router
Alert Boolean - Configure the router-alert option for this IGMP interface
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