1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaDhcp6Config
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 Dhcp6 Config.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaDhcp6Config("example", {clientMode: "prefix-delegation"});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaDhcp6Config("example", client_mode="prefix-delegation")
    
    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.NewGaiaDhcp6Config(ctx, "example", &checkpoint.GaiaDhcp6ConfigArgs{
    			ClientMode: pulumi.String("prefix-delegation"),
    		})
    		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.GaiaDhcp6Config("example", new()
        {
            ClientMode = "prefix-delegation",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaDhcp6Config;
    import com.pulumi.checkpoint.GaiaDhcp6ConfigArgs;
    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 GaiaDhcp6Config("example", GaiaDhcp6ConfigArgs.builder()
                .clientMode("prefix-delegation")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaDhcp6Config
        properties:
          clientMode: prefix-delegation
    
    Example coming soon!
    

    Create GaiaDhcp6Config Resource

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

    Constructor syntax

    new GaiaDhcp6Config(name: string, args?: GaiaDhcp6ConfigArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaDhcp6Config(resource_name: str,
                        args: Optional[GaiaDhcp6ConfigArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaDhcp6Config(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        client_mode: Optional[str] = None,
                        debug: Optional[bool] = None,
                        gaia_dhcp6_config_id: Optional[str] = None,
                        member_id: Optional[str] = None,
                        prefix_delegation_options: Optional[GaiaDhcp6ConfigPrefixDelegationOptionsArgs] = None)
    func NewGaiaDhcp6Config(ctx *Context, name string, args *GaiaDhcp6ConfigArgs, opts ...ResourceOption) (*GaiaDhcp6Config, error)
    public GaiaDhcp6Config(string name, GaiaDhcp6ConfigArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaDhcp6Config(String name, GaiaDhcp6ConfigArgs args)
    public GaiaDhcp6Config(String name, GaiaDhcp6ConfigArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaDhcp6Config
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiadhcp6config" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaDhcp6ConfigArgs
    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 GaiaDhcp6ConfigArgs
    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 GaiaDhcp6ConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaDhcp6ConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaDhcp6ConfigArgs
    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 gaiaDhcp6ConfigResource = new Checkpoint.GaiaDhcp6Config("gaiaDhcp6ConfigResource", new()
    {
        ClientMode = "string",
        Debug = false,
        GaiaDhcp6ConfigId = "string",
        MemberId = "string",
        PrefixDelegationOptions = new Checkpoint.Inputs.GaiaDhcp6ConfigPrefixDelegationOptionsArgs
        {
            Interface = "string",
            Method = "string",
            SuffixPools = new[]
            {
                new Checkpoint.Inputs.GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPoolArgs
                {
                    End = "string",
                    Start = "string",
                    Type = "string",
                },
            },
        },
    });
    
    example, err := checkpoint.NewGaiaDhcp6Config(ctx, "gaiaDhcp6ConfigResource", &checkpoint.GaiaDhcp6ConfigArgs{
    	ClientMode:        pulumi.String("string"),
    	Debug:             pulumi.Bool(false),
    	GaiaDhcp6ConfigId: pulumi.String("string"),
    	MemberId:          pulumi.String("string"),
    	PrefixDelegationOptions: &checkpoint.GaiaDhcp6ConfigPrefixDelegationOptionsArgs{
    		Interface: pulumi.String("string"),
    		Method:    pulumi.String("string"),
    		SuffixPools: checkpoint.GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPoolArray{
    			&checkpoint.GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPoolArgs{
    				End:   pulumi.String("string"),
    				Start: pulumi.String("string"),
    				Type:  pulumi.String("string"),
    			},
    		},
    	},
    })
    
    resource "checkpoint_gaiadhcp6config" "gaiaDhcp6ConfigResource" {
      client_mode          = "string"
      debug                = false
      gaia_dhcp6_config_id = "string"
      member_id            = "string"
      prefix_delegation_options = {
        interface = "string"
        method    = "string"
        suffix_pools = [{
          "end"   = "string"
          "start" = "string"
          "type"  = "string"
        }]
      }
    }
    
    var gaiaDhcp6ConfigResource = new GaiaDhcp6Config("gaiaDhcp6ConfigResource", GaiaDhcp6ConfigArgs.builder()
        .clientMode("string")
        .debug(false)
        .gaiaDhcp6ConfigId("string")
        .memberId("string")
        .prefixDelegationOptions(GaiaDhcp6ConfigPrefixDelegationOptionsArgs.builder()
            .interface_("string")
            .method("string")
            .suffixPools(GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPoolArgs.builder()
                .end("string")
                .start("string")
                .type("string")
                .build())
            .build())
        .build());
    
    gaia_dhcp6_config_resource = checkpoint.GaiaDhcp6Config("gaiaDhcp6ConfigResource",
        client_mode="string",
        debug=False,
        gaia_dhcp6_config_id="string",
        member_id="string",
        prefix_delegation_options={
            "interface": "string",
            "method": "string",
            "suffix_pools": [{
                "end": "string",
                "start": "string",
                "type": "string",
            }],
        })
    
    const gaiaDhcp6ConfigResource = new checkpoint.GaiaDhcp6Config("gaiaDhcp6ConfigResource", {
        clientMode: "string",
        debug: false,
        gaiaDhcp6ConfigId: "string",
        memberId: "string",
        prefixDelegationOptions: {
            "interface": "string",
            method: "string",
            suffixPools: [{
                end: "string",
                start: "string",
                type: "string",
            }],
        },
    });
    
    type: checkpoint:GaiaDhcp6Config
    properties:
        clientMode: string
        debug: false
        gaiaDhcp6ConfigId: string
        memberId: string
        prefixDelegationOptions:
            interface: string
            method: string
            suffixPools:
                - end: string
                  start: string
                  type: string
    

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

    ClientMode string
    The working mode of the DHCPv6 client in this system.
    Debug bool
    Enable debug logging for this resource.
    GaiaDhcp6ConfigId string
    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
    PrefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptions
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    ClientMode string
    The working mode of the DHCPv6 client in this system.
    Debug bool
    Enable debug logging for this resource.
    GaiaDhcp6ConfigId string
    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
    PrefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptionsArgs
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    client_mode string
    The working mode of the DHCPv6 client in this system.
    debug bool
    Enable debug logging for this resource.
    gaia_dhcp6_config_id string
    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
    prefix_delegation_options object
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    clientMode String
    The working mode of the DHCPv6 client in this system.
    debug Boolean
    Enable debug logging for this resource.
    gaiaDhcp6ConfigId String
    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
    prefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptions
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    clientMode string
    The working mode of the DHCPv6 client in this system.
    debug boolean
    Enable debug logging for this resource.
    gaiaDhcp6ConfigId string
    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
    prefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptions
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    client_mode str
    The working mode of the DHCPv6 client in this system.
    debug bool
    Enable debug logging for this resource.
    gaia_dhcp6_config_id str
    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
    prefix_delegation_options GaiaDhcp6ConfigPrefixDelegationOptionsArgs
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    clientMode String
    The working mode of the DHCPv6 client in this system.
    debug Boolean
    Enable debug logging for this resource.
    gaiaDhcp6ConfigId String
    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
    prefixDelegationOptions Property Map
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.

    Outputs

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

    Get an existing GaiaDhcp6Config 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?: GaiaDhcp6ConfigState, opts?: CustomResourceOptions): GaiaDhcp6Config
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            client_mode: Optional[str] = None,
            debug: Optional[bool] = None,
            gaia_dhcp6_config_id: Optional[str] = None,
            member_id: Optional[str] = None,
            prefix_delegation_options: Optional[GaiaDhcp6ConfigPrefixDelegationOptionsArgs] = None) -> GaiaDhcp6Config
    func GetGaiaDhcp6Config(ctx *Context, name string, id IDInput, state *GaiaDhcp6ConfigState, opts ...ResourceOption) (*GaiaDhcp6Config, error)
    public static GaiaDhcp6Config Get(string name, Input<string> id, GaiaDhcp6ConfigState? state, CustomResourceOptions? opts = null)
    public static GaiaDhcp6Config get(String name, Output<String> id, GaiaDhcp6ConfigState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaDhcp6Config    get:      id: ${id}
    import {
      to = checkpoint_gaiadhcp6config.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:
    ClientMode string
    The working mode of the DHCPv6 client in this system.
    Debug bool
    Enable debug logging for this resource.
    GaiaDhcp6ConfigId string
    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
    PrefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptions
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    ClientMode string
    The working mode of the DHCPv6 client in this system.
    Debug bool
    Enable debug logging for this resource.
    GaiaDhcp6ConfigId string
    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
    PrefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptionsArgs
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    client_mode string
    The working mode of the DHCPv6 client in this system.
    debug bool
    Enable debug logging for this resource.
    gaia_dhcp6_config_id string
    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
    prefix_delegation_options object
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    clientMode String
    The working mode of the DHCPv6 client in this system.
    debug Boolean
    Enable debug logging for this resource.
    gaiaDhcp6ConfigId String
    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
    prefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptions
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    clientMode string
    The working mode of the DHCPv6 client in this system.
    debug boolean
    Enable debug logging for this resource.
    gaiaDhcp6ConfigId string
    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
    prefixDelegationOptions GaiaDhcp6ConfigPrefixDelegationOptions
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    client_mode str
    The working mode of the DHCPv6 client in this system.
    debug bool
    Enable debug logging for this resource.
    gaia_dhcp6_config_id str
    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
    prefix_delegation_options GaiaDhcp6ConfigPrefixDelegationOptionsArgs
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.
    clientMode String
    The working mode of the DHCPv6 client in this system.
    debug Boolean
    Enable debug logging for this resource.
    gaiaDhcp6ConfigId String
    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
    prefixDelegationOptions Property Map
    General configuration for the prefix-delegation feature. prefix_delegation_options blocks are documented below.

    Supporting Types

    GaiaDhcp6ConfigPrefixDelegationOptions, GaiaDhcp6ConfigPrefixDelegationOptionsArgs

    Interface string
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    Method string
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    SuffixPools List<GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPool>
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.
    Interface string
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    Method string
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    SuffixPools []GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPool
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.
    interface string
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    method string
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    suffix_pools list(object)
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.
    interface_ String
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    method String
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    suffixPools List<GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPool>
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.
    interface string
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    method string
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    suffixPools GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPool[]
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.
    interface str
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    method str
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    suffix_pools Sequence[GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPool]
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.
    interface String
    The interface on which to send prefix-delegation request packets to the prefix-delegation DHCP server.
    method String
    The method of performing the delegation of the received subnets. Each method balances automation with granularity. Manual - Only configure client interfaces set to receive IPv6 via Prefix-Delegation. Router Discovery - In addition to IPv6, also automatically configure Router Discovery protocol on configured interfaces. DHCPv6 - In addition to IPv6, also automatically configure the DHCPv6 Server feature on the new subnets and configure the Router Discory protocol with Managed Configuration flag on.
    suffixPools List<Property Map>
    Pools of IPv6 suffixes to use with DHCPv6 delegation method. These will be used to automatically configure IPv6 pools for each subnet in the DHCPv6 server feature. suffix_pools blocks are documented below.

    GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPool, GaiaDhcp6ConfigPrefixDelegationOptionsSuffixPoolArgs

    End string
    The last IPv6 address of the suffix range.
    Start string
    The first IPv6 address of the suffix range.
    Type string
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.
    End string
    The last IPv6 address of the suffix range.
    Start string
    The first IPv6 address of the suffix range.
    Type string
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.
    end string
    The last IPv6 address of the suffix range.
    start string
    The first IPv6 address of the suffix range.
    type string
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.
    end String
    The last IPv6 address of the suffix range.
    start String
    The first IPv6 address of the suffix range.
    type String
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.
    end string
    The last IPv6 address of the suffix range.
    start string
    The first IPv6 address of the suffix range.
    type string
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.
    end str
    The last IPv6 address of the suffix range.
    start str
    The first IPv6 address of the suffix range.
    type str
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.
    end String
    The last IPv6 address of the suffix range.
    start String
    The first IPv6 address of the suffix range.
    type String
    Specifies whether to include or exclude this range of IPv6 suffixes in the IP pools.

    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