1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaMldInterfaceStaticGroup
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 Mld Interface Static Group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaMldInterfaceStaticGroup("example", {
        "interface": "eth0",
        staticGroup: "ff02::feed",
        sources: [{
            source: "11::11",
            sourceCount: "3",
            sourceIncrement: "::2",
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaMldInterfaceStaticGroup("example",
        interface="eth0",
        static_group="ff02::feed",
        sources=[{
            "source": "11::11",
            "source_count": "3",
            "source_increment": "::2",
        }])
    
    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.NewGaiaMldInterfaceStaticGroup(ctx, "example", &checkpoint.GaiaMldInterfaceStaticGroupArgs{
    			Interface:   pulumi.String("eth0"),
    			StaticGroup: pulumi.String("ff02::feed"),
    			Sources: checkpoint.GaiaMldInterfaceStaticGroupSourceArray{
    				&checkpoint.GaiaMldInterfaceStaticGroupSourceArgs{
    					Source:          pulumi.String("11::11"),
    					SourceCount:     pulumi.String("3"),
    					SourceIncrement: pulumi.String("::2"),
    				},
    			},
    		})
    		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.GaiaMldInterfaceStaticGroup("example", new()
        {
            Interface = "eth0",
            StaticGroup = "ff02::feed",
            Sources = new[]
            {
                new Checkpoint.Inputs.GaiaMldInterfaceStaticGroupSourceArgs
                {
                    Source = "11::11",
                    SourceCount = "3",
                    SourceIncrement = "::2",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaMldInterfaceStaticGroup;
    import com.pulumi.checkpoint.GaiaMldInterfaceStaticGroupArgs;
    import com.pulumi.checkpoint.inputs.GaiaMldInterfaceStaticGroupSourceArgs;
    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 GaiaMldInterfaceStaticGroup("example", GaiaMldInterfaceStaticGroupArgs.builder()
                .interface_("eth0")
                .staticGroup("ff02::feed")
                .sources(GaiaMldInterfaceStaticGroupSourceArgs.builder()
                    .source("11::11")
                    .sourceCount("3")
                    .sourceIncrement("::2")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaMldInterfaceStaticGroup
        properties:
          interface: eth0
          staticGroup: ff02::feed
          sources:
            - source: 11::11
              sourceCount: '3'
              sourceIncrement: ::2
    
    Example coming soon!
    

    Create GaiaMldInterfaceStaticGroup Resource

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

    Constructor syntax

    new GaiaMldInterfaceStaticGroup(name: string, args: GaiaMldInterfaceStaticGroupArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaMldInterfaceStaticGroup(resource_name: str,
                                    args: GaiaMldInterfaceStaticGroupArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaMldInterfaceStaticGroup(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    interface: Optional[str] = None,
                                    static_group: Optional[str] = None,
                                    debug: Optional[bool] = None,
                                    gaia_mld_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[GaiaMldInterfaceStaticGroupSourceArgs]] = None)
    func NewGaiaMldInterfaceStaticGroup(ctx *Context, name string, args GaiaMldInterfaceStaticGroupArgs, opts ...ResourceOption) (*GaiaMldInterfaceStaticGroup, error)
    public GaiaMldInterfaceStaticGroup(string name, GaiaMldInterfaceStaticGroupArgs args, CustomResourceOptions? opts = null)
    public GaiaMldInterfaceStaticGroup(String name, GaiaMldInterfaceStaticGroupArgs args)
    public GaiaMldInterfaceStaticGroup(String name, GaiaMldInterfaceStaticGroupArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaMldInterfaceStaticGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiamldinterfacestaticgroup" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaMldInterfaceStaticGroupArgs
    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 GaiaMldInterfaceStaticGroupArgs
    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 GaiaMldInterfaceStaticGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaMldInterfaceStaticGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaMldInterfaceStaticGroupArgs
    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 gaiaMldInterfaceStaticGroupResource = new Checkpoint.GaiaMldInterfaceStaticGroup("gaiaMldInterfaceStaticGroupResource", new()
    {
        Interface = "string",
        StaticGroup = "string",
        Debug = false,
        GaiaMldInterfaceStaticGroupId = "string",
        GroupCount = "string",
        GroupIncrement = "string",
        MemberId = "string",
        SourceAllOff = "string",
        Sources = new[]
        {
            new Checkpoint.Inputs.GaiaMldInterfaceStaticGroupSourceArgs
            {
                Source = "string",
                SourceCount = "string",
                SourceIncrement = "string",
            },
        },
    });
    
    example, err := checkpoint.NewGaiaMldInterfaceStaticGroup(ctx, "gaiaMldInterfaceStaticGroupResource", &checkpoint.GaiaMldInterfaceStaticGroupArgs{
    	Interface:                     pulumi.String("string"),
    	StaticGroup:                   pulumi.String("string"),
    	Debug:                         pulumi.Bool(false),
    	GaiaMldInterfaceStaticGroupId: pulumi.String("string"),
    	GroupCount:                    pulumi.String("string"),
    	GroupIncrement:                pulumi.String("string"),
    	MemberId:                      pulumi.String("string"),
    	SourceAllOff:                  pulumi.String("string"),
    	Sources: checkpoint.GaiaMldInterfaceStaticGroupSourceArray{
    		&checkpoint.GaiaMldInterfaceStaticGroupSourceArgs{
    			Source:          pulumi.String("string"),
    			SourceCount:     pulumi.String("string"),
    			SourceIncrement: pulumi.String("string"),
    		},
    	},
    })
    
    resource "checkpoint_gaiamldinterfacestaticgroup" "gaiaMldInterfaceStaticGroupResource" {
      interface                          = "string"
      static_group                       = "string"
      debug                              = false
      gaia_mld_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 gaiaMldInterfaceStaticGroupResource = new GaiaMldInterfaceStaticGroup("gaiaMldInterfaceStaticGroupResource", GaiaMldInterfaceStaticGroupArgs.builder()
        .interface_("string")
        .staticGroup("string")
        .debug(false)
        .gaiaMldInterfaceStaticGroupId("string")
        .groupCount("string")
        .groupIncrement("string")
        .memberId("string")
        .sourceAllOff("string")
        .sources(GaiaMldInterfaceStaticGroupSourceArgs.builder()
            .source("string")
            .sourceCount("string")
            .sourceIncrement("string")
            .build())
        .build());
    
    gaia_mld_interface_static_group_resource = checkpoint.GaiaMldInterfaceStaticGroup("gaiaMldInterfaceStaticGroupResource",
        interface="string",
        static_group="string",
        debug=False,
        gaia_mld_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 gaiaMldInterfaceStaticGroupResource = new checkpoint.GaiaMldInterfaceStaticGroup("gaiaMldInterfaceStaticGroupResource", {
        "interface": "string",
        staticGroup: "string",
        debug: false,
        gaiaMldInterfaceStaticGroupId: "string",
        groupCount: "string",
        groupIncrement: "string",
        memberId: "string",
        sourceAllOff: "string",
        sources: [{
            source: "string",
            sourceCount: "string",
            sourceIncrement: "string",
        }],
    });
    
    type: checkpoint:GaiaMldInterfaceStaticGroup
    properties:
        debug: false
        gaiaMldInterfaceStaticGroupId: string
        groupCount: string
        groupIncrement: string
        interface: string
        memberId: string
        sourceAllOff: string
        sources:
            - source: string
              sourceCount: string
              sourceIncrement: string
        staticGroup: string
    

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

    Interface string
    The name of the MLD interface
    StaticGroup string
    The statically configured group address that this MLD interface receives multicast data for
    Debug bool
    Enable debug logging for this resource.
    GaiaMldInterfaceStaticGroupId string
    GroupCount string
    The number of adjacent static groups
    GroupIncrement string
    The increment between MLD static groups (default: ::1)
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    SourceAllOff string
    Remove all sources of a static group
    Sources List<GaiaMldInterfaceStaticGroupSource>
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    Interface string
    The name of the MLD interface
    StaticGroup string
    The statically configured group address that this MLD interface receives multicast data for
    Debug bool
    Enable debug logging for this resource.
    GaiaMldInterfaceStaticGroupId string
    GroupCount string
    The number of adjacent static groups
    GroupIncrement string
    The increment between MLD static groups (default: ::1)
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    SourceAllOff string
    Remove all sources of a static group
    Sources []GaiaMldInterfaceStaticGroupSourceArgs
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    interface string
    The name of the MLD interface
    static_group string
    The statically configured group address that this MLD interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_mld_interface_static_group_id string
    group_count string
    The number of adjacent static groups
    group_increment string
    The increment between MLD static groups (default: ::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_off string
    Remove all sources of a static group
    sources list(object)
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    interface_ String
    The name of the MLD interface
    staticGroup String
    The statically configured group address that this MLD interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaMldInterfaceStaticGroupId String
    groupCount String
    The number of adjacent static groups
    groupIncrement String
    The increment between MLD static groups (default: ::1)
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    sourceAllOff String
    Remove all sources of a static group
    sources List<GaiaMldInterfaceStaticGroupSource>
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    interface string
    The name of the MLD interface
    staticGroup string
    The statically configured group address that this MLD interface receives multicast data for
    debug boolean
    Enable debug logging for this resource.
    gaiaMldInterfaceStaticGroupId string
    groupCount string
    The number of adjacent static groups
    groupIncrement string
    The increment between MLD static groups (default: ::1)
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    sourceAllOff string
    Remove all sources of a static group
    sources GaiaMldInterfaceStaticGroupSource[]
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    interface str
    The name of the MLD interface
    static_group str
    The statically configured group address that this MLD interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_mld_interface_static_group_id str
    group_count str
    The number of adjacent static groups
    group_increment str
    The increment between MLD static groups (default: ::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_off str
    Remove all sources of a static group
    sources Sequence[GaiaMldInterfaceStaticGroupSourceArgs]
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    interface String
    The name of the MLD interface
    staticGroup String
    The statically configured group address that this MLD interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaMldInterfaceStaticGroupId String
    groupCount String
    The number of adjacent static groups
    groupIncrement String
    The increment between MLD static groups (default: ::1)
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    sourceAllOff String
    Remove all sources of a static group
    sources List<Property Map>
    The list of IPv6 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 GaiaMldInterfaceStaticGroup 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 GaiaMldInterfaceStaticGroup Resource

    Get an existing GaiaMldInterfaceStaticGroup 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?: GaiaMldInterfaceStaticGroupState, opts?: CustomResourceOptions): GaiaMldInterfaceStaticGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_mld_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[GaiaMldInterfaceStaticGroupSourceArgs]] = None,
            static_group: Optional[str] = None) -> GaiaMldInterfaceStaticGroup
    func GetGaiaMldInterfaceStaticGroup(ctx *Context, name string, id IDInput, state *GaiaMldInterfaceStaticGroupState, opts ...ResourceOption) (*GaiaMldInterfaceStaticGroup, error)
    public static GaiaMldInterfaceStaticGroup Get(string name, Input<string> id, GaiaMldInterfaceStaticGroupState? state, CustomResourceOptions? opts = null)
    public static GaiaMldInterfaceStaticGroup get(String name, Output<String> id, GaiaMldInterfaceStaticGroupState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaMldInterfaceStaticGroup    get:      id: ${id}
    import {
      to = checkpoint_gaiamldinterfacestaticgroup.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.
    GaiaMldInterfaceStaticGroupId string
    GroupCount string
    The number of adjacent static groups
    GroupIncrement string
    The increment between MLD static groups (default: ::1)
    Interface string
    The name of the MLD interface
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    SourceAllOff string
    Remove all sources of a static group
    Sources List<GaiaMldInterfaceStaticGroupSource>
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    StaticGroup string
    The statically configured group address that this MLD interface receives multicast data for
    Debug bool
    Enable debug logging for this resource.
    GaiaMldInterfaceStaticGroupId string
    GroupCount string
    The number of adjacent static groups
    GroupIncrement string
    The increment between MLD static groups (default: ::1)
    Interface string
    The name of the MLD interface
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    SourceAllOff string
    Remove all sources of a static group
    Sources []GaiaMldInterfaceStaticGroupSourceArgs
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    StaticGroup string
    The statically configured group address that this MLD interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_mld_interface_static_group_id string
    group_count string
    The number of adjacent static groups
    group_increment string
    The increment between MLD static groups (default: ::1)
    interface string
    The name of the MLD 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_off string
    Remove all sources of a static group
    sources list(object)
    The list of IPv6 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 MLD interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaMldInterfaceStaticGroupId String
    groupCount String
    The number of adjacent static groups
    groupIncrement String
    The increment between MLD static groups (default: ::1)
    interface_ String
    The name of the MLD interface
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    sourceAllOff String
    Remove all sources of a static group
    sources List<GaiaMldInterfaceStaticGroupSource>
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    staticGroup String
    The statically configured group address that this MLD interface receives multicast data for
    debug boolean
    Enable debug logging for this resource.
    gaiaMldInterfaceStaticGroupId string
    groupCount string
    The number of adjacent static groups
    groupIncrement string
    The increment between MLD static groups (default: ::1)
    interface string
    The name of the MLD interface
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    sourceAllOff string
    Remove all sources of a static group
    sources GaiaMldInterfaceStaticGroupSource[]
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    staticGroup string
    The statically configured group address that this MLD interface receives multicast data for
    debug bool
    Enable debug logging for this resource.
    gaia_mld_interface_static_group_id str
    group_count str
    The number of adjacent static groups
    group_increment str
    The increment between MLD static groups (default: ::1)
    interface str
    The name of the MLD 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_off str
    Remove all sources of a static group
    sources Sequence[GaiaMldInterfaceStaticGroupSourceArgs]
    The list of IPv6 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 MLD interface receives multicast data for
    debug Boolean
    Enable debug logging for this resource.
    gaiaMldInterfaceStaticGroupId String
    groupCount String
    The number of adjacent static groups
    groupIncrement String
    The increment between MLD static groups (default: ::1)
    interface String
    The name of the MLD interface
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    sourceAllOff String
    Remove all sources of a static group
    sources List<Property Map>
    The list of IPv6 sources from which to receive traffic for this static group sources blocks are documented below.
    staticGroup String
    The statically configured group address that this MLD interface receives multicast data for

    Supporting Types

    GaiaMldInterfaceStaticGroupSource, GaiaMldInterfaceStaticGroupSourceArgs

    Source string
    The IPv6 source from which to receive traffic for this static group
    SourceCount string
    The number of adjacent static group sources
    SourceIncrement string
    The increment between MLD static group sources (default: ::1)
    Source string
    The IPv6 source from which to receive traffic for this static group
    SourceCount string
    The number of adjacent static group sources
    SourceIncrement string
    The increment between MLD static group sources (default: ::1)
    source string
    The IPv6 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 MLD static group sources (default: ::1)
    source String
    The IPv6 source from which to receive traffic for this static group
    sourceCount String
    The number of adjacent static group sources
    sourceIncrement String
    The increment between MLD static group sources (default: ::1)
    source string
    The IPv6 source from which to receive traffic for this static group
    sourceCount string
    The number of adjacent static group sources
    sourceIncrement string
    The increment between MLD static group sources (default: ::1)
    source str
    The IPv6 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 MLD static group sources (default: ::1)
    source String
    The IPv6 source from which to receive traffic for this static group
    sourceCount String
    The number of adjacent static group sources
    sourceIncrement String
    The increment between MLD static group sources (default: ::1)

    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