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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaDhcpServer("example", {
        enabled: false,
        subnets: [{
            subnet: "4.5.6.0",
            netmask: 24,
            maxLease: 86400,
            defaultLease: 43200,
            defaultGateway: "4.5.6.1",
            enabled: true,
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaDhcpServer("example",
        enabled=False,
        subnets=[{
            "subnet": "4.5.6.0",
            "netmask": 24,
            "max_lease": 86400,
            "default_lease": 43200,
            "default_gateway": "4.5.6.1",
            "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.NewGaiaDhcpServer(ctx, "example", &checkpoint.GaiaDhcpServerArgs{
    			Enabled: pulumi.Bool(false),
    			Subnets: checkpoint.GaiaDhcpServerSubnetArray{
    				&checkpoint.GaiaDhcpServerSubnetArgs{
    					Subnet:         pulumi.String("4.5.6.0"),
    					Netmask:        pulumi.Float64(24),
    					MaxLease:       pulumi.Float64(86400),
    					DefaultLease:   pulumi.Float64(43200),
    					DefaultGateway: pulumi.String("4.5.6.1"),
    					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.GaiaDhcpServer("example", new()
        {
            Enabled = false,
            Subnets = new[]
            {
                new Checkpoint.Inputs.GaiaDhcpServerSubnetArgs
                {
                    Subnet = "4.5.6.0",
                    Netmask = 24,
                    MaxLease = 86400,
                    DefaultLease = 43200,
                    DefaultGateway = "4.5.6.1",
                    Enabled = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaDhcpServer;
    import com.pulumi.checkpoint.GaiaDhcpServerArgs;
    import com.pulumi.checkpoint.inputs.GaiaDhcpServerSubnetArgs;
    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 GaiaDhcpServer("example", GaiaDhcpServerArgs.builder()
                .enabled(false)
                .subnets(GaiaDhcpServerSubnetArgs.builder()
                    .subnet("4.5.6.0")
                    .netmask(24.0)
                    .maxLease(86400.0)
                    .defaultLease(43200.0)
                    .defaultGateway("4.5.6.1")
                    .enabled(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaDhcpServer
        properties:
          enabled: false
          subnets:
            - subnet: 4.5.6.0
              netmask: 24
              maxLease: 86400
              defaultLease: 43200
              defaultGateway: 4.5.6.1
              enabled: true
    
    Example coming soon!
    

    Create GaiaDhcpServer Resource

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

    Constructor syntax

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

    Parameters

    name string
    The unique name of the resource.
    args GaiaDhcpServerArgs
    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 GaiaDhcpServerArgs
    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 GaiaDhcpServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaDhcpServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaDhcpServerArgs
    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 gaiaDhcpServerResource = new Checkpoint.GaiaDhcpServer("gaiaDhcpServerResource", new()
    {
        Debug = false,
        Enabled = false,
        GaiaDhcpServerId = "string",
        MemberId = "string",
        Subnets = new[]
        {
            new Checkpoint.Inputs.GaiaDhcpServerSubnetArgs
            {
                DefaultGateway = "string",
                DefaultLease = 0,
                Dns = new Checkpoint.Inputs.GaiaDhcpServerSubnetDnsArgs
                {
                    DomainName = "string",
                    Primary = "string",
                    Secondary = "string",
                    Tertiary = "string",
                },
                Enabled = false,
                IpPools = new[]
                {
                    new Checkpoint.Inputs.GaiaDhcpServerSubnetIpPoolArgs
                    {
                        Enabled = false,
                        End = "string",
                        Include = "string",
                        Start = "string",
                    },
                },
                MaxLease = 0,
                Netmask = 0,
                Subnet = "string",
            },
        },
        VirtualSystemId = 0,
    });
    
    example, err := checkpoint.NewGaiaDhcpServer(ctx, "gaiaDhcpServerResource", &checkpoint.GaiaDhcpServerArgs{
    	Debug:            pulumi.Bool(false),
    	Enabled:          pulumi.Bool(false),
    	GaiaDhcpServerId: pulumi.String("string"),
    	MemberId:         pulumi.String("string"),
    	Subnets: checkpoint.GaiaDhcpServerSubnetArray{
    		&checkpoint.GaiaDhcpServerSubnetArgs{
    			DefaultGateway: pulumi.String("string"),
    			DefaultLease:   pulumi.Float64(0),
    			Dns: &checkpoint.GaiaDhcpServerSubnetDnsArgs{
    				DomainName: pulumi.String("string"),
    				Primary:    pulumi.String("string"),
    				Secondary:  pulumi.String("string"),
    				Tertiary:   pulumi.String("string"),
    			},
    			Enabled: pulumi.Bool(false),
    			IpPools: checkpoint.GaiaDhcpServerSubnetIpPoolArray{
    				&checkpoint.GaiaDhcpServerSubnetIpPoolArgs{
    					Enabled: pulumi.Bool(false),
    					End:     pulumi.String("string"),
    					Include: pulumi.String("string"),
    					Start:   pulumi.String("string"),
    				},
    			},
    			MaxLease: pulumi.Float64(0),
    			Netmask:  pulumi.Float64(0),
    			Subnet:   pulumi.String("string"),
    		},
    	},
    	VirtualSystemId: pulumi.Float64(0),
    })
    
    resource "checkpoint_gaiadhcpserver" "gaiaDhcpServerResource" {
      debug               = false
      enabled             = false
      gaia_dhcp_server_id = "string"
      member_id           = "string"
      subnets {
        default_gateway = "string"
        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
        netmask   = 0
        subnet    = "string"
      }
      virtual_system_id = 0
    }
    
    var gaiaDhcpServerResource = new GaiaDhcpServer("gaiaDhcpServerResource", GaiaDhcpServerArgs.builder()
        .debug(false)
        .enabled(false)
        .gaiaDhcpServerId("string")
        .memberId("string")
        .subnets(GaiaDhcpServerSubnetArgs.builder()
            .defaultGateway("string")
            .defaultLease(0.0)
            .dns(GaiaDhcpServerSubnetDnsArgs.builder()
                .domainName("string")
                .primary("string")
                .secondary("string")
                .tertiary("string")
                .build())
            .enabled(false)
            .ipPools(GaiaDhcpServerSubnetIpPoolArgs.builder()
                .enabled(false)
                .end("string")
                .include("string")
                .start("string")
                .build())
            .maxLease(0.0)
            .netmask(0.0)
            .subnet("string")
            .build())
        .virtualSystemId(0.0)
        .build());
    
    gaia_dhcp_server_resource = checkpoint.GaiaDhcpServer("gaiaDhcpServerResource",
        debug=False,
        enabled=False,
        gaia_dhcp_server_id="string",
        member_id="string",
        subnets=[{
            "default_gateway": "string",
            "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),
            "netmask": float(0),
            "subnet": "string",
        }],
        virtual_system_id=float(0))
    
    const gaiaDhcpServerResource = new checkpoint.GaiaDhcpServer("gaiaDhcpServerResource", {
        debug: false,
        enabled: false,
        gaiaDhcpServerId: "string",
        memberId: "string",
        subnets: [{
            defaultGateway: "string",
            defaultLease: 0,
            dns: {
                domainName: "string",
                primary: "string",
                secondary: "string",
                tertiary: "string",
            },
            enabled: false,
            ipPools: [{
                enabled: false,
                end: "string",
                include: "string",
                start: "string",
            }],
            maxLease: 0,
            netmask: 0,
            subnet: "string",
        }],
        virtualSystemId: 0,
    });
    
    type: checkpoint:GaiaDhcpServer
    properties:
        debug: false
        enabled: false
        gaiaDhcpServerId: string
        memberId: string
        subnets:
            - defaultGateway: string
              defaultLease: 0
              dns:
                domainName: string
                primary: string
                secondary: string
                tertiary: string
              enabled: false
              ipPools:
                - enabled: false
                  end: string
                  include: string
                  start: string
              maxLease: 0
              netmask: 0
              subnet: string
        virtualSystemId: 0
    

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

    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    DHCP server status
    GaiaDhcpServerId 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<GaiaDhcpServerSubnet>
    Subnets subnets blocks are documented below.
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    DHCP server status
    GaiaDhcpServerId 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 []GaiaDhcpServerSubnetArgs
    Subnets subnets blocks are documented below.
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCP server status
    gaia_dhcp_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.
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCP server status
    gaiaDhcpServerId 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<GaiaDhcpServerSubnet>
    Subnets subnets blocks are documented below.
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    DHCP server status
    gaiaDhcpServerId 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 GaiaDhcpServerSubnet[]
    Subnets subnets blocks are documented below.
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCP server status
    gaia_dhcp_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[GaiaDhcpServerSubnetArgs]
    Subnets subnets blocks are documented below.
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCP server status
    gaiaDhcpServerId 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.
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

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

    Get an existing GaiaDhcpServer 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?: GaiaDhcpServerState, opts?: CustomResourceOptions): GaiaDhcpServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            enabled: Optional[bool] = None,
            gaia_dhcp_server_id: Optional[str] = None,
            member_id: Optional[str] = None,
            subnets: Optional[Sequence[GaiaDhcpServerSubnetArgs]] = None,
            virtual_system_id: Optional[float] = None) -> GaiaDhcpServer
    func GetGaiaDhcpServer(ctx *Context, name string, id IDInput, state *GaiaDhcpServerState, opts ...ResourceOption) (*GaiaDhcpServer, error)
    public static GaiaDhcpServer Get(string name, Input<string> id, GaiaDhcpServerState? state, CustomResourceOptions? opts = null)
    public static GaiaDhcpServer get(String name, Output<String> id, GaiaDhcpServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaDhcpServer    get:      id: ${id}
    import {
      to = checkpoint_gaiadhcpserver.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
    DHCP server status
    GaiaDhcpServerId 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<GaiaDhcpServerSubnet>
    Subnets subnets blocks are documented below.
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    DHCP server status
    GaiaDhcpServerId 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 []GaiaDhcpServerSubnetArgs
    Subnets subnets blocks are documented below.
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCP server status
    gaia_dhcp_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.
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCP server status
    gaiaDhcpServerId 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<GaiaDhcpServerSubnet>
    Subnets subnets blocks are documented below.
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    DHCP server status
    gaiaDhcpServerId 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 GaiaDhcpServerSubnet[]
    Subnets subnets blocks are documented below.
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    enabled bool
    DHCP server status
    gaia_dhcp_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[GaiaDhcpServerSubnetArgs]
    Subnets subnets blocks are documented below.
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    DHCP server status
    gaiaDhcpServerId 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.
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Supporting Types

    GaiaDhcpServerSubnet, GaiaDhcpServerSubnetArgs

    DefaultGateway string
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    DefaultLease double
    The default lease that the server allocates, in seconds.
    Dns GaiaDhcpServerSubnetDns
    DNS configuration. dns blocks are documented below.
    Enabled bool
    Enable DHCP on this subnet.
    IpPools List<GaiaDhcpServerSubnetIpPool>
    Range of IPv4 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.
    Netmask double
    Subnet mask.
    Subnet string
    Subnet name.
    DefaultGateway string
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    DefaultLease float64
    The default lease that the server allocates, in seconds.
    Dns GaiaDhcpServerSubnetDns
    DNS configuration. dns blocks are documented below.
    Enabled bool
    Enable DHCP on this subnet.
    IpPools []GaiaDhcpServerSubnetIpPool
    Range of IPv4 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.
    Netmask float64
    Subnet mask.
    Subnet string
    Subnet name.
    default_gateway string
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    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 IPv4 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.
    netmask number
    Subnet mask.
    subnet string
    Subnet name.
    defaultGateway String
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    defaultLease Double
    The default lease that the server allocates, in seconds.
    dns GaiaDhcpServerSubnetDns
    DNS configuration. dns blocks are documented below.
    enabled Boolean
    Enable DHCP on this subnet.
    ipPools List<GaiaDhcpServerSubnetIpPool>
    Range of IPv4 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.
    netmask Double
    Subnet mask.
    subnet String
    Subnet name.
    defaultGateway string
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    defaultLease number
    The default lease that the server allocates, in seconds.
    dns GaiaDhcpServerSubnetDns
    DNS configuration. dns blocks are documented below.
    enabled boolean
    Enable DHCP on this subnet.
    ipPools GaiaDhcpServerSubnetIpPool[]
    Range of IPv4 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.
    netmask number
    Subnet mask.
    subnet string
    Subnet name.
    default_gateway str
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    default_lease float
    The default lease that the server allocates, in seconds.
    dns GaiaDhcpServerSubnetDns
    DNS configuration. dns blocks are documented below.
    enabled bool
    Enable DHCP on this subnet.
    ip_pools Sequence[GaiaDhcpServerSubnetIpPool]
    Range of IPv4 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.
    netmask float
    Subnet mask.
    subnet str
    Subnet name.
    defaultGateway String
    The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
    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 IPv4 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.
    netmask Number
    Subnet mask.
    subnet String
    Subnet name.

    GaiaDhcpServerSubnetDns, GaiaDhcpServerSubnetDnsArgs

    DomainName string
    The IPv4 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.
    Primary string
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    Secondary string
    The IPv4 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 IPv4 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 IPv4 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.
    Primary string
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    Secondary string
    The IPv4 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 IPv4 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 IPv4 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.
    primary string
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary string
    The IPv4 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 IPv4 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 IPv4 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.
    primary String
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary String
    The IPv4 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 IPv4 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 IPv4 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.
    primary string
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary string
    The IPv4 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 IPv4 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 IPv4 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.
    primary str
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary str
    The IPv4 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 IPv4 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 IPv4 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.
    primary String
    The IPv4 address of the Primary DNS server for the DHCP clients. If not exist, empty string will be returned.
    secondary String
    The IPv4 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 IPv4 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.

    GaiaDhcpServerSubnetIpPool, GaiaDhcpServerSubnetIpPoolArgs

    Enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    End string
    The last IPv4 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 IPv4 address of the range.
    Enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    End string
    The last IPv4 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 IPv4 address of the range.
    enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    end string
    The last IPv4 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 IPv4 address of the range.
    enabled Boolean
    Enables or disables the DHCP Server for this subnet IP pool.
    end String
    The last IPv4 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 IPv4 address of the range.
    enabled boolean
    Enables or disables the DHCP Server for this subnet IP pool.
    end string
    The last IPv4 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 IPv4 address of the range.
    enabled bool
    Enables or disables the DHCP Server for this subnet IP pool.
    end str
    The last IPv4 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 IPv4 address of the range.
    enabled Boolean
    Enables or disables the DHCP Server for this subnet IP pool.
    end String
    The last IPv4 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 IPv4 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