published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Loopback Interface.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaLoopbackInterface("example", {
name: "loop00",
ipv4Address: "1.2.3.4",
ipv4MaskLength: 32,
enabled: true,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaLoopbackInterface("example",
name="loop00",
ipv4_address="1.2.3.4",
ipv4_mask_length=32,
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.NewGaiaLoopbackInterface(ctx, "example", &checkpoint.GaiaLoopbackInterfaceArgs{
Name: pulumi.String("loop00"),
Ipv4Address: pulumi.String("1.2.3.4"),
Ipv4MaskLength: pulumi.Float64(32),
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.GaiaLoopbackInterface("example", new()
{
Name = "loop00",
Ipv4Address = "1.2.3.4",
Ipv4MaskLength = 32,
Enabled = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaLoopbackInterface;
import com.pulumi.checkpoint.GaiaLoopbackInterfaceArgs;
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 GaiaLoopbackInterface("example", GaiaLoopbackInterfaceArgs.builder()
.name("loop00")
.ipv4Address("1.2.3.4")
.ipv4MaskLength(32.0)
.enabled(true)
.build());
}
}
resources:
example:
type: checkpoint:GaiaLoopbackInterface
properties:
name: loop00
ipv4Address: 1.2.3.4
ipv4MaskLength: 32
enabled: true
Example coming soon!
Create GaiaLoopbackInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaLoopbackInterface(name: string, args?: GaiaLoopbackInterfaceArgs, opts?: CustomResourceOptions);@overload
def GaiaLoopbackInterface(resource_name: str,
args: Optional[GaiaLoopbackInterfaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaLoopbackInterface(resource_name: str,
opts: Optional[ResourceOptions] = None,
comments: Optional[str] = None,
debug: Optional[bool] = None,
enabled: Optional[bool] = None,
gaia_loopback_interface_id: Optional[str] = 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,
member_id: Optional[str] = None,
name: Optional[str] = None,
virtual_system_id: Optional[float] = None)func NewGaiaLoopbackInterface(ctx *Context, name string, args *GaiaLoopbackInterfaceArgs, opts ...ResourceOption) (*GaiaLoopbackInterface, error)public GaiaLoopbackInterface(string name, GaiaLoopbackInterfaceArgs? args = null, CustomResourceOptions? opts = null)
public GaiaLoopbackInterface(String name, GaiaLoopbackInterfaceArgs args)
public GaiaLoopbackInterface(String name, GaiaLoopbackInterfaceArgs args, CustomResourceOptions options)
type: checkpoint:GaiaLoopbackInterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaialoopbackinterface" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaLoopbackInterfaceArgs
- 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 GaiaLoopbackInterfaceArgs
- 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 GaiaLoopbackInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaLoopbackInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaLoopbackInterfaceArgs
- 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 gaiaLoopbackInterfaceResource = new Checkpoint.GaiaLoopbackInterface("gaiaLoopbackInterfaceResource", new()
{
Comments = "string",
Debug = false,
Enabled = false,
GaiaLoopbackInterfaceId = "string",
Ipv4Address = "string",
Ipv4MaskLength = 0,
Ipv6Address = "string",
Ipv6Autoconfig = false,
Ipv6MaskLength = 0,
MemberId = "string",
Name = "string",
VirtualSystemId = 0,
});
example, err := checkpoint.NewGaiaLoopbackInterface(ctx, "gaiaLoopbackInterfaceResource", &checkpoint.GaiaLoopbackInterfaceArgs{
Comments: pulumi.String("string"),
Debug: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
GaiaLoopbackInterfaceId: pulumi.String("string"),
Ipv4Address: pulumi.String("string"),
Ipv4MaskLength: pulumi.Float64(0),
Ipv6Address: pulumi.String("string"),
Ipv6Autoconfig: pulumi.Bool(false),
Ipv6MaskLength: pulumi.Float64(0),
MemberId: pulumi.String("string"),
Name: pulumi.String("string"),
VirtualSystemId: pulumi.Float64(0),
})
resource "checkpoint_gaialoopbackinterface" "gaiaLoopbackInterfaceResource" {
comments = "string"
debug = false
enabled = false
gaia_loopback_interface_id = "string"
ipv4_address = "string"
ipv4_mask_length = 0
ipv6_address = "string"
ipv6_autoconfig = false
ipv6_mask_length = 0
member_id = "string"
name = "string"
virtual_system_id = 0
}
var gaiaLoopbackInterfaceResource = new GaiaLoopbackInterface("gaiaLoopbackInterfaceResource", GaiaLoopbackInterfaceArgs.builder()
.comments("string")
.debug(false)
.enabled(false)
.gaiaLoopbackInterfaceId("string")
.ipv4Address("string")
.ipv4MaskLength(0.0)
.ipv6Address("string")
.ipv6Autoconfig(false)
.ipv6MaskLength(0.0)
.memberId("string")
.name("string")
.virtualSystemId(0.0)
.build());
gaia_loopback_interface_resource = checkpoint.GaiaLoopbackInterface("gaiaLoopbackInterfaceResource",
comments="string",
debug=False,
enabled=False,
gaia_loopback_interface_id="string",
ipv4_address="string",
ipv4_mask_length=float(0),
ipv6_address="string",
ipv6_autoconfig=False,
ipv6_mask_length=float(0),
member_id="string",
name="string",
virtual_system_id=float(0))
const gaiaLoopbackInterfaceResource = new checkpoint.GaiaLoopbackInterface("gaiaLoopbackInterfaceResource", {
comments: "string",
debug: false,
enabled: false,
gaiaLoopbackInterfaceId: "string",
ipv4Address: "string",
ipv4MaskLength: 0,
ipv6Address: "string",
ipv6Autoconfig: false,
ipv6MaskLength: 0,
memberId: "string",
name: "string",
virtualSystemId: 0,
});
type: checkpoint:GaiaLoopbackInterface
properties:
comments: string
debug: false
enabled: false
gaiaLoopbackInterfaceId: string
ipv4Address: string
ipv4MaskLength: 0
ipv6Address: string
ipv6Autoconfig: false
ipv6MaskLength: 0
memberId: string
name: string
virtualSystemId: 0
GaiaLoopbackInterface 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 GaiaLoopbackInterface resource accepts the following input properties:
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- N/A
- Gaia
Loopback stringInterface Id - Ipv4Address string
- Either this, 'ipv6-address' or both must be specified
- Ipv4Mask
Length double - N/A
- Ipv6Address string
- Either this, 'ipv4-address' or both must be specified
- Ipv6Autoconfig bool
- N/A
- Ipv6Mask
Length double - 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
- Name string
- N/A
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- N/A
- Gaia
Loopback stringInterface Id - Ipv4Address string
- Either this, 'ipv6-address' or both must be specified
- Ipv4Mask
Length float64 - N/A
- Ipv6Address string
- Either this, 'ipv4-address' or both must be specified
- Ipv6Autoconfig bool
- N/A
- Ipv6Mask
Length float64 - 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
- Name string
- N/A
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- comments string
- N/A
- debug bool
- Enable debug logging for this resource.
- enabled bool
- N/A
- gaia_
loopback_ stringinterface_ id - ipv4_
address string - Either this, 'ipv6-address' or both must be specified
- ipv4_
mask_ numberlength - N/A
- ipv6_
address string - Either this, 'ipv4-address' or both must be specified
- ipv6_
autoconfig bool - N/A
- ipv6_
mask_ numberlength - 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
- name string
- N/A
- virtual_
system_ numberid - Virtual System ID. Relevant for VSNext setups
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- N/A
- gaia
Loopback StringInterface Id - ipv4Address String
- Either this, 'ipv6-address' or both must be specified
- ipv4Mask
Length Double - N/A
- ipv6Address String
- Either this, 'ipv4-address' or both must be specified
- ipv6Autoconfig Boolean
- N/A
- ipv6Mask
Length Double - 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
- name String
- N/A
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- comments string
- N/A
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- N/A
- gaia
Loopback stringInterface Id - ipv4Address string
- Either this, 'ipv6-address' or both must be specified
- ipv4Mask
Length number - N/A
- ipv6Address string
- Either this, 'ipv4-address' or both must be specified
- ipv6Autoconfig boolean
- N/A
- ipv6Mask
Length number - 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
- name string
- N/A
- virtual
System numberId - Virtual System ID. Relevant for VSNext setups
- comments str
- N/A
- debug bool
- Enable debug logging for this resource.
- enabled bool
- N/A
- gaia_
loopback_ strinterface_ id - ipv4_
address str - Either this, 'ipv6-address' or both must be specified
- ipv4_
mask_ floatlength - N/A
- ipv6_
address str - Either this, 'ipv4-address' or both must be specified
- ipv6_
autoconfig bool - N/A
- ipv6_
mask_ floatlength - 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
- name str
- N/A
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- N/A
- gaia
Loopback StringInterface Id - ipv4Address String
- Either this, 'ipv6-address' or both must be specified
- ipv4Mask
Length Number - N/A
- ipv6Address String
- Either this, 'ipv4-address' or both must be specified
- ipv6Autoconfig Boolean
- N/A
- ipv6Mask
Length Number - 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
- name String
- N/A
- virtual
System NumberId - Virtual System ID. Relevant for VSNext setups
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaLoopbackInterface resource produces the following output properties:
- Duplex string
- Computed field, returned in the response.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipv6Local
Link stringAddress - Computed field, returned in the response.
- Link
State bool - Computed field, returned in the response.
- Mtu string
- Computed field, returned in the response.
- Rx
Bytes double - Computed field, returned in the response.
- Rx
Packets double - Computed field, returned in the response.
- Speed string
- Computed field, returned in the response.
- Tx
Bytes double - Computed field, returned in the response.
- Tx
Packets double - Computed field, returned in the response.
- Duplex string
- Computed field, returned in the response.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipv6Local
Link stringAddress - Computed field, returned in the response.
- Link
State bool - Computed field, returned in the response.
- Mtu string
- Computed field, returned in the response.
- Rx
Bytes float64 - Computed field, returned in the response.
- Rx
Packets float64 - Computed field, returned in the response.
- Speed string
- Computed field, returned in the response.
- Tx
Bytes float64 - Computed field, returned in the response.
- Tx
Packets float64 - Computed field, returned in the response.
- duplex string
- Computed field, returned in the response.
- id string
- The provider-assigned unique ID for this managed resource.
- ipv6_
local_ stringlink_ address - Computed field, returned in the response.
- link_
state bool - Computed field, returned in the response.
- mtu string
- Computed field, returned in the response.
- rx_
bytes number - Computed field, returned in the response.
- rx_
packets number - Computed field, returned in the response.
- speed string
- Computed field, returned in the response.
- tx_
bytes number - Computed field, returned in the response.
- tx_
packets number - Computed field, returned in the response.
- duplex String
- Computed field, returned in the response.
- id String
- The provider-assigned unique ID for this managed resource.
- ipv6Local
Link StringAddress - Computed field, returned in the response.
- link
State Boolean - Computed field, returned in the response.
- mtu String
- Computed field, returned in the response.
- rx
Bytes Double - Computed field, returned in the response.
- rx
Packets Double - Computed field, returned in the response.
- speed String
- Computed field, returned in the response.
- tx
Bytes Double - Computed field, returned in the response.
- tx
Packets Double - Computed field, returned in the response.
- duplex string
- Computed field, returned in the response.
- id string
- The provider-assigned unique ID for this managed resource.
- ipv6Local
Link stringAddress - Computed field, returned in the response.
- link
State boolean - Computed field, returned in the response.
- mtu string
- Computed field, returned in the response.
- rx
Bytes number - Computed field, returned in the response.
- rx
Packets number - Computed field, returned in the response.
- speed string
- Computed field, returned in the response.
- tx
Bytes number - Computed field, returned in the response.
- tx
Packets number - Computed field, returned in the response.
- duplex str
- Computed field, returned in the response.
- id str
- The provider-assigned unique ID for this managed resource.
- ipv6_
local_ strlink_ address - Computed field, returned in the response.
- link_
state bool - Computed field, returned in the response.
- mtu str
- Computed field, returned in the response.
- rx_
bytes float - Computed field, returned in the response.
- rx_
packets float - Computed field, returned in the response.
- speed str
- Computed field, returned in the response.
- tx_
bytes float - Computed field, returned in the response.
- tx_
packets float - Computed field, returned in the response.
- duplex String
- Computed field, returned in the response.
- id String
- The provider-assigned unique ID for this managed resource.
- ipv6Local
Link StringAddress - Computed field, returned in the response.
- link
State Boolean - Computed field, returned in the response.
- mtu String
- Computed field, returned in the response.
- rx
Bytes Number - Computed field, returned in the response.
- rx
Packets Number - Computed field, returned in the response.
- speed String
- Computed field, returned in the response.
- tx
Bytes Number - Computed field, returned in the response.
- tx
Packets Number - Computed field, returned in the response.
Look up Existing GaiaLoopbackInterface Resource
Get an existing GaiaLoopbackInterface 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?: GaiaLoopbackInterfaceState, opts?: CustomResourceOptions): GaiaLoopbackInterface@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comments: Optional[str] = None,
debug: Optional[bool] = None,
duplex: Optional[str] = None,
enabled: Optional[bool] = None,
gaia_loopback_interface_id: Optional[str] = None,
ipv4_address: Optional[str] = None,
ipv4_mask_length: Optional[float] = None,
ipv6_address: Optional[str] = None,
ipv6_autoconfig: Optional[bool] = None,
ipv6_local_link_address: Optional[str] = None,
ipv6_mask_length: Optional[float] = None,
link_state: Optional[bool] = None,
member_id: Optional[str] = None,
mtu: Optional[str] = None,
name: Optional[str] = None,
rx_bytes: Optional[float] = None,
rx_packets: Optional[float] = None,
speed: Optional[str] = None,
tx_bytes: Optional[float] = None,
tx_packets: Optional[float] = None,
virtual_system_id: Optional[float] = None) -> GaiaLoopbackInterfacefunc GetGaiaLoopbackInterface(ctx *Context, name string, id IDInput, state *GaiaLoopbackInterfaceState, opts ...ResourceOption) (*GaiaLoopbackInterface, error)public static GaiaLoopbackInterface Get(string name, Input<string> id, GaiaLoopbackInterfaceState? state, CustomResourceOptions? opts = null)public static GaiaLoopbackInterface get(String name, Output<String> id, GaiaLoopbackInterfaceState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaLoopbackInterface get: id: ${id}import {
to = checkpoint_gaialoopbackinterface.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.
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Duplex string
- Computed field, returned in the response.
- Enabled bool
- N/A
- Gaia
Loopback stringInterface Id - Ipv4Address string
- Either this, 'ipv6-address' or both must be specified
- Ipv4Mask
Length double - N/A
- Ipv6Address string
- Either this, 'ipv4-address' or both must be specified
- Ipv6Autoconfig bool
- N/A
- Ipv6Local
Link stringAddress - Computed field, returned in the response.
- Ipv6Mask
Length double - N/A
- Link
State bool - Computed field, returned in the response.
- 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
- Mtu string
- Computed field, returned in the response.
- Name string
- N/A
- Rx
Bytes double - Computed field, returned in the response.
- Rx
Packets double - Computed field, returned in the response.
- Speed string
- Computed field, returned in the response.
- Tx
Bytes double - Computed field, returned in the response.
- Tx
Packets double - Computed field, returned in the response.
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Comments string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Duplex string
- Computed field, returned in the response.
- Enabled bool
- N/A
- Gaia
Loopback stringInterface Id - Ipv4Address string
- Either this, 'ipv6-address' or both must be specified
- Ipv4Mask
Length float64 - N/A
- Ipv6Address string
- Either this, 'ipv4-address' or both must be specified
- Ipv6Autoconfig bool
- N/A
- Ipv6Local
Link stringAddress - Computed field, returned in the response.
- Ipv6Mask
Length float64 - N/A
- Link
State bool - Computed field, returned in the response.
- 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
- Mtu string
- Computed field, returned in the response.
- Name string
- N/A
- Rx
Bytes float64 - Computed field, returned in the response.
- Rx
Packets float64 - Computed field, returned in the response.
- Speed string
- Computed field, returned in the response.
- Tx
Bytes float64 - Computed field, returned in the response.
- Tx
Packets float64 - Computed field, returned in the response.
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- comments string
- N/A
- debug bool
- Enable debug logging for this resource.
- duplex string
- Computed field, returned in the response.
- enabled bool
- N/A
- gaia_
loopback_ stringinterface_ id - ipv4_
address string - Either this, 'ipv6-address' or both must be specified
- ipv4_
mask_ numberlength - N/A
- ipv6_
address string - Either this, 'ipv4-address' or both must be specified
- ipv6_
autoconfig bool - N/A
- ipv6_
local_ stringlink_ address - Computed field, returned in the response.
- ipv6_
mask_ numberlength - N/A
- link_
state bool - Computed field, returned in the response.
- 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
- mtu string
- Computed field, returned in the response.
- name string
- N/A
- rx_
bytes number - Computed field, returned in the response.
- rx_
packets number - Computed field, returned in the response.
- speed string
- Computed field, returned in the response.
- tx_
bytes number - Computed field, returned in the response.
- tx_
packets number - Computed field, returned in the response.
- virtual_
system_ numberid - Virtual System ID. Relevant for VSNext setups
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- duplex String
- Computed field, returned in the response.
- enabled Boolean
- N/A
- gaia
Loopback StringInterface Id - ipv4Address String
- Either this, 'ipv6-address' or both must be specified
- ipv4Mask
Length Double - N/A
- ipv6Address String
- Either this, 'ipv4-address' or both must be specified
- ipv6Autoconfig Boolean
- N/A
- ipv6Local
Link StringAddress - Computed field, returned in the response.
- ipv6Mask
Length Double - N/A
- link
State Boolean - Computed field, returned in the response.
- 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
- mtu String
- Computed field, returned in the response.
- name String
- N/A
- rx
Bytes Double - Computed field, returned in the response.
- rx
Packets Double - Computed field, returned in the response.
- speed String
- Computed field, returned in the response.
- tx
Bytes Double - Computed field, returned in the response.
- tx
Packets Double - Computed field, returned in the response.
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- comments string
- N/A
- debug boolean
- Enable debug logging for this resource.
- duplex string
- Computed field, returned in the response.
- enabled boolean
- N/A
- gaia
Loopback stringInterface Id - ipv4Address string
- Either this, 'ipv6-address' or both must be specified
- ipv4Mask
Length number - N/A
- ipv6Address string
- Either this, 'ipv4-address' or both must be specified
- ipv6Autoconfig boolean
- N/A
- ipv6Local
Link stringAddress - Computed field, returned in the response.
- ipv6Mask
Length number - N/A
- link
State boolean - Computed field, returned in the response.
- 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
- mtu string
- Computed field, returned in the response.
- name string
- N/A
- rx
Bytes number - Computed field, returned in the response.
- rx
Packets number - Computed field, returned in the response.
- speed string
- Computed field, returned in the response.
- tx
Bytes number - Computed field, returned in the response.
- tx
Packets number - Computed field, returned in the response.
- virtual
System numberId - Virtual System ID. Relevant for VSNext setups
- comments str
- N/A
- debug bool
- Enable debug logging for this resource.
- duplex str
- Computed field, returned in the response.
- enabled bool
- N/A
- gaia_
loopback_ strinterface_ id - ipv4_
address str - Either this, 'ipv6-address' or both must be specified
- ipv4_
mask_ floatlength - N/A
- ipv6_
address str - Either this, 'ipv4-address' or both must be specified
- ipv6_
autoconfig bool - N/A
- ipv6_
local_ strlink_ address - Computed field, returned in the response.
- ipv6_
mask_ floatlength - N/A
- link_
state bool - Computed field, returned in the response.
- 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
- mtu str
- Computed field, returned in the response.
- name str
- N/A
- rx_
bytes float - Computed field, returned in the response.
- rx_
packets float - Computed field, returned in the response.
- speed str
- Computed field, returned in the response.
- tx_
bytes float - Computed field, returned in the response.
- tx_
packets float - Computed field, returned in the response.
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- comments String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- duplex String
- Computed field, returned in the response.
- enabled Boolean
- N/A
- gaia
Loopback StringInterface Id - ipv4Address String
- Either this, 'ipv6-address' or both must be specified
- ipv4Mask
Length Number - N/A
- ipv6Address String
- Either this, 'ipv4-address' or both must be specified
- ipv6Autoconfig Boolean
- N/A
- ipv6Local
Link StringAddress - Computed field, returned in the response.
- ipv6Mask
Length Number - N/A
- link
State Boolean - Computed field, returned in the response.
- 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
- mtu String
- Computed field, returned in the response.
- name String
- N/A
- rx
Bytes Number - Computed field, returned in the response.
- rx
Packets Number - Computed field, returned in the response.
- speed String
- Computed field, returned in the response.
- tx
Bytes Number - Computed field, returned in the response.
- tx
Packets Number - Computed field, returned in the response.
- virtual
System NumberId - Virtual System ID. Relevant for VSNext setups
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