published on Monday, Jun 15, 2026 by checkpointsw
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
- Gaia
Dhcp stringServer Id - 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<Gaia
Dhcp Server Subnet> - Subnets subnets blocks are documented below.
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- DHCP server status
- Gaia
Dhcp stringServer Id - 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
[]Gaia
Dhcp Server Subnet Args - Subnets subnets blocks are documented below.
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- debug bool
- Enable debug logging for this resource.
- enabled bool
- DHCP server status
- gaia_
dhcp_ stringserver_ id - 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_ numberid - Virtual System ID. Relevant for VSNext setups
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- DHCP server status
- gaia
Dhcp StringServer Id - 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<Gaia
Dhcp Server Subnet> - Subnets subnets blocks are documented below.
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- DHCP server status
- gaia
Dhcp stringServer Id - 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
Gaia
Dhcp Server Subnet[] - Subnets subnets blocks are documented below.
- virtual
System numberId - Virtual System ID. Relevant for VSNext setups
- debug bool
- Enable debug logging for this resource.
- enabled bool
- DHCP server status
- gaia_
dhcp_ strserver_ id - 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[Gaia
Dhcp Server Subnet Args] - Subnets subnets blocks are documented below.
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- DHCP server status
- gaia
Dhcp StringServer Id - 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<Property Map>
- Subnets subnets blocks are documented below.
- virtual
System NumberId - 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) -> GaiaDhcpServerfunc 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.
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- DHCP server status
- Gaia
Dhcp stringServer Id - 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<Gaia
Dhcp Server Subnet> - Subnets subnets blocks are documented below.
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- DHCP server status
- Gaia
Dhcp stringServer Id - 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
[]Gaia
Dhcp Server Subnet Args - Subnets subnets blocks are documented below.
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- debug bool
- Enable debug logging for this resource.
- enabled bool
- DHCP server status
- gaia_
dhcp_ stringserver_ id - 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_ numberid - Virtual System ID. Relevant for VSNext setups
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- DHCP server status
- gaia
Dhcp StringServer Id - 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<Gaia
Dhcp Server Subnet> - Subnets subnets blocks are documented below.
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- DHCP server status
- gaia
Dhcp stringServer Id - 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
Gaia
Dhcp Server Subnet[] - Subnets subnets blocks are documented below.
- virtual
System numberId - Virtual System ID. Relevant for VSNext setups
- debug bool
- Enable debug logging for this resource.
- enabled bool
- DHCP server status
- gaia_
dhcp_ strserver_ id - 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[Gaia
Dhcp Server Subnet Args] - Subnets subnets blocks are documented below.
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- DHCP server status
- gaia
Dhcp StringServer Id - 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<Property Map>
- Subnets subnets blocks are documented below.
- virtual
System NumberId - Virtual System ID. Relevant for VSNext setups
Supporting Types
GaiaDhcpServerSubnet, GaiaDhcpServerSubnetArgs
- Default
Gateway string - The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
- Default
Lease double - The default lease that the server allocates, in seconds.
- Dns
Gaia
Dhcp Server Subnet Dns - DNS configuration. dns blocks are documented below.
- Enabled bool
- Enable DHCP on this subnet.
- Ip
Pools List<GaiaDhcp Server Subnet Ip Pool> - Range of IPv4 addresses that the server assigns to hosts. ip_pools blocks are documented below.
- Max
Lease double - The longest lease that the server can allocate, in seconds.
- Netmask double
- 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 float64 - The default lease that the server allocates, in seconds.
- Dns
Gaia
Dhcp Server Subnet Dns - DNS configuration. dns blocks are documented below.
- Enabled bool
- Enable DHCP on this subnet.
- Ip
Pools []GaiaDhcp Server Subnet Ip Pool - Range of IPv4 addresses that the server assigns to hosts. ip_pools blocks are documented below.
- Max
Lease 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.
- default
Gateway String - The IPv4 address of the default gateway for the DHCP clients. If not exist, empty string will be returned.
- default
Lease Double - The default lease that the server allocates, in seconds.
- dns
Gaia
Dhcp Server Subnet Dns - DNS configuration. dns blocks are documented below.
- enabled Boolean
- Enable DHCP on this subnet.
- ip
Pools List<GaiaDhcp Server Subnet Ip Pool> - Range of IPv4 addresses that the server assigns to hosts. ip_pools blocks are documented below.
- max
Lease Double - The longest lease that the server can allocate, in seconds.
- netmask Double
- 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
Gaia
Dhcp Server Subnet Dns - DNS configuration. dns blocks are documented below.
- enabled boolean
- Enable DHCP on this subnet.
- ip
Pools GaiaDhcp Server Subnet Ip Pool[] - 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.
- 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
Gaia
Dhcp Server Subnet Dns - DNS configuration. dns blocks are documented below.
- enabled bool
- Enable DHCP on this subnet.
- ip_
pools Sequence[GaiaDhcp Server Subnet Ip Pool] - 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.
- 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 Property Map
- DNS configuration. dns blocks are documented below.
- enabled Boolean
- Enable DHCP on this subnet.
- ip
Pools List<Property Map> - 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.
GaiaDhcpServerSubnetDns, GaiaDhcpServerSubnetDnsArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
GaiaDhcpServerSubnetIpPool, GaiaDhcpServerSubnetIpPoolArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw