published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Mld Interface.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaMldInterface("example", {
name: "eth0",
lossRobustness: "7",
queryInterval: "125",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaMldInterface("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.NewGaiaMldInterface(ctx, "example", &checkpoint.GaiaMldInterfaceArgs{
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.GaiaMldInterface("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.GaiaMldInterface;
import com.pulumi.checkpoint.GaiaMldInterfaceArgs;
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 GaiaMldInterface("example", GaiaMldInterfaceArgs.builder()
.name("eth0")
.lossRobustness("7")
.queryInterval("125")
.build());
}
}
resources:
example:
type: checkpoint:GaiaMldInterface
properties:
name: eth0
lossRobustness: '7'
queryInterval: '125'
Example coming soon!
Create GaiaMldInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaMldInterface(name: string, args?: GaiaMldInterfaceArgs, opts?: CustomResourceOptions);@overload
def GaiaMldInterface(resource_name: str,
args: Optional[GaiaMldInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaMldInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_mld_interface_id: Optional[str] = None,
last_listener_query_count: Optional[str] = None,
last_listener_query_interval: Optional[str] = None,
loss_robustness: Optional[str] = None,
member_id: Optional[str] = None,
mld_version: Optional[str] = None,
name: Optional[str] = None,
query_interval: Optional[str] = None,
query_response_interval: Optional[str] = None,
reset: Optional[bool] = None,
startup_query_count: Optional[str] = None,
startup_query_interval: Optional[str] = None)func NewGaiaMldInterface(ctx *Context, name string, args *GaiaMldInterfaceArgs, opts ...ResourceOption) (*GaiaMldInterface, error)public GaiaMldInterface(string name, GaiaMldInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public GaiaMldInterface(String name, GaiaMldInterfaceArgs args)
public GaiaMldInterface(String name, GaiaMldInterfaceArgs args, CustomResourceOptions options)
type: checkpoint:GaiaMldInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiamldinterface" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaMldInterfaceArgs
- 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 GaiaMldInterfaceArgs
- 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 GaiaMldInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaMldInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaMldInterfaceArgs
- 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 gaiaMldInterfaceResource = new Checkpoint.GaiaMldInterface("gaiaMldInterfaceResource", new()
{
Debug = false,
GaiaMldInterfaceId = "string",
LastListenerQueryCount = "string",
LastListenerQueryInterval = "string",
LossRobustness = "string",
MemberId = "string",
MldVersion = "string",
Name = "string",
QueryInterval = "string",
QueryResponseInterval = "string",
Reset = false,
StartupQueryCount = "string",
StartupQueryInterval = "string",
});
example, err := checkpoint.NewGaiaMldInterface(ctx, "gaiaMldInterfaceResource", &checkpoint.GaiaMldInterfaceArgs{
Debug: pulumi.Bool(false),
GaiaMldInterfaceId: pulumi.String("string"),
LastListenerQueryCount: pulumi.String("string"),
LastListenerQueryInterval: pulumi.String("string"),
LossRobustness: pulumi.String("string"),
MemberId: pulumi.String("string"),
MldVersion: pulumi.String("string"),
Name: pulumi.String("string"),
QueryInterval: pulumi.String("string"),
QueryResponseInterval: pulumi.String("string"),
Reset: pulumi.Bool(false),
StartupQueryCount: pulumi.String("string"),
StartupQueryInterval: pulumi.String("string"),
})
resource "checkpoint_gaiamldinterface" "gaiaMldInterfaceResource" {
debug = false
gaia_mld_interface_id = "string"
last_listener_query_count = "string"
last_listener_query_interval = "string"
loss_robustness = "string"
member_id = "string"
mld_version = "string"
name = "string"
query_interval = "string"
query_response_interval = "string"
reset = false
startup_query_count = "string"
startup_query_interval = "string"
}
var gaiaMldInterfaceResource = new GaiaMldInterface("gaiaMldInterfaceResource", GaiaMldInterfaceArgs.builder()
.debug(false)
.gaiaMldInterfaceId("string")
.lastListenerQueryCount("string")
.lastListenerQueryInterval("string")
.lossRobustness("string")
.memberId("string")
.mldVersion("string")
.name("string")
.queryInterval("string")
.queryResponseInterval("string")
.reset(false)
.startupQueryCount("string")
.startupQueryInterval("string")
.build());
gaia_mld_interface_resource = checkpoint.GaiaMldInterface("gaiaMldInterfaceResource",
debug=False,
gaia_mld_interface_id="string",
last_listener_query_count="string",
last_listener_query_interval="string",
loss_robustness="string",
member_id="string",
mld_version="string",
name="string",
query_interval="string",
query_response_interval="string",
reset=False,
startup_query_count="string",
startup_query_interval="string")
const gaiaMldInterfaceResource = new checkpoint.GaiaMldInterface("gaiaMldInterfaceResource", {
debug: false,
gaiaMldInterfaceId: "string",
lastListenerQueryCount: "string",
lastListenerQueryInterval: "string",
lossRobustness: "string",
memberId: "string",
mldVersion: "string",
name: "string",
queryInterval: "string",
queryResponseInterval: "string",
reset: false,
startupQueryCount: "string",
startupQueryInterval: "string",
});
type: checkpoint:GaiaMldInterface
properties:
debug: false
gaiaMldInterfaceId: string
lastListenerQueryCount: string
lastListenerQueryInterval: string
lossRobustness: string
memberId: string
mldVersion: string
name: string
queryInterval: string
queryResponseInterval: string
reset: false
startupQueryCount: string
startupQueryInterval: string
GaiaMldInterface 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 GaiaMldInterface resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Gaia
Mld stringInterface Id - Last
Listener stringQuery Count - The number of queries to send when a listener leaves a group
- Last
Listener stringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- Mld
Version string - The MLD version running
- Name string
- The name of the MLD interface
- Query
Interval string - The number of seconds between MLD general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- Reset bool
- Reset all attributes of this interface to default values
- Startup
Query stringCount - The number of queries sent when MLD starts up
- Startup
Query stringInterval - The number of seconds between MLD startup queries
- Debug bool
- Enable debug logging for this resource.
- Gaia
Mld stringInterface Id - Last
Listener stringQuery Count - The number of queries to send when a listener leaves a group
- Last
Listener stringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- Mld
Version string - The MLD version running
- Name string
- The name of the MLD interface
- Query
Interval string - The number of seconds between MLD general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- Reset bool
- Reset all attributes of this interface to default values
- Startup
Query stringCount - The number of queries sent when MLD starts up
- Startup
Query stringInterval - The number of seconds between MLD startup queries
- debug bool
- Enable debug logging for this resource.
- gaia_
mld_ stringinterface_ id - last_
listener_ stringquery_ count - The number of queries to send when a listener leaves a group
- last_
listener_ stringquery_ interval - The number of seconds between queries when a listener leaves a group
- 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
- mld_
version string - The MLD version running
- name string
- The name of the MLD interface
- query_
interval string - The number of seconds between MLD general queries
- query_
response_ stringinterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset bool
- Reset all attributes of this interface to default values
- startup_
query_ stringcount - The number of queries sent when MLD starts up
- startup_
query_ stringinterval - The number of seconds between MLD startup queries
- debug Boolean
- Enable debug logging for this resource.
- gaia
Mld StringInterface Id - last
Listener StringQuery Count - The number of queries to send when a listener leaves a group
- last
Listener StringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- mld
Version String - The MLD version running
- name String
- The name of the MLD interface
- query
Interval String - The number of seconds between MLD general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset Boolean
- Reset all attributes of this interface to default values
- startup
Query StringCount - The number of queries sent when MLD starts up
- startup
Query StringInterval - The number of seconds between MLD startup queries
- debug boolean
- Enable debug logging for this resource.
- gaia
Mld stringInterface Id - last
Listener stringQuery Count - The number of queries to send when a listener leaves a group
- last
Listener stringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- mld
Version string - The MLD version running
- name string
- The name of the MLD interface
- query
Interval string - The number of seconds between MLD general queries
- query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset boolean
- Reset all attributes of this interface to default values
- startup
Query stringCount - The number of queries sent when MLD starts up
- startup
Query stringInterval - The number of seconds between MLD startup queries
- debug bool
- Enable debug logging for this resource.
- gaia_
mld_ strinterface_ id - last_
listener_ strquery_ count - The number of queries to send when a listener leaves a group
- last_
listener_ strquery_ interval - The number of seconds between queries when a listener leaves a group
- 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
- mld_
version str - The MLD version running
- name str
- The name of the MLD interface
- query_
interval str - The number of seconds between MLD general queries
- query_
response_ strinterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset bool
- Reset all attributes of this interface to default values
- startup_
query_ strcount - The number of queries sent when MLD starts up
- startup_
query_ strinterval - The number of seconds between MLD startup queries
- debug Boolean
- Enable debug logging for this resource.
- gaia
Mld StringInterface Id - last
Listener StringQuery Count - The number of queries to send when a listener leaves a group
- last
Listener StringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- mld
Version String - The MLD version running
- name String
- The name of the MLD interface
- query
Interval String - The number of seconds between MLD general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset Boolean
- Reset all attributes of this interface to default values
- startup
Query StringCount - The number of queries sent when MLD starts up
- startup
Query StringInterval - The number of seconds between MLD startup queries
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaMldInterface 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 GaiaMldInterface Resource
Get an existing GaiaMldInterface 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?: GaiaMldInterfaceState, opts?: CustomResourceOptions): GaiaMldInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_mld_interface_id: Optional[str] = None,
last_listener_query_count: Optional[str] = None,
last_listener_query_interval: Optional[str] = None,
loss_robustness: Optional[str] = None,
member_id: Optional[str] = None,
mld_version: Optional[str] = None,
name: Optional[str] = None,
query_interval: Optional[str] = None,
query_response_interval: Optional[str] = None,
reset: Optional[bool] = None,
startup_query_count: Optional[str] = None,
startup_query_interval: Optional[str] = None) -> GaiaMldInterfacefunc GetGaiaMldInterface(ctx *Context, name string, id IDInput, state *GaiaMldInterfaceState, opts ...ResourceOption) (*GaiaMldInterface, error)public static GaiaMldInterface Get(string name, Input<string> id, GaiaMldInterfaceState? state, CustomResourceOptions? opts = null)public static GaiaMldInterface get(String name, Output<String> id, GaiaMldInterfaceState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaMldInterface get: id: ${id}import {
to = checkpoint_gaiamldinterface.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
Mld stringInterface Id - Last
Listener stringQuery Count - The number of queries to send when a listener leaves a group
- Last
Listener stringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- Mld
Version string - The MLD version running
- Name string
- The name of the MLD interface
- Query
Interval string - The number of seconds between MLD general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- Reset bool
- Reset all attributes of this interface to default values
- Startup
Query stringCount - The number of queries sent when MLD starts up
- Startup
Query stringInterval - The number of seconds between MLD startup queries
- Debug bool
- Enable debug logging for this resource.
- Gaia
Mld stringInterface Id - Last
Listener stringQuery Count - The number of queries to send when a listener leaves a group
- Last
Listener stringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- Mld
Version string - The MLD version running
- Name string
- The name of the MLD interface
- Query
Interval string - The number of seconds between MLD general queries
- Query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- Reset bool
- Reset all attributes of this interface to default values
- Startup
Query stringCount - The number of queries sent when MLD starts up
- Startup
Query stringInterval - The number of seconds between MLD startup queries
- debug bool
- Enable debug logging for this resource.
- gaia_
mld_ stringinterface_ id - last_
listener_ stringquery_ count - The number of queries to send when a listener leaves a group
- last_
listener_ stringquery_ interval - The number of seconds between queries when a listener leaves a group
- 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
- mld_
version string - The MLD version running
- name string
- The name of the MLD interface
- query_
interval string - The number of seconds between MLD general queries
- query_
response_ stringinterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset bool
- Reset all attributes of this interface to default values
- startup_
query_ stringcount - The number of queries sent when MLD starts up
- startup_
query_ stringinterval - The number of seconds between MLD startup queries
- debug Boolean
- Enable debug logging for this resource.
- gaia
Mld StringInterface Id - last
Listener StringQuery Count - The number of queries to send when a listener leaves a group
- last
Listener StringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- mld
Version String - The MLD version running
- name String
- The name of the MLD interface
- query
Interval String - The number of seconds between MLD general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset Boolean
- Reset all attributes of this interface to default values
- startup
Query StringCount - The number of queries sent when MLD starts up
- startup
Query StringInterval - The number of seconds between MLD startup queries
- debug boolean
- Enable debug logging for this resource.
- gaia
Mld stringInterface Id - last
Listener stringQuery Count - The number of queries to send when a listener leaves a group
- last
Listener stringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- mld
Version string - The MLD version running
- name string
- The name of the MLD interface
- query
Interval string - The number of seconds between MLD general queries
- query
Response stringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset boolean
- Reset all attributes of this interface to default values
- startup
Query stringCount - The number of queries sent when MLD starts up
- startup
Query stringInterval - The number of seconds between MLD startup queries
- debug bool
- Enable debug logging for this resource.
- gaia_
mld_ strinterface_ id - last_
listener_ strquery_ count - The number of queries to send when a listener leaves a group
- last_
listener_ strquery_ interval - The number of seconds between queries when a listener leaves a group
- 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
- mld_
version str - The MLD version running
- name str
- The name of the MLD interface
- query_
interval str - The number of seconds between MLD general queries
- query_
response_ strinterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset bool
- Reset all attributes of this interface to default values
- startup_
query_ strcount - The number of queries sent when MLD starts up
- startup_
query_ strinterval - The number of seconds between MLD startup queries
- debug Boolean
- Enable debug logging for this resource.
- gaia
Mld StringInterface Id - last
Listener StringQuery Count - The number of queries to send when a listener leaves a group
- last
Listener StringQuery Interval - The number of seconds between queries when a listener leaves a group
- 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
- mld
Version String - The MLD version running
- name String
- The name of the MLD interface
- query
Interval String - The number of seconds between MLD general queries
- query
Response StringInterval - The maximum delay time in seconds for hosts to respond to an MLD membership query
- reset Boolean
- Reset all attributes of this interface to default values
- startup
Query StringCount - The number of queries sent when MLD starts up
- startup
Query StringInterval - The number of seconds between MLD startup queries
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