published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Physical Interface.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaPhysicalInterface("example", {
name: "eth0",
enabled: true,
comments: "eth0 interface",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaPhysicalInterface("example",
name="eth0",
enabled=True,
comments="eth0 interface")
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.NewGaiaPhysicalInterface(ctx, "example", &checkpoint.GaiaPhysicalInterfaceArgs{
Name: pulumi.String("eth0"),
Enabled: pulumi.Bool(true),
Comments: pulumi.String("eth0 interface"),
})
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.GaiaPhysicalInterface("example", new()
{
Name = "eth0",
Enabled = true,
Comments = "eth0 interface",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaPhysicalInterface;
import com.pulumi.checkpoint.GaiaPhysicalInterfaceArgs;
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 GaiaPhysicalInterface("example", GaiaPhysicalInterfaceArgs.builder()
.name("eth0")
.enabled(true)
.comments("eth0 interface")
.build());
}
}
resources:
example:
type: checkpoint:GaiaPhysicalInterface
properties:
name: eth0
enabled: true
comments: eth0 interface
Example coming soon!
Create GaiaPhysicalInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaPhysicalInterface(name: string, args?: GaiaPhysicalInterfaceArgs, opts?: CustomResourceOptions);@overload
def GaiaPhysicalInterface(resource_name: str,
args: Optional[GaiaPhysicalInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaPhysicalInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
auto_negotiation: Optional[bool] = None,
comments: Optional[str] = None,
debug: Optional[bool] = None,
dhcp: Optional[GaiaPhysicalInterfaceDhcpArgs] = None,
dhcp6: Optional[GaiaPhysicalInterfaceDhcp6Args] = None,
duplex: Optional[str] = None,
enabled: Optional[bool] = None,
gaia_physical_interface_id: Optional[str] = None,
ip_conflicts: Optional[bool] = None,
ipv4_address: Optional[str] = None,
ipv4_mask_length: Optional[float] = None,
ipv6_address: Optional[str] = None,
ipv6_autoconfig: Optional[bool] = None,
ipv6_mask_length: Optional[float] = None,
mac_addr: Optional[str] = None,
member_id: Optional[str] = None,
monitor_mode: Optional[bool] = None,
mtu: Optional[float] = None,
name: Optional[str] = None,
rx_ringsize: Optional[float] = None,
sd_wan: Optional[GaiaPhysicalInterfaceSdWanArgs] = None,
speed: Optional[str] = None,
tx_ringsize: Optional[float] = None,
virtual_system_id: Optional[float] = None)func NewGaiaPhysicalInterface(ctx *Context, name string, args *GaiaPhysicalInterfaceArgs, opts ...ResourceOption) (*GaiaPhysicalInterface, error)public GaiaPhysicalInterface(string name, GaiaPhysicalInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public GaiaPhysicalInterface(String name, GaiaPhysicalInterfaceArgs args)
public GaiaPhysicalInterface(String name, GaiaPhysicalInterfaceArgs args, CustomResourceOptions options)
type: checkpoint:GaiaPhysicalInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiaphysicalinterface" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaPhysicalInterfaceArgs
- 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 GaiaPhysicalInterfaceArgs
- 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 GaiaPhysicalInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaPhysicalInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaPhysicalInterfaceArgs
- 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 gaiaPhysicalInterfaceResource = new Checkpoint.GaiaPhysicalInterface("gaiaPhysicalInterfaceResource", new()
{
AutoNegotiation = false,
Comments = "string",
Debug = false,
Dhcp = new Checkpoint.Inputs.GaiaPhysicalInterfaceDhcpArgs
{
Enabled = false,
Leasetime = "string",
ReacquireTimeout = "string",
Retry = "string",
ServerTimeout = "string",
},
Dhcp6 = new Checkpoint.Inputs.GaiaPhysicalInterfaceDhcp6Args
{
Enabled = false,
Leasetime = "string",
ReacquireTimeout = "string",
Retry = "string",
ServerTimeout = "string",
Using = "string",
},
Duplex = "string",
Enabled = false,
GaiaPhysicalInterfaceId = "string",
IpConflicts = false,
Ipv4Address = "string",
Ipv4MaskLength = 0,
Ipv6Address = "string",
Ipv6Autoconfig = false,
Ipv6MaskLength = 0,
MacAddr = "string",
MemberId = "string",
MonitorMode = false,
Mtu = 0,
Name = "string",
RxRingsize = 0,
SdWan = new Checkpoint.Inputs.GaiaPhysicalInterfaceSdWanArgs
{
Bandwidth = new Checkpoint.Inputs.GaiaPhysicalInterfaceSdWanBandwidthArgs
{
DownloadSpeed = "string",
UploadSpeed = "string",
},
CircuitId = "string",
Enabled = false,
Nat = new Checkpoint.Inputs.GaiaPhysicalInterfaceSdWanNatArgs
{
Enabled = false,
Ip = "string",
Ipv6 = "string",
},
NextHop = "string",
NextHopIpv6 = "string",
Tag = "string",
},
Speed = "string",
TxRingsize = 0,
VirtualSystemId = 0,
});
example, err := checkpoint.NewGaiaPhysicalInterface(ctx, "gaiaPhysicalInterfaceResource", &checkpoint.GaiaPhysicalInterfaceArgs{
AutoNegotiation: pulumi.Bool(false),
Comments: pulumi.String("string"),
Debug: pulumi.Bool(false),
Dhcp: &checkpoint.GaiaPhysicalInterfaceDhcpArgs{
Enabled: pulumi.Bool(false),
Leasetime: pulumi.String("string"),
ReacquireTimeout: pulumi.String("string"),
Retry: pulumi.String("string"),
ServerTimeout: pulumi.String("string"),
},
Dhcp6: &checkpoint.GaiaPhysicalInterfaceDhcp6Args{
Enabled: pulumi.Bool(false),
Leasetime: pulumi.String("string"),
ReacquireTimeout: pulumi.String("string"),
Retry: pulumi.String("string"),
ServerTimeout: pulumi.String("string"),
Using: pulumi.String("string"),
},
Duplex: pulumi.String("string"),
Enabled: pulumi.Bool(false),
GaiaPhysicalInterfaceId: pulumi.String("string"),
IpConflicts: pulumi.Bool(false),
Ipv4Address: pulumi.String("string"),
Ipv4MaskLength: pulumi.Float64(0),
Ipv6Address: pulumi.String("string"),
Ipv6Autoconfig: pulumi.Bool(false),
Ipv6MaskLength: pulumi.Float64(0),
MacAddr: pulumi.String("string"),
MemberId: pulumi.String("string"),
MonitorMode: pulumi.Bool(false),
Mtu: pulumi.Float64(0),
Name: pulumi.String("string"),
RxRingsize: pulumi.Float64(0),
SdWan: &checkpoint.GaiaPhysicalInterfaceSdWanArgs{
Bandwidth: &checkpoint.GaiaPhysicalInterfaceSdWanBandwidthArgs{
DownloadSpeed: pulumi.String("string"),
UploadSpeed: pulumi.String("string"),
},
CircuitId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Nat: &checkpoint.GaiaPhysicalInterfaceSdWanNatArgs{
Enabled: pulumi.Bool(false),
Ip: pulumi.String("string"),
Ipv6: pulumi.String("string"),
},
NextHop: pulumi.String("string"),
NextHopIpv6: pulumi.String("string"),
Tag: pulumi.String("string"),
},
Speed: pulumi.String("string"),
TxRingsize: pulumi.Float64(0),
VirtualSystemId: pulumi.Float64(0),
})
resource "checkpoint_gaiaphysicalinterface" "gaiaPhysicalInterfaceResource" {
auto_negotiation = false
comments = "string"
debug = false
dhcp = {
enabled = false
leasetime = "string"
reacquire_timeout = "string"
retry = "string"
server_timeout = "string"
}
dhcp6 = {
enabled = false
leasetime = "string"
reacquire_timeout = "string"
retry = "string"
server_timeout = "string"
using = "string"
}
duplex = "string"
enabled = false
gaia_physical_interface_id = "string"
ip_conflicts = false
ipv4_address = "string"
ipv4_mask_length = 0
ipv6_address = "string"
ipv6_autoconfig = false
ipv6_mask_length = 0
mac_addr = "string"
member_id = "string"
monitor_mode = false
mtu = 0
name = "string"
rx_ringsize = 0
sd_wan = {
bandwidth = {
download_speed = "string"
upload_speed = "string"
}
circuit_id = "string"
enabled = false
nat = {
enabled = false
ip = "string"
ipv6 = "string"
}
next_hop = "string"
next_hop_ipv6 = "string"
tag = "string"
}
speed = "string"
tx_ringsize = 0
virtual_system_id = 0
}
var gaiaPhysicalInterfaceResource = new GaiaPhysicalInterface("gaiaPhysicalInterfaceResource", GaiaPhysicalInterfaceArgs.builder()
.autoNegotiation(false)
.comments("string")
.debug(false)
.dhcp(GaiaPhysicalInterfaceDhcpArgs.builder()
.enabled(false)
.leasetime("string")
.reacquireTimeout("string")
.retry("string")
.serverTimeout("string")
.build())
.dhcp6(GaiaPhysicalInterfaceDhcp6Args.builder()
.enabled(false)
.leasetime("string")
.reacquireTimeout("string")
.retry("string")
.serverTimeout("string")
.using("string")
.build())
.duplex("string")
.enabled(false)
.gaiaPhysicalInterfaceId("string")
.ipConflicts(false)
.ipv4Address("string")
.ipv4MaskLength(0.0)
.ipv6Address("string")
.ipv6Autoconfig(false)
.ipv6MaskLength(0.0)
.macAddr("string")
.memberId("string")
.monitorMode(false)
.mtu(0.0)
.name("string")
.rxRingsize(0.0)
.sdWan(GaiaPhysicalInterfaceSdWanArgs.builder()
.bandwidth(GaiaPhysicalInterfaceSdWanBandwidthArgs.builder()
.downloadSpeed("string")
.uploadSpeed("string")
.build())
.circuitId("string")
.enabled(false)
.nat(GaiaPhysicalInterfaceSdWanNatArgs.builder()
.enabled(false)
.ip("string")
.ipv6("string")
.build())
.nextHop("string")
.nextHopIpv6("string")
.tag("string")
.build())
.speed("string")
.txRingsize(0.0)
.virtualSystemId(0.0)
.build());
gaia_physical_interface_resource = checkpoint.GaiaPhysicalInterface("gaiaPhysicalInterfaceResource",
auto_negotiation=False,
comments="string",
debug=False,
dhcp={
"enabled": False,
"leasetime": "string",
"reacquire_timeout": "string",
"retry": "string",
"server_timeout": "string",
},
dhcp6={
"enabled": False,
"leasetime": "string",
"reacquire_timeout": "string",
"retry": "string",
"server_timeout": "string",
"using": "string",
},
duplex="string",
enabled=False,
gaia_physical_interface_id="string",
ip_conflicts=False,
ipv4_address="string",
ipv4_mask_length=float(0),
ipv6_address="string",
ipv6_autoconfig=False,
ipv6_mask_length=float(0),
mac_addr="string",
member_id="string",
monitor_mode=False,
mtu=float(0),
name="string",
rx_ringsize=float(0),
sd_wan={
"bandwidth": {
"download_speed": "string",
"upload_speed": "string",
},
"circuit_id": "string",
"enabled": False,
"nat": {
"enabled": False,
"ip": "string",
"ipv6": "string",
},
"next_hop": "string",
"next_hop_ipv6": "string",
"tag": "string",
},
speed="string",
tx_ringsize=float(0),
virtual_system_id=float(0))
const gaiaPhysicalInterfaceResource = new checkpoint.GaiaPhysicalInterface("gaiaPhysicalInterfaceResource", {
autoNegotiation: false,
comments: "string",
debug: false,
dhcp: {
enabled: false,
leasetime: "string",
reacquireTimeout: "string",
retry: "string",
serverTimeout: "string",
},
dhcp6: {
enabled: false,
leasetime: "string",
reacquireTimeout: "string",
retry: "string",
serverTimeout: "string",
using: "string",
},
duplex: "string",
enabled: false,
gaiaPhysicalInterfaceId: "string",
ipConflicts: false,
ipv4Address: "string",
ipv4MaskLength: 0,
ipv6Address: "string",
ipv6Autoconfig: false,
ipv6MaskLength: 0,
macAddr: "string",
memberId: "string",
monitorMode: false,
mtu: 0,
name: "string",
rxRingsize: 0,
sdWan: {
bandwidth: {
downloadSpeed: "string",
uploadSpeed: "string",
},
circuitId: "string",
enabled: false,
nat: {
enabled: false,
ip: "string",
ipv6: "string",
},
nextHop: "string",
nextHopIpv6: "string",
tag: "string",
},
speed: "string",
txRingsize: 0,
virtualSystemId: 0,
});
type: checkpoint:GaiaPhysicalInterface
properties:
autoNegotiation: false
comments: string
debug: false
dhcp:
enabled: false
leasetime: string
reacquireTimeout: string
retry: string
serverTimeout: string
dhcp6:
enabled: false
leasetime: string
reacquireTimeout: string
retry: string
serverTimeout: string
using: string
duplex: string
enabled: false
gaiaPhysicalInterfaceId: string
ipConflicts: false
ipv4Address: string
ipv4MaskLength: 0
ipv6Address: string
ipv6Autoconfig: false
ipv6MaskLength: 0
macAddr: string
memberId: string
monitorMode: false
mtu: 0
name: string
rxRingsize: 0
sdWan:
bandwidth:
downloadSpeed: string
uploadSpeed: string
circuitId: string
enabled: false
nat:
enabled: false
ip: string
ipv6: string
nextHop: string
nextHopIpv6: string
tag: string
speed: string
txRingsize: 0
virtualSystemId: 0
GaiaPhysicalInterface 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 GaiaPhysicalInterface resource accepts the following input properties:
- Auto
Negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Dhcp
Gaia
Physical Interface Dhcp - DHCP configuration dhcp blocks are documented below.
- Dhcp6
Gaia
Physical Interface Dhcp6 - DHCPv6 configuration dhcp6 blocks are documented below.
- Duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- Enabled bool
- N/A
- Gaia
Physical stringInterface Id - Ip
Conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- Ipv4Address string
- N/A
- Ipv4Mask
Length double - N/A
- Ipv6Address string
- N/A
- Ipv6Autoconfig bool
- N/A
- Ipv6Mask
Length double - N/A
- Mac
Addr string - N/A
- 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
- Monitor
Mode bool - N/A
- Mtu double
- N/A
- Name string
- N/A
- Rx
Ringsize double - N/A
- Sd
Wan GaiaPhysical Interface Sd Wan - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- Speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- Tx
Ringsize double - N/A
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Auto
Negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Dhcp
Gaia
Physical Interface Dhcp Args - DHCP configuration dhcp blocks are documented below.
- Dhcp6
Gaia
Physical Interface Dhcp6Args - DHCPv6 configuration dhcp6 blocks are documented below.
- Duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- Enabled bool
- N/A
- Gaia
Physical stringInterface Id - Ip
Conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- Ipv4Address string
- N/A
- Ipv4Mask
Length float64 - N/A
- Ipv6Address string
- N/A
- Ipv6Autoconfig bool
- N/A
- Ipv6Mask
Length float64 - N/A
- Mac
Addr string - N/A
- 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
- Monitor
Mode bool - N/A
- Mtu float64
- N/A
- Name string
- N/A
- Rx
Ringsize float64 - N/A
- Sd
Wan GaiaPhysical Interface Sd Wan Args - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- Speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- Tx
Ringsize float64 - N/A
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- auto_
negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments string
- N/A
- debug bool
- Enable debug logging for this resource.
- dhcp object
- DHCP configuration dhcp blocks are documented below.
- dhcp6 object
- DHCPv6 configuration dhcp6 blocks are documented below.
- duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled bool
- N/A
- gaia_
physical_ stringinterface_ id - ip_
conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4_
address string - N/A
- ipv4_
mask_ numberlength - N/A
- ipv6_
address string - N/A
- ipv6_
autoconfig bool - N/A
- ipv6_
mask_ numberlength - N/A
- mac_
addr string - N/A
- 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
- monitor_
mode bool - N/A
- mtu number
- N/A
- name string
- N/A
- rx_
ringsize number - N/A
- sd_
wan object - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- tx_
ringsize number - N/A
- virtual_
system_ numberid - Virtual System ID. Relevant for VSNext setups
- auto
Negotiation Boolean - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- dhcp
Gaia
Physical Interface Dhcp - DHCP configuration dhcp blocks are documented below.
- dhcp6
Gaia
Physical Interface Dhcp6 - DHCPv6 configuration dhcp6 blocks are documented below.
- duplex String
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled Boolean
- N/A
- gaia
Physical StringInterface Id - ip
Conflicts Boolean - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4Address String
- N/A
- ipv4Mask
Length Double - N/A
- ipv6Address String
- N/A
- ipv6Autoconfig Boolean
- N/A
- ipv6Mask
Length Double - N/A
- mac
Addr String - N/A
- 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
- monitor
Mode Boolean - N/A
- mtu Double
- N/A
- name String
- N/A
- rx
Ringsize Double - N/A
- sd
Wan GaiaPhysical Interface Sd Wan - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed String
- Speed is not relevant when 'auto-negotiation' is enabled
- tx
Ringsize Double - N/A
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- auto
Negotiation boolean - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments string
- N/A
- debug boolean
- Enable debug logging for this resource.
- dhcp
Gaia
Physical Interface Dhcp - DHCP configuration dhcp blocks are documented below.
- dhcp6
Gaia
Physical Interface Dhcp6 - DHCPv6 configuration dhcp6 blocks are documented below.
- duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled boolean
- N/A
- gaia
Physical stringInterface Id - ip
Conflicts boolean - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4Address string
- N/A
- ipv4Mask
Length number - N/A
- ipv6Address string
- N/A
- ipv6Autoconfig boolean
- N/A
- ipv6Mask
Length number - N/A
- mac
Addr string - N/A
- 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
- monitor
Mode boolean - N/A
- mtu number
- N/A
- name string
- N/A
- rx
Ringsize number - N/A
- sd
Wan GaiaPhysical Interface Sd Wan - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- tx
Ringsize number - N/A
- virtual
System numberId - Virtual System ID. Relevant for VSNext setups
- auto_
negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments str
- N/A
- debug bool
- Enable debug logging for this resource.
- dhcp
Gaia
Physical Interface Dhcp Args - DHCP configuration dhcp blocks are documented below.
- dhcp6
Gaia
Physical Interface Dhcp6Args - DHCPv6 configuration dhcp6 blocks are documented below.
- duplex str
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled bool
- N/A
- gaia_
physical_ strinterface_ id - ip_
conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4_
address str - N/A
- ipv4_
mask_ floatlength - N/A
- ipv6_
address str - N/A
- ipv6_
autoconfig bool - N/A
- ipv6_
mask_ floatlength - N/A
- mac_
addr str - N/A
- 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
- monitor_
mode bool - N/A
- mtu float
- N/A
- name str
- N/A
- rx_
ringsize float - N/A
- sd_
wan GaiaPhysical Interface Sd Wan Args - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed str
- Speed is not relevant when 'auto-negotiation' is enabled
- tx_
ringsize float - N/A
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- auto
Negotiation Boolean - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- dhcp Property Map
- DHCP configuration dhcp blocks are documented below.
- dhcp6 Property Map
- DHCPv6 configuration dhcp6 blocks are documented below.
- duplex String
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled Boolean
- N/A
- gaia
Physical StringInterface Id - ip
Conflicts Boolean - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4Address String
- N/A
- ipv4Mask
Length Number - N/A
- ipv6Address String
- N/A
- ipv6Autoconfig Boolean
- N/A
- ipv6Mask
Length Number - N/A
- mac
Addr String - N/A
- 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
- monitor
Mode Boolean - N/A
- mtu Number
- N/A
- name String
- N/A
- rx
Ringsize Number - N/A
- sd
Wan Property Map - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed String
- Speed is not relevant when 'auto-negotiation' is enabled
- tx
Ringsize Number - N/A
- virtual
System NumberId - Virtual System ID. Relevant for VSNext setups
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaPhysicalInterface 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 GaiaPhysicalInterface Resource
Get an existing GaiaPhysicalInterface 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?: GaiaPhysicalInterfaceState, opts?: CustomResourceOptions): GaiaPhysicalInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_negotiation: Optional[bool] = None,
comments: Optional[str] = None,
debug: Optional[bool] = None,
dhcp: Optional[GaiaPhysicalInterfaceDhcpArgs] = None,
dhcp6: Optional[GaiaPhysicalInterfaceDhcp6Args] = None,
duplex: Optional[str] = None,
enabled: Optional[bool] = None,
gaia_physical_interface_id: Optional[str] = None,
ip_conflicts: Optional[bool] = None,
ipv4_address: Optional[str] = None,
ipv4_mask_length: Optional[float] = None,
ipv6_address: Optional[str] = None,
ipv6_autoconfig: Optional[bool] = None,
ipv6_mask_length: Optional[float] = None,
mac_addr: Optional[str] = None,
member_id: Optional[str] = None,
monitor_mode: Optional[bool] = None,
mtu: Optional[float] = None,
name: Optional[str] = None,
rx_ringsize: Optional[float] = None,
sd_wan: Optional[GaiaPhysicalInterfaceSdWanArgs] = None,
speed: Optional[str] = None,
tx_ringsize: Optional[float] = None,
virtual_system_id: Optional[float] = None) -> GaiaPhysicalInterfacefunc GetGaiaPhysicalInterface(ctx *Context, name string, id IDInput, state *GaiaPhysicalInterfaceState, opts ...ResourceOption) (*GaiaPhysicalInterface, error)public static GaiaPhysicalInterface Get(string name, Input<string> id, GaiaPhysicalInterfaceState? state, CustomResourceOptions? opts = null)public static GaiaPhysicalInterface get(String name, Output<String> id, GaiaPhysicalInterfaceState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaPhysicalInterface get: id: ${id}import {
to = checkpoint_gaiaphysicalinterface.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.
- Auto
Negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Dhcp
Gaia
Physical Interface Dhcp - DHCP configuration dhcp blocks are documented below.
- Dhcp6
Gaia
Physical Interface Dhcp6 - DHCPv6 configuration dhcp6 blocks are documented below.
- Duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- Enabled bool
- N/A
- Gaia
Physical stringInterface Id - Ip
Conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- Ipv4Address string
- N/A
- Ipv4Mask
Length double - N/A
- Ipv6Address string
- N/A
- Ipv6Autoconfig bool
- N/A
- Ipv6Mask
Length double - N/A
- Mac
Addr string - N/A
- 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
- Monitor
Mode bool - N/A
- Mtu double
- N/A
- Name string
- N/A
- Rx
Ringsize double - N/A
- Sd
Wan GaiaPhysical Interface Sd Wan - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- Speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- Tx
Ringsize double - N/A
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Auto
Negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Dhcp
Gaia
Physical Interface Dhcp Args - DHCP configuration dhcp blocks are documented below.
- Dhcp6
Gaia
Physical Interface Dhcp6Args - DHCPv6 configuration dhcp6 blocks are documented below.
- Duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- Enabled bool
- N/A
- Gaia
Physical stringInterface Id - Ip
Conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- Ipv4Address string
- N/A
- Ipv4Mask
Length float64 - N/A
- Ipv6Address string
- N/A
- Ipv6Autoconfig bool
- N/A
- Ipv6Mask
Length float64 - N/A
- Mac
Addr string - N/A
- 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
- Monitor
Mode bool - N/A
- Mtu float64
- N/A
- Name string
- N/A
- Rx
Ringsize float64 - N/A
- Sd
Wan GaiaPhysical Interface Sd Wan Args - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- Speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- Tx
Ringsize float64 - N/A
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- auto_
negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments string
- N/A
- debug bool
- Enable debug logging for this resource.
- dhcp object
- DHCP configuration dhcp blocks are documented below.
- dhcp6 object
- DHCPv6 configuration dhcp6 blocks are documented below.
- duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled bool
- N/A
- gaia_
physical_ stringinterface_ id - ip_
conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4_
address string - N/A
- ipv4_
mask_ numberlength - N/A
- ipv6_
address string - N/A
- ipv6_
autoconfig bool - N/A
- ipv6_
mask_ numberlength - N/A
- mac_
addr string - N/A
- 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
- monitor_
mode bool - N/A
- mtu number
- N/A
- name string
- N/A
- rx_
ringsize number - N/A
- sd_
wan object - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- tx_
ringsize number - N/A
- virtual_
system_ numberid - Virtual System ID. Relevant for VSNext setups
- auto
Negotiation Boolean - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- dhcp
Gaia
Physical Interface Dhcp - DHCP configuration dhcp blocks are documented below.
- dhcp6
Gaia
Physical Interface Dhcp6 - DHCPv6 configuration dhcp6 blocks are documented below.
- duplex String
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled Boolean
- N/A
- gaia
Physical StringInterface Id - ip
Conflicts Boolean - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4Address String
- N/A
- ipv4Mask
Length Double - N/A
- ipv6Address String
- N/A
- ipv6Autoconfig Boolean
- N/A
- ipv6Mask
Length Double - N/A
- mac
Addr String - N/A
- 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
- monitor
Mode Boolean - N/A
- mtu Double
- N/A
- name String
- N/A
- rx
Ringsize Double - N/A
- sd
Wan GaiaPhysical Interface Sd Wan - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed String
- Speed is not relevant when 'auto-negotiation' is enabled
- tx
Ringsize Double - N/A
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- auto
Negotiation boolean - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments string
- N/A
- debug boolean
- Enable debug logging for this resource.
- dhcp
Gaia
Physical Interface Dhcp - DHCP configuration dhcp blocks are documented below.
- dhcp6
Gaia
Physical Interface Dhcp6 - DHCPv6 configuration dhcp6 blocks are documented below.
- duplex string
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled boolean
- N/A
- gaia
Physical stringInterface Id - ip
Conflicts boolean - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4Address string
- N/A
- ipv4Mask
Length number - N/A
- ipv6Address string
- N/A
- ipv6Autoconfig boolean
- N/A
- ipv6Mask
Length number - N/A
- mac
Addr string - N/A
- 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
- monitor
Mode boolean - N/A
- mtu number
- N/A
- name string
- N/A
- rx
Ringsize number - N/A
- sd
Wan GaiaPhysical Interface Sd Wan - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed string
- Speed is not relevant when 'auto-negotiation' is enabled
- tx
Ringsize number - N/A
- virtual
System numberId - Virtual System ID. Relevant for VSNext setups
- auto_
negotiation bool - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments str
- N/A
- debug bool
- Enable debug logging for this resource.
- dhcp
Gaia
Physical Interface Dhcp Args - DHCP configuration dhcp blocks are documented below.
- dhcp6
Gaia
Physical Interface Dhcp6Args - DHCPv6 configuration dhcp6 blocks are documented below.
- duplex str
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled bool
- N/A
- gaia_
physical_ strinterface_ id - ip_
conflicts bool - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4_
address str - N/A
- ipv4_
mask_ floatlength - N/A
- ipv6_
address str - N/A
- ipv6_
autoconfig bool - N/A
- ipv6_
mask_ floatlength - N/A
- mac_
addr str - N/A
- 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
- monitor_
mode bool - N/A
- mtu float
- N/A
- name str
- N/A
- rx_
ringsize float - N/A
- sd_
wan GaiaPhysical Interface Sd Wan Args - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed str
- Speed is not relevant when 'auto-negotiation' is enabled
- tx_
ringsize float - N/A
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- auto
Negotiation Boolean - Activating Auto-Negotiation will skip the speed and duplex configuration
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- dhcp Property Map
- DHCP configuration dhcp blocks are documented below.
- dhcp6 Property Map
- DHCPv6 configuration dhcp6 blocks are documented below.
- duplex String
- Duplex is not relevant when 'auto-negotiation' is enabled
- enabled Boolean
- N/A
- gaia
Physical StringInterface Id - ip
Conflicts Boolean - Enable ip-conflicts on this interface to monitor the Address Resolution Protocol traffic on the connected network.
- ipv4Address String
- N/A
- ipv4Mask
Length Number - N/A
- ipv6Address String
- N/A
- ipv6Autoconfig Boolean
- N/A
- ipv6Mask
Length Number - N/A
- mac
Addr String - N/A
- 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
- monitor
Mode Boolean - N/A
- mtu Number
- N/A
- name String
- N/A
- rx
Ringsize Number - N/A
- sd
Wan Property Map - SD-WAN configuration. Supported starting from R81.20 JHF 14 sd_wan blocks are documented below.
- speed String
- Speed is not relevant when 'auto-negotiation' is enabled
- tx
Ringsize Number - N/A
- virtual
System NumberId - Virtual System ID. Relevant for VSNext setups
Supporting Types
GaiaPhysicalInterfaceDhcp, GaiaPhysicalInterfaceDhcpArgs
- Enabled bool
- Enable DHCP on this interface.
- Leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- Reacquire
Timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- Retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- Server
Timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- Enabled bool
- Enable DHCP on this interface.
- Leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- Reacquire
Timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- Retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- Server
Timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- enabled bool
- Enable DHCP on this interface.
- leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire_
timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server_
timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- enabled Boolean
- Enable DHCP on this interface.
- leasetime String
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire
Timeout String - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry String
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server
Timeout String - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- enabled boolean
- Enable DHCP on this interface.
- leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire
Timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server
Timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- enabled bool
- Enable DHCP on this interface.
- leasetime str
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire_
timeout str - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry str
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server_
timeout str - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- enabled Boolean
- Enable DHCP on this interface.
- leasetime String
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire
Timeout String - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry String
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server
Timeout String - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
GaiaPhysicalInterfaceDhcp6, GaiaPhysicalInterfaceDhcp6Args
- Enabled bool
- Enable DHCP on this interface.
- Leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- Reacquire
Timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- Retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- Server
Timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- Using string
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
- Enabled bool
- Enable DHCP on this interface.
- Leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- Reacquire
Timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- Retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- Server
Timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- Using string
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
- enabled bool
- Enable DHCP on this interface.
- leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire_
timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server_
timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- using string
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
- enabled Boolean
- Enable DHCP on this interface.
- leasetime String
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire
Timeout String - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry String
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server
Timeout String - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- using String
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
- enabled boolean
- Enable DHCP on this interface.
- leasetime string
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire
Timeout string - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry string
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server
Timeout string - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- using string
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
- enabled bool
- Enable DHCP on this interface.
- leasetime str
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire_
timeout str - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry str
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server_
timeout str - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- using str
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
- enabled Boolean
- Enable DHCP on this interface.
- leasetime String
- Specifies the lease time, in seconds, when requesting for an IP address. Default value is "default" - according to the server.
- reacquire
Timeout String - When trying to reacquire the last IP address, the reacquire-timeout statement sets the time, in seconds, that must elapse after the first try to reacquire the old address before it gives up and tries to discover a new address.
- retry String
- Specifies the time, in seconds, that must pass after the interface has determined that there is no DHCP server present before it tries again to contact a DHCP server.
- server
Timeout String - Specifies the amount of time, in seconds, that must pass between the time that the interface begins to try to determine its address and the time that it decides that it's not going to be able to contact a server.
- using String
- Choose the DHCPv6 client working mode of this interface. Interface will receive IPv6 only if the chosen mode and the system's configured mode match
GaiaPhysicalInterfaceSdWan, GaiaPhysicalInterfaceSdWanArgs
- Bandwidth
Gaia
Physical Interface Sd Wan Bandwidth - Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- Circuit
Id string - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- Enabled bool
- Enable SD-WAN on this interface.
- Nat
Gaia
Physical Interface Sd Wan Nat - Optional NAT configuration nat blocks are documented below.
- Next
Hop string - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- Next
Hop stringIpv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- Tag string
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
- Bandwidth
Gaia
Physical Interface Sd Wan Bandwidth - Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- Circuit
Id string - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- Enabled bool
- Enable SD-WAN on this interface.
- Nat
Gaia
Physical Interface Sd Wan Nat - Optional NAT configuration nat blocks are documented below.
- Next
Hop string - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- Next
Hop stringIpv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- Tag string
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
- bandwidth object
- Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- circuit_
id string - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- enabled bool
- Enable SD-WAN on this interface.
- nat object
- Optional NAT configuration nat blocks are documented below.
- next_
hop string - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- next_
hop_ stringipv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- tag string
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
- bandwidth
Gaia
Physical Interface Sd Wan Bandwidth - Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- circuit
Id String - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- enabled Boolean
- Enable SD-WAN on this interface.
- nat
Gaia
Physical Interface Sd Wan Nat - Optional NAT configuration nat blocks are documented below.
- next
Hop String - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- next
Hop StringIpv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- tag String
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
- bandwidth
Gaia
Physical Interface Sd Wan Bandwidth - Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- circuit
Id string - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- enabled boolean
- Enable SD-WAN on this interface.
- nat
Gaia
Physical Interface Sd Wan Nat - Optional NAT configuration nat blocks are documented below.
- next
Hop string - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- next
Hop stringIpv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- tag string
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
- bandwidth
Gaia
Physical Interface Sd Wan Bandwidth - Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- circuit_
id str - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- enabled bool
- Enable SD-WAN on this interface.
- nat
Gaia
Physical Interface Sd Wan Nat - Optional NAT configuration nat blocks are documented below.
- next_
hop str - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- next_
hop_ stripv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- tag str
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
- bandwidth Property Map
- Optional Bandwidth configuration. Bandwidth configuration is supported starting from R81.20 JHF 79 bandwidth blocks are documented below.
- circuit
Id String - Optional override interface circuit id value. Circuit-ID configuration is supported starting from R81.20 JHF 79
- enabled Boolean
- Enable SD-WAN on this interface.
- nat Property Map
- Optional NAT configuration nat blocks are documented below.
- next
Hop String - Configure interface's next hop IPv4 address, obtain next hop IPv4 address automatically or set as a layer 2-only link
- next
Hop StringIpv6 - Configure interface's next hop IPv6 address or obtain next hop IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- tag String
- Optional tag configuration. Must contain only alphanumeric characters, '-' or '_' (max length is 64)
GaiaPhysicalInterfaceSdWanBandwidth, GaiaPhysicalInterfaceSdWanBandwidthArgs
- Download
Speed string - In Mbps
- Upload
Speed string - In Mbps
- Download
Speed string - In Mbps
- Upload
Speed string - In Mbps
- download_
speed string - In Mbps
- upload_
speed string - In Mbps
- download
Speed String - In Mbps
- upload
Speed String - In Mbps
- download
Speed string - In Mbps
- upload
Speed string - In Mbps
- download_
speed str - In Mbps
- upload_
speed str - In Mbps
- download
Speed String - In Mbps
- upload
Speed String - In Mbps
GaiaPhysicalInterfaceSdWanNat, GaiaPhysicalInterfaceSdWanNatArgs
- Enabled bool
- Enable NAT IP address on this interface
- Ip string
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- Ipv6 string
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- Enabled bool
- Enable NAT IP address on this interface
- Ip string
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- Ipv6 string
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- enabled bool
- Enable NAT IP address on this interface
- ip string
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- ipv6 string
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- enabled Boolean
- Enable NAT IP address on this interface
- ip String
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- ipv6 String
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- enabled boolean
- Enable NAT IP address on this interface
- ip string
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- ipv6 string
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- enabled bool
- Enable NAT IP address on this interface
- ip str
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- ipv6 str
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
- enabled Boolean
- Enable NAT IP address on this interface
- ip String
- Configure NAT IPv4 address on this interface or obtain NAT IPv4 address automatically.
- ipv6 String
- Configure NAT IPv6 address on this interface or obtain NAT IPv6 address automatically. IPv6 configuration is supported starting from R82 latest Jumbo Hotfix
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