1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaDhcp6Server
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 Server.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaDhcp6Server("example", {
        enabled: false,
        subnets: [{
            subnet: "2222:0:1::",
            prefix: 48,
            maxLease: 86400,
            defaultLease: 43200,
            enabled: true,
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaDhcp6Server("example",
        enabled=False,
        subnets=[{
            "subnet": "2222:0:1::",
            "prefix": 48,
            "max_lease": 86400,
            "default_lease": 43200,
            "enabled": True,
        }])
    
    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.NewGaiaDhcp6Server(ctx, "example", &checkpoint.GaiaDhcp6ServerArgs{
    			Enabled: pulumi.Bool(false),
    			Subnets: checkpoint.GaiaDhcp6ServerSubnetArray{
    				&checkpoint.GaiaDhcp6ServerSubnetArgs{
    					Subnet:       pulumi.String("2222:0:1::"),
    					Prefix:       pulumi.Float64(48),
    					MaxLease:     pulumi.Float64(86400),
    					DefaultLease: pulumi.Float64(43200),
    					Enabled:      pulumi.Bool(true),
    				},
    			},
    		})
    		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.GaiaDhcp6Server("example", new()
        {
            Enabled = false,
            Subnets = new[]
            {
                new Checkpoint.Inputs.GaiaDhcp6ServerSubnetArgs
                {
                    Subnet = "2222:0:1::",
                    Prefix = 48,
                    MaxLease = 86400,
                    DefaultLease = 43200,
                    Enabled = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaDhcp6Server;
    import com.pulumi.checkpoint.GaiaDhcp6ServerArgs;
    import com.pulumi.checkpoint.inputs.GaiaDhcp6ServerSubnetArgs;
    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 GaiaDhcp6Server("example", GaiaDhcp6ServerArgs.builder()
                .enabled(false)
                .subnets(GaiaDhcp6ServerSubnetArgs.builder()
                    .subnet("2222:0:1::")
                    .prefix(48.0)
                    .maxLease(86400.0)
                    .defaultLease(43200.0)
                    .enabled(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaDhcp6Server
        properties:
          enabled: false
          subnets:
            - subnet: '2222:0:1::'
              prefix: 48
              maxLease: 86400
              defaultLease: 43200
              enabled: true
    
    Example coming soon!
    

    Create GaiaDhcp6Server Resource

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

    Constructor syntax

    new GaiaDhcp6Server(name: string, args?: GaiaDhcp6ServerArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaDhcp6Server(resource_name: str,
                        args: Optional[GaiaDhcp6ServerArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaDhcp6Server(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        debug: Optional[bool] = None,
                        enabled: Optional[bool] = None,
                        gaia_dhcp6_server_id: Optional[str] = None,
                        member_id: Optional[str] = None,
                        subnets: Optional[Sequence[GaiaDhcp6ServerSubnetArgs]] = None)
    func NewGaiaDhcp6Server(ctx *Context, name string, args *GaiaDhcp6ServerArgs, opts ...ResourceOption) (*GaiaDhcp6Server, error)
    public GaiaDhcp6Server(string name, GaiaDhcp6ServerArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaDhcp6Server(String name, GaiaDhcp6ServerArgs args)
    public GaiaDhcp6Server(String name, GaiaDhcp6ServerArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaDhcp6Server
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiadhcp6server" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaDhcp6ServerArgs
    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 GaiaDhcp6ServerArgs
    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 GaiaDhcp6ServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaDhcp6ServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaDhcp6ServerArgs
    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 gaiaDhcp6ServerResource = new Checkpoint.GaiaDhcp6Server("gaiaDhcp6ServerResource", new()
    {
        Debug = false,
        Enabled = false,
        GaiaDhcp6ServerId = "string",
        MemberId = "string",
        Subnets = new[]
        {
            new Checkpoint.Inputs.GaiaDhcp6ServerSubnetArgs
            {
                DefaultLease = 0,
                Dns = new Checkpoint.Inputs.GaiaDhcp6ServerSubnetDnsArgs
                {
                    DomainName = "string",
                    Primary = "string",
                    Secondary = "string",
                    Tertiary = "string",
                },
                Enabled = false,
                IpPools = new[]
                {
                    new Checkpoint.Inputs.GaiaDhcp6ServerSubnetIpPoolArgs
                    {
                        Enabled = false,
                        End = "string",
                        Include = "string",
                        Start = "string",
                    },
                },
                MaxLease = 0,
                Prefix = 0,
                Subnet = "string",
            },
        },
    });
    
    example, err := checkpoint.NewGaiaDhcp6Server(ctx, "gaiaDhcp6ServerResource", &checkpoint.GaiaDhcp6ServerArgs{
    	Debug:             pulumi.Bool(false),
    	Enabled:           pulumi.Bool(false),
    	GaiaDhcp6ServerId: pulumi.String("string"),
    	MemberId:          pulumi.String("string"),
    	Subnets: checkpoint.GaiaDhcp6ServerSubnetArray{
    		&checkpoint.GaiaDhcp6ServerSubnetArgs{
    			DefaultLease: pulumi.Float64(0),
    			Dns: &checkpoint.GaiaDhcp6ServerSubnetDnsArgs{
    				DomainName: pulumi.String("string"),
    				Primary:    pulumi.String("string"),
    				Secondary:  pulumi.String("string"),
    				Tertiary:   pulumi.String("string"),
    			},
    			Enabled: pulumi.Bool(false),
    			IpPools: checkpoint.GaiaDhcp6ServerSubnetIpPoolArray{
    				&checkpoint.GaiaDhcp6ServerSubnetIpPoolArgs{
    					Enabled: pulumi.Bool(false),
    					End:     pulumi.String("string"),
    					Include: pulumi.String("string"),
    					Start:   pulumi.String("string"),
    				},
    			},
    			MaxLease: pulumi.Float64(0),
    			Prefix:   pulumi.Float64(0),
    			Subnet:   pulumi.String("string"),
    		},
    	},
    })
    
    resource "checkpoint_gaiadhcp6server" "gaiaDhcp6ServerResource" {
      debug                = false
      enabled              = false
      gaia_dhcp6_server_id = "string"
      member_id            = "string"
      subnets {
        default_lease = 0
        dns = {
          domain_name = "string"
          primary     = "string"
          secondary   = "string"
          tertiary    = "string"
        }
        enabled = false
        ip_pools {
          enabled = false
          end     = "string"
          include = "string"
          start   = "string"
        }
        max_lease = 0
        prefix    = 0
        subnet    = "string"
      }
    }
    
    var gaiaDhcp6ServerResource = new GaiaDhcp6Server("gaiaDhcp6ServerResource", GaiaDhcp6ServerArgs.builder()
        .debug(false)
        .enabled(false)
        .gaiaDhcp6ServerId("string")
        .memberId("string")
        .subnets(GaiaDhcp6ServerSubnetArgs.builder()
            .defaultLease(0.0)
            .dns(GaiaDhcp6ServerSubnetDnsArgs.builder()
                .domainName("string")
                .primary("string")
                .secondary("string")
                .tertiary("string")
                .build())
            .enabled(false)
            .ipPools(GaiaDhcp6ServerSubnetIpPoolArgs.builder()
                .enabled(false)
                .end("string")
                .include("string")
                .start("string")
                .build())
            .maxLease(0.0)
            .prefix(0.0)
            .subnet("string")
            .build())
        .build());
    
    gaia_dhcp6_server_resource = checkpoint.GaiaDhcp6Server("gaiaDhcp6ServerResource",
        debug=False,
        enabled=False,
        gaia_dhcp6_server_id="string",
        member_id="string",
        subnets=[{
            "default_lease": float(0),
            "dns": {
                "domain_name": "string",
                "primary": "string",
                "secondary": "string",
                "tertiary": "string",
            },
            "enabled": False,
            "ip_pools": [{
                "enabled": False,
                "end": "string",
                "include": "string",
                "start": "string",
            }],
            "max_lease": float(0),
            "prefix": float(0),
            "subnet": "string",
        }])
    
    const gaiaDhcp6ServerResource = new checkpoint.GaiaDhcp6Server("gaiaDhcp6ServerResource", {
        debug: false,
        enabled: false,
        gaiaDhcp6ServerId: "string",
        memberId: "string",
        subnets: [{
            defaultLease: 0,
            dns: {
                domainName: "string",
                primary: "string",
                secondary: "string",
                tertiary: "string",
            },
            enabled: false,
            ipPools: [{
                enabled: false,
                end: "string",
                include: "string",
                start: "string",
            }],
            maxLease: 0,
            prefix: 0,
            subnet: "string",
        }],
    });
    
    type: checkpoint:GaiaDhcp6Server
    properties:
        debug: false
        enabled: false
        gaiaDhcp6ServerId: string
        memberId: string
        subnets:
            - defaultLease: 0
              dns:
                domainName: string
                primary: string
                secondary: string
                tertiary: string
              enabled: false
              ipPools:
                - enabled: false
                  end: string
                  include: string
                  start: string
              maxLease: 0
              prefix: 0
              subnet: string
    

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

    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    DHCPv6 server status
    GaiaDhcp6ServerId 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
    Subnets List<GaiaDhcp6ServerSubnet>
    Subnets subnets blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    DHCPv6 server status
    GaiaDhcp6ServerId 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
    Subnets []GaiaDhcp6ServerSubnetArgs
    Subnets subnets blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCPv6 server status
    gaia_dhcp6_server_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
    subnets list(object)
    Subnets subnets blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCPv6 server status
    gaiaDhcp6ServerId 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
    subnets List<GaiaDhcp6ServerSubnet>
    Subnets subnets blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    DHCPv6 server status
    gaiaDhcp6ServerId 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
    subnets GaiaDhcp6ServerSubnet[]
    Subnets subnets blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCPv6 server status
    gaia_dhcp6_server_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
    subnets Sequence[GaiaDhcp6ServerSubnetArgs]
    Subnets subnets blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCPv6 server status
    gaiaDhcp6ServerId 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
    subnets List<Property Map>
    Subnets subnets blocks are documented below.

    Outputs

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

    Get an existing GaiaDhcp6Server 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?: GaiaDhcp6ServerState, opts?: CustomResourceOptions): GaiaDhcp6Server
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            enabled: Optional[bool] = None,
            gaia_dhcp6_server_id: Optional[str] = None,
            member_id: Optional[str] = None,
            subnets: Optional[Sequence[GaiaDhcp6ServerSubnetArgs]] = None) -> GaiaDhcp6Server
    func GetGaiaDhcp6Server(ctx *Context, name string, id IDInput, state *GaiaDhcp6ServerState, opts ...ResourceOption) (*GaiaDhcp6Server, error)
    public static GaiaDhcp6Server Get(string name, Input<string> id, GaiaDhcp6ServerState? state, CustomResourceOptions? opts = null)
    public static GaiaDhcp6Server get(String name, Output<String> id, GaiaDhcp6ServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaDhcp6Server    get:      id: ${id}
    import {
      to = checkpoint_gaiadhcp6server.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.
    Enabled bool
    DHCPv6 server status
    GaiaDhcp6ServerId 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
    Subnets List<GaiaDhcp6ServerSubnet>
    Subnets subnets blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    DHCPv6 server status
    GaiaDhcp6ServerId 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
    Subnets []GaiaDhcp6ServerSubnetArgs
    Subnets subnets blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCPv6 server status
    gaia_dhcp6_server_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
    subnets list(object)
    Subnets subnets blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCPv6 server status
    gaiaDhcp6ServerId 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
    subnets List<GaiaDhcp6ServerSubnet>
    Subnets subnets blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    DHCPv6 server status
    gaiaDhcp6ServerId 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
    subnets GaiaDhcp6ServerSubnet[]
    Subnets subnets blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCPv6 server status
    gaia_dhcp6_server_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
    subnets Sequence[GaiaDhcp6ServerSubnetArgs]
    Subnets subnets blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCPv6 server status
    gaiaDhcp6ServerId 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
    subnets List<Property Map>
    Subnets subnets blocks are documented below.

    Supporting Types

    GaiaDhcp6ServerSubnet, GaiaDhcp6ServerSubnetArgs

    DefaultLease double
    The default lease that the server allocates, in seconds.
    Dns GaiaDhcp6ServerSubnetDns
    DNS configuration. dns blocks are documented below.
    Enabled bool
    Enable DHCP on this subnet.
    IpPools List<GaiaDhcp6ServerSubnetIpPool>
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    MaxLease double
    The longest lease that the server can allocate, in seconds.
    Prefix double
    Subnet prefix length.
    Subnet string
    Subnet name.
    DefaultLease float64
    The default lease that the server allocates, in seconds.
    Dns GaiaDhcp6ServerSubnetDns
    DNS configuration. dns blocks are documented below.
    Enabled bool
    Enable DHCP on this subnet.
    IpPools []GaiaDhcp6ServerSubnetIpPool
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    MaxLease float64
    The longest lease that the server can allocate, in seconds.
    Prefix float64
    Subnet prefix length.
    Subnet string
    Subnet name.
    default_lease number
    The default lease that the server allocates, in seconds.
    dns object
    DNS configuration. dns blocks are documented below.
    enabled bool
    Enable DHCP on this subnet.
    ip_pools list(object)
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    max_lease number
    The longest lease that the server can allocate, in seconds.
    prefix number
    Subnet prefix length.
    subnet string
    Subnet name.
    defaultLease Double
    The default lease that the server allocates, in seconds.
    dns GaiaDhcp6ServerSubnetDns
    DNS configuration. dns blocks are documented below.
    enabled Boolean
    Enable DHCP on this subnet.
    ipPools List<GaiaDhcp6ServerSubnetIpPool>
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    maxLease Double
    The longest lease that the server can allocate, in seconds.
    prefix Double
    Subnet prefix length.
    subnet String
    Subnet name.
    defaultLease number
    The default lease that the server allocates, in seconds.
    dns GaiaDhcp6ServerSubnetDns
    DNS configuration. dns blocks are documented below.
    enabled boolean
    Enable DHCP on this subnet.
    ipPools GaiaDhcp6ServerSubnetIpPool[]
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    maxLease number
    The longest lease that the server can allocate, in seconds.
    prefix number
    Subnet prefix length.
    subnet string
    Subnet name.
    default_lease float
    The default lease that the server allocates, in seconds.
    dns GaiaDhcp6ServerSubnetDns
    DNS configuration. dns blocks are documented below.
    enabled bool
    Enable DHCP on this subnet.
    ip_pools Sequence[GaiaDhcp6ServerSubnetIpPool]
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    max_lease float
    The longest lease that the server can allocate, in seconds.
    prefix float
    Subnet prefix length.
    subnet str
    Subnet name.
    defaultLease Number
    The default lease that the server allocates, in seconds.
    dns Property Map
    DNS configuration. dns blocks are documented below.
    enabled Boolean
    Enable DHCP on this subnet.
    ipPools List<Property Map>
    Range of IPv6 addresses that the server assigns to hosts. ip_pools blocks are documented below.
    maxLease Number
    The longest lease that the server can allocate, in seconds.
    prefix Number
    Subnet prefix length.
    subnet String
    Subnet name.

    GaiaDhcp6ServerSubnetDns, GaiaDhcp6ServerSubnetDnsArgs

    DomainName string
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    Primary string
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    Secondary string
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    Tertiary string
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.
    DomainName string
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    Primary string
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    Secondary string
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    Tertiary string
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.
    domain_name string
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    primary string
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary string
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    tertiary string
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.
    domainName String
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    primary String
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary String
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    tertiary String
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.
    domainName string
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    primary string
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary string
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    tertiary string
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.
    domain_name str
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    primary str
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary str
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    tertiary str
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.
    domainName String
    The domain name of the IPv6 subnet. If not exist, empty string will be returned.
    primary String
    The IPv6 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary String
    The IPv6 address of the Secondary DNS server for the DHCP clients (to use if the primary DNS server does not respond). If not exist, empty string will be returned.
    tertiary String
    The IPv6 address of the Tertiary DNS server for the DHCP clients (to use if the primary and secondary DNS servers do not respond). If not exist, empty string will be returned.

    GaiaDhcp6ServerSubnetIpPool, GaiaDhcp6ServerSubnetIpPoolArgs

    Enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    End string
    The last IPv6 address of the range.
    Include string
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    Start string
    The first IPv6 address of the range.
    Enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    End string
    The last IPv6 address of the range.
    Include string
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    Start string
    The first IPv6 address of the range.
    enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    end string
    The last IPv6 address of the range.
    include string
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    start string
    The first IPv6 address of the range.
    enabled Boolean
    Enables or disables the DHCP Server for this subnet IP pool.
    end String
    The last IPv6 address of the range.
    include String
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    start String
    The first IPv6 address of the range.
    enabled boolean
    Enables or disables the DHCP Server for this subnet IP pool.
    end string
    The last IPv6 address of the range.
    include string
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    start string
    The first IPv6 address of the range.
    enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    end str
    The last IPv6 address of the range.
    include str
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    start str
    The first IPv6 address of the range.
    enabled Boolean
    Enables or disables the DHCP Server for this subnet IP pool.
    end String
    The last IPv6 address of the range.
    include String
    Specifies whether to include or exclude this range of IPv4 addresses in the IP pool.
    start String
    The first IPv6 address of the range.

    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