1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaBridgeInterface
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Bridge Interface.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaBridgeInterface("example", {
        resourceId: 9,
        comments: "Bridge9",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaBridgeInterface("example",
        resource_id=9,
        comments="Bridge9")
    
    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.NewGaiaBridgeInterface(ctx, "example", &checkpoint.GaiaBridgeInterfaceArgs{
    			ResourceId: pulumi.Float64(9),
    			Comments:   pulumi.String("Bridge9"),
    		})
    		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.GaiaBridgeInterface("example", new()
        {
            ResourceId = 9,
            Comments = "Bridge9",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaBridgeInterface;
    import com.pulumi.checkpoint.GaiaBridgeInterfaceArgs;
    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 GaiaBridgeInterface("example", GaiaBridgeInterfaceArgs.builder()
                .resourceId(9.0)
                .comments("Bridge9")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaBridgeInterface
        properties:
          resourceId: 9
          comments: Bridge9
    
    Example coming soon!
    

    Create GaiaBridgeInterface Resource

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

    Constructor syntax

    new GaiaBridgeInterface(name: string, args: GaiaBridgeInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaBridgeInterface(resource_name: str,
                            args: GaiaBridgeInterfaceArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaBridgeInterface(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_id: Optional[float] = None,
                            ipv6_address: Optional[str] = None,
                            ipv6_mask_length: Optional[float] = None,
                            dhcp6: Optional[GaiaBridgeInterfaceDhcp6Args] = None,
                            enabled: Optional[bool] = None,
                            gaia_bridge_interface_id: Optional[str] = None,
                            ipv4_address: Optional[str] = None,
                            dhcp: Optional[GaiaBridgeInterfaceDhcpArgs] = None,
                            ipv4_mask_length: Optional[float] = None,
                            ipv6_autoconfig: Optional[bool] = None,
                            comments: Optional[str] = None,
                            member_id: Optional[str] = None,
                            members: Optional[Sequence[str]] = None,
                            mtu: Optional[float] = None,
                            name: Optional[str] = None,
                            debug: Optional[bool] = None,
                            virtual_system_id: Optional[float] = None)
    func NewGaiaBridgeInterface(ctx *Context, name string, args GaiaBridgeInterfaceArgs, opts ...ResourceOption) (*GaiaBridgeInterface, error)
    public GaiaBridgeInterface(string name, GaiaBridgeInterfaceArgs args, CustomResourceOptions? opts = null)
    public GaiaBridgeInterface(String name, GaiaBridgeInterfaceArgs args)
    public GaiaBridgeInterface(String name, GaiaBridgeInterfaceArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaBridgeInterface
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiabridgeinterface" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaBridgeInterfaceArgs
    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 GaiaBridgeInterfaceArgs
    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 GaiaBridgeInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaBridgeInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaBridgeInterfaceArgs
    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 gaiaBridgeInterfaceResource = new Checkpoint.GaiaBridgeInterface("gaiaBridgeInterfaceResource", new()
    {
        ResourceId = 0,
        Ipv6Address = "string",
        Ipv6MaskLength = 0,
        Dhcp6 = new Checkpoint.Inputs.GaiaBridgeInterfaceDhcp6Args
        {
            Enabled = false,
            Leasetime = "string",
            ReacquireTimeout = "string",
            Retry = "string",
            ServerTimeout = "string",
            Using = "string",
        },
        Enabled = false,
        GaiaBridgeInterfaceId = "string",
        Ipv4Address = "string",
        Dhcp = new Checkpoint.Inputs.GaiaBridgeInterfaceDhcpArgs
        {
            Enabled = false,
            Leasetime = "string",
            ReacquireTimeout = "string",
            Retry = "string",
            ServerTimeout = "string",
        },
        Ipv4MaskLength = 0,
        Ipv6Autoconfig = false,
        Comments = "string",
        MemberId = "string",
        Members = new[]
        {
            "string",
        },
        Mtu = 0,
        Name = "string",
        Debug = false,
        VirtualSystemId = 0,
    });
    
    example, err := checkpoint.NewGaiaBridgeInterface(ctx, "gaiaBridgeInterfaceResource", &checkpoint.GaiaBridgeInterfaceArgs{
    	ResourceId:     pulumi.Float64(0),
    	Ipv6Address:    pulumi.String("string"),
    	Ipv6MaskLength: pulumi.Float64(0),
    	Dhcp6: &checkpoint.GaiaBridgeInterfaceDhcp6Args{
    		Enabled:          pulumi.Bool(false),
    		Leasetime:        pulumi.String("string"),
    		ReacquireTimeout: pulumi.String("string"),
    		Retry:            pulumi.String("string"),
    		ServerTimeout:    pulumi.String("string"),
    		Using:            pulumi.String("string"),
    	},
    	Enabled:               pulumi.Bool(false),
    	GaiaBridgeInterfaceId: pulumi.String("string"),
    	Ipv4Address:           pulumi.String("string"),
    	Dhcp: &checkpoint.GaiaBridgeInterfaceDhcpArgs{
    		Enabled:          pulumi.Bool(false),
    		Leasetime:        pulumi.String("string"),
    		ReacquireTimeout: pulumi.String("string"),
    		Retry:            pulumi.String("string"),
    		ServerTimeout:    pulumi.String("string"),
    	},
    	Ipv4MaskLength: pulumi.Float64(0),
    	Ipv6Autoconfig: pulumi.Bool(false),
    	Comments:       pulumi.String("string"),
    	MemberId:       pulumi.String("string"),
    	Members: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Mtu:             pulumi.Float64(0),
    	Name:            pulumi.String("string"),
    	Debug:           pulumi.Bool(false),
    	VirtualSystemId: pulumi.Float64(0),
    })
    
    resource "checkpoint_gaiabridgeinterface" "gaiaBridgeInterfaceResource" {
      resource_id      = 0
      ipv6_address     = "string"
      ipv6_mask_length = 0
      dhcp6 = {
        enabled           = false
        leasetime         = "string"
        reacquire_timeout = "string"
        retry             = "string"
        server_timeout    = "string"
        using             = "string"
      }
      enabled                  = false
      gaia_bridge_interface_id = "string"
      ipv4_address             = "string"
      dhcp = {
        enabled           = false
        leasetime         = "string"
        reacquire_timeout = "string"
        retry             = "string"
        server_timeout    = "string"
      }
      ipv4_mask_length  = 0
      ipv6_autoconfig   = false
      comments          = "string"
      member_id         = "string"
      members           = ["string"]
      mtu               = 0
      name              = "string"
      debug             = false
      virtual_system_id = 0
    }
    
    var gaiaBridgeInterfaceResource = new GaiaBridgeInterface("gaiaBridgeInterfaceResource", GaiaBridgeInterfaceArgs.builder()
        .resourceId(0.0)
        .ipv6Address("string")
        .ipv6MaskLength(0.0)
        .dhcp6(GaiaBridgeInterfaceDhcp6Args.builder()
            .enabled(false)
            .leasetime("string")
            .reacquireTimeout("string")
            .retry("string")
            .serverTimeout("string")
            .using("string")
            .build())
        .enabled(false)
        .gaiaBridgeInterfaceId("string")
        .ipv4Address("string")
        .dhcp(GaiaBridgeInterfaceDhcpArgs.builder()
            .enabled(false)
            .leasetime("string")
            .reacquireTimeout("string")
            .retry("string")
            .serverTimeout("string")
            .build())
        .ipv4MaskLength(0.0)
        .ipv6Autoconfig(false)
        .comments("string")
        .memberId("string")
        .members("string")
        .mtu(0.0)
        .name("string")
        .debug(false)
        .virtualSystemId(0.0)
        .build());
    
    gaia_bridge_interface_resource = checkpoint.GaiaBridgeInterface("gaiaBridgeInterfaceResource",
        resource_id=float(0),
        ipv6_address="string",
        ipv6_mask_length=float(0),
        dhcp6={
            "enabled": False,
            "leasetime": "string",
            "reacquire_timeout": "string",
            "retry": "string",
            "server_timeout": "string",
            "using": "string",
        },
        enabled=False,
        gaia_bridge_interface_id="string",
        ipv4_address="string",
        dhcp={
            "enabled": False,
            "leasetime": "string",
            "reacquire_timeout": "string",
            "retry": "string",
            "server_timeout": "string",
        },
        ipv4_mask_length=float(0),
        ipv6_autoconfig=False,
        comments="string",
        member_id="string",
        members=["string"],
        mtu=float(0),
        name="string",
        debug=False,
        virtual_system_id=float(0))
    
    const gaiaBridgeInterfaceResource = new checkpoint.GaiaBridgeInterface("gaiaBridgeInterfaceResource", {
        resourceId: 0,
        ipv6Address: "string",
        ipv6MaskLength: 0,
        dhcp6: {
            enabled: false,
            leasetime: "string",
            reacquireTimeout: "string",
            retry: "string",
            serverTimeout: "string",
            using: "string",
        },
        enabled: false,
        gaiaBridgeInterfaceId: "string",
        ipv4Address: "string",
        dhcp: {
            enabled: false,
            leasetime: "string",
            reacquireTimeout: "string",
            retry: "string",
            serverTimeout: "string",
        },
        ipv4MaskLength: 0,
        ipv6Autoconfig: false,
        comments: "string",
        memberId: "string",
        members: ["string"],
        mtu: 0,
        name: "string",
        debug: false,
        virtualSystemId: 0,
    });
    
    type: checkpoint:GaiaBridgeInterface
    properties:
        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
        enabled: false
        gaiaBridgeInterfaceId: string
        ipv4Address: string
        ipv4MaskLength: 0
        ipv6Address: string
        ipv6Autoconfig: false
        ipv6MaskLength: 0
        memberId: string
        members:
            - string
        mtu: 0
        name: string
        resourceId: 0
        virtualSystemId: 0
    

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

    ResourceId double
    N/A
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    Dhcp GaiaBridgeInterfaceDhcp
    DHCP configuration dhcp blocks are documented below.
    Dhcp6 GaiaBridgeInterfaceDhcp6
    DHCPv6 configuration dhcp6 blocks are documented below.
    Enabled bool
    N/A
    GaiaBridgeInterfaceId string
    Ipv4Address string
    N/A
    Ipv4MaskLength double
    N/A
    Ipv6Address string
    N/A
    Ipv6Autoconfig bool
    N/A
    Ipv6MaskLength double
    N/A
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Members List<string>
    members blocks are documented below.
    Mtu double
    N/A
    Name string
    N/A
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    ResourceId float64
    N/A
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    Dhcp GaiaBridgeInterfaceDhcpArgs
    DHCP configuration dhcp blocks are documented below.
    Dhcp6 GaiaBridgeInterfaceDhcp6Args
    DHCPv6 configuration dhcp6 blocks are documented below.
    Enabled bool
    N/A
    GaiaBridgeInterfaceId string
    Ipv4Address string
    N/A
    Ipv4MaskLength float64
    N/A
    Ipv6Address string
    N/A
    Ipv6Autoconfig bool
    N/A
    Ipv6MaskLength float64
    N/A
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Members []string
    members blocks are documented below.
    Mtu float64
    N/A
    Name string
    N/A
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    resource_id number
    N/A
    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.
    enabled bool
    N/A
    gaia_bridge_interface_id string
    ipv4_address string
    N/A
    ipv4_mask_length number
    N/A
    ipv6_address string
    N/A
    ipv6_autoconfig bool
    N/A
    ipv6_mask_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
    members list(string)
    members blocks are documented below.
    mtu number
    N/A
    name string
    N/A
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    resourceId Double
    N/A
    comments String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    dhcp GaiaBridgeInterfaceDhcp
    DHCP configuration dhcp blocks are documented below.
    dhcp6 GaiaBridgeInterfaceDhcp6
    DHCPv6 configuration dhcp6 blocks are documented below.
    enabled Boolean
    N/A
    gaiaBridgeInterfaceId String
    ipv4Address String
    N/A
    ipv4MaskLength Double
    N/A
    ipv6Address String
    N/A
    ipv6Autoconfig Boolean
    N/A
    ipv6MaskLength Double
    N/A
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    members List<String>
    members blocks are documented below.
    mtu Double
    N/A
    name String
    N/A
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    resourceId number
    N/A
    comments string
    N/A
    debug boolean
    Enable debug logging for this resource.
    dhcp GaiaBridgeInterfaceDhcp
    DHCP configuration dhcp blocks are documented below.
    dhcp6 GaiaBridgeInterfaceDhcp6
    DHCPv6 configuration dhcp6 blocks are documented below.
    enabled boolean
    N/A
    gaiaBridgeInterfaceId string
    ipv4Address string
    N/A
    ipv4MaskLength number
    N/A
    ipv6Address string
    N/A
    ipv6Autoconfig boolean
    N/A
    ipv6MaskLength number
    N/A
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    members string[]
    members blocks are documented below.
    mtu number
    N/A
    name string
    N/A
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    resource_id float
    N/A
    comments str
    N/A
    debug bool
    Enable debug logging for this resource.
    dhcp GaiaBridgeInterfaceDhcpArgs
    DHCP configuration dhcp blocks are documented below.
    dhcp6 GaiaBridgeInterfaceDhcp6Args
    DHCPv6 configuration dhcp6 blocks are documented below.
    enabled bool
    N/A
    gaia_bridge_interface_id str
    ipv4_address str
    N/A
    ipv4_mask_length float
    N/A
    ipv6_address str
    N/A
    ipv6_autoconfig bool
    N/A
    ipv6_mask_length float
    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
    members Sequence[str]
    members blocks are documented below.
    mtu float
    N/A
    name str
    N/A
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    resourceId Number
    N/A
    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.
    enabled Boolean
    N/A
    gaiaBridgeInterfaceId String
    ipv4Address String
    N/A
    ipv4MaskLength Number
    N/A
    ipv6Address String
    N/A
    ipv6Autoconfig Boolean
    N/A
    ipv6MaskLength Number
    N/A
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    members List<String>
    members blocks are documented below.
    mtu Number
    N/A
    name String
    N/A
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaBridgeInterface 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.
    Ipv6LocalLinkAddress string
    Computed field, returned in the response.
    LinkState bool
    Computed field, returned in the response.
    RxBytes double
    Computed field, returned in the response.
    RxPackets double
    Computed field, returned in the response.
    Speed string
    Computed field, returned in the response.
    TxBytes double
    Computed field, returned in the response.
    TxPackets 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.
    Ipv6LocalLinkAddress string
    Computed field, returned in the response.
    LinkState bool
    Computed field, returned in the response.
    RxBytes float64
    Computed field, returned in the response.
    RxPackets float64
    Computed field, returned in the response.
    Speed string
    Computed field, returned in the response.
    TxBytes float64
    Computed field, returned in the response.
    TxPackets 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_link_address string
    Computed field, returned in the response.
    link_state bool
    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.
    ipv6LocalLinkAddress String
    Computed field, returned in the response.
    linkState Boolean
    Computed field, returned in the response.
    rxBytes Double
    Computed field, returned in the response.
    rxPackets Double
    Computed field, returned in the response.
    speed String
    Computed field, returned in the response.
    txBytes Double
    Computed field, returned in the response.
    txPackets 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.
    ipv6LocalLinkAddress string
    Computed field, returned in the response.
    linkState boolean
    Computed field, returned in the response.
    rxBytes number
    Computed field, returned in the response.
    rxPackets number
    Computed field, returned in the response.
    speed string
    Computed field, returned in the response.
    txBytes number
    Computed field, returned in the response.
    txPackets 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_link_address str
    Computed field, returned in the response.
    link_state bool
    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.
    ipv6LocalLinkAddress String
    Computed field, returned in the response.
    linkState Boolean
    Computed field, returned in the response.
    rxBytes Number
    Computed field, returned in the response.
    rxPackets Number
    Computed field, returned in the response.
    speed String
    Computed field, returned in the response.
    txBytes Number
    Computed field, returned in the response.
    txPackets Number
    Computed field, returned in the response.

    Look up Existing GaiaBridgeInterface Resource

    Get an existing GaiaBridgeInterface 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?: GaiaBridgeInterfaceState, opts?: CustomResourceOptions): GaiaBridgeInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comments: Optional[str] = None,
            debug: Optional[bool] = None,
            dhcp: Optional[GaiaBridgeInterfaceDhcpArgs] = None,
            dhcp6: Optional[GaiaBridgeInterfaceDhcp6Args] = None,
            duplex: Optional[str] = None,
            enabled: Optional[bool] = None,
            gaia_bridge_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,
            members: Optional[Sequence[str]] = None,
            mtu: Optional[float] = None,
            name: Optional[str] = None,
            resource_id: Optional[float] = 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) -> GaiaBridgeInterface
    func GetGaiaBridgeInterface(ctx *Context, name string, id IDInput, state *GaiaBridgeInterfaceState, opts ...ResourceOption) (*GaiaBridgeInterface, error)
    public static GaiaBridgeInterface Get(string name, Input<string> id, GaiaBridgeInterfaceState? state, CustomResourceOptions? opts = null)
    public static GaiaBridgeInterface get(String name, Output<String> id, GaiaBridgeInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaBridgeInterface    get:      id: ${id}
    import {
      to = checkpoint_gaiabridgeinterface.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    Dhcp GaiaBridgeInterfaceDhcp
    DHCP configuration dhcp blocks are documented below.
    Dhcp6 GaiaBridgeInterfaceDhcp6
    DHCPv6 configuration dhcp6 blocks are documented below.
    Duplex string
    Computed field, returned in the response.
    Enabled bool
    N/A
    GaiaBridgeInterfaceId string
    Ipv4Address string
    N/A
    Ipv4MaskLength double
    N/A
    Ipv6Address string
    N/A
    Ipv6Autoconfig bool
    N/A
    Ipv6LocalLinkAddress string
    Computed field, returned in the response.
    Ipv6MaskLength double
    N/A
    LinkState bool
    Computed field, returned in the response.
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Members List<string>
    members blocks are documented below.
    Mtu double
    N/A
    Name string
    N/A
    ResourceId double
    N/A
    RxBytes double
    Computed field, returned in the response.
    RxPackets double
    Computed field, returned in the response.
    Speed string
    Computed field, returned in the response.
    TxBytes double
    Computed field, returned in the response.
    TxPackets double
    Computed field, returned in the response.
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    Dhcp GaiaBridgeInterfaceDhcpArgs
    DHCP configuration dhcp blocks are documented below.
    Dhcp6 GaiaBridgeInterfaceDhcp6Args
    DHCPv6 configuration dhcp6 blocks are documented below.
    Duplex string
    Computed field, returned in the response.
    Enabled bool
    N/A
    GaiaBridgeInterfaceId string
    Ipv4Address string
    N/A
    Ipv4MaskLength float64
    N/A
    Ipv6Address string
    N/A
    Ipv6Autoconfig bool
    N/A
    Ipv6LocalLinkAddress string
    Computed field, returned in the response.
    Ipv6MaskLength float64
    N/A
    LinkState bool
    Computed field, returned in the response.
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Members []string
    members blocks are documented below.
    Mtu float64
    N/A
    Name string
    N/A
    ResourceId float64
    N/A
    RxBytes float64
    Computed field, returned in the response.
    RxPackets float64
    Computed field, returned in the response.
    Speed string
    Computed field, returned in the response.
    TxBytes float64
    Computed field, returned in the response.
    TxPackets float64
    Computed field, returned in the response.
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    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
    Computed field, returned in the response.
    enabled bool
    N/A
    gaia_bridge_interface_id string
    ipv4_address string
    N/A
    ipv4_mask_length number
    N/A
    ipv6_address string
    N/A
    ipv6_autoconfig bool
    N/A
    ipv6_local_link_address string
    Computed field, returned in the response.
    ipv6_mask_length number
    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
    members list(string)
    members blocks are documented below.
    mtu number
    N/A
    name string
    N/A
    resource_id number
    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_id number
    Virtual System ID. Relevant for VSNext setups
    comments String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    dhcp GaiaBridgeInterfaceDhcp
    DHCP configuration dhcp blocks are documented below.
    dhcp6 GaiaBridgeInterfaceDhcp6
    DHCPv6 configuration dhcp6 blocks are documented below.
    duplex String
    Computed field, returned in the response.
    enabled Boolean
    N/A
    gaiaBridgeInterfaceId String
    ipv4Address String
    N/A
    ipv4MaskLength Double
    N/A
    ipv6Address String
    N/A
    ipv6Autoconfig Boolean
    N/A
    ipv6LocalLinkAddress String
    Computed field, returned in the response.
    ipv6MaskLength Double
    N/A
    linkState Boolean
    Computed field, returned in the response.
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    members List<String>
    members blocks are documented below.
    mtu Double
    N/A
    name String
    N/A
    resourceId Double
    N/A
    rxBytes Double
    Computed field, returned in the response.
    rxPackets Double
    Computed field, returned in the response.
    speed String
    Computed field, returned in the response.
    txBytes Double
    Computed field, returned in the response.
    txPackets Double
    Computed field, returned in the response.
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    comments string
    N/A
    debug boolean
    Enable debug logging for this resource.
    dhcp GaiaBridgeInterfaceDhcp
    DHCP configuration dhcp blocks are documented below.
    dhcp6 GaiaBridgeInterfaceDhcp6
    DHCPv6 configuration dhcp6 blocks are documented below.
    duplex string
    Computed field, returned in the response.
    enabled boolean
    N/A
    gaiaBridgeInterfaceId string
    ipv4Address string
    N/A
    ipv4MaskLength number
    N/A
    ipv6Address string
    N/A
    ipv6Autoconfig boolean
    N/A
    ipv6LocalLinkAddress string
    Computed field, returned in the response.
    ipv6MaskLength number
    N/A
    linkState boolean
    Computed field, returned in the response.
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    members string[]
    members blocks are documented below.
    mtu number
    N/A
    name string
    N/A
    resourceId number
    N/A
    rxBytes number
    Computed field, returned in the response.
    rxPackets number
    Computed field, returned in the response.
    speed string
    Computed field, returned in the response.
    txBytes number
    Computed field, returned in the response.
    txPackets number
    Computed field, returned in the response.
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    comments str
    N/A
    debug bool
    Enable debug logging for this resource.
    dhcp GaiaBridgeInterfaceDhcpArgs
    DHCP configuration dhcp blocks are documented below.
    dhcp6 GaiaBridgeInterfaceDhcp6Args
    DHCPv6 configuration dhcp6 blocks are documented below.
    duplex str
    Computed field, returned in the response.
    enabled bool
    N/A
    gaia_bridge_interface_id str
    ipv4_address str
    N/A
    ipv4_mask_length float
    N/A
    ipv6_address str
    N/A
    ipv6_autoconfig bool
    N/A
    ipv6_local_link_address str
    Computed field, returned in the response.
    ipv6_mask_length float
    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
    members Sequence[str]
    members blocks are documented below.
    mtu float
    N/A
    name str
    N/A
    resource_id float
    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_id float
    Virtual System ID. Relevant for VSNext setups
    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
    Computed field, returned in the response.
    enabled Boolean
    N/A
    gaiaBridgeInterfaceId String
    ipv4Address String
    N/A
    ipv4MaskLength Number
    N/A
    ipv6Address String
    N/A
    ipv6Autoconfig Boolean
    N/A
    ipv6LocalLinkAddress String
    Computed field, returned in the response.
    ipv6MaskLength Number
    N/A
    linkState Boolean
    Computed field, returned in the response.
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    members List<String>
    members blocks are documented below.
    mtu Number
    N/A
    name String
    N/A
    resourceId Number
    N/A
    rxBytes Number
    Computed field, returned in the response.
    rxPackets Number
    Computed field, returned in the response.
    speed String
    Computed field, returned in the response.
    txBytes Number
    Computed field, returned in the response.
    txPackets Number
    Computed field, returned in the response.
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Supporting Types

    GaiaBridgeInterfaceDhcp, GaiaBridgeInterfaceDhcpArgs

    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.
    ReacquireTimeout 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.
    ServerTimeout 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.
    ReacquireTimeout 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.
    ServerTimeout 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.
    reacquireTimeout 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.
    serverTimeout 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.
    reacquireTimeout 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.
    serverTimeout 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.
    reacquireTimeout 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.
    serverTimeout 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.

    GaiaBridgeInterfaceDhcp6, GaiaBridgeInterfaceDhcp6Args

    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.
    ReacquireTimeout 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.
    ServerTimeout 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.
    ReacquireTimeout 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.
    ServerTimeout 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.
    reacquireTimeout 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.
    serverTimeout 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.
    reacquireTimeout 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.
    serverTimeout 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.
    reacquireTimeout 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.
    serverTimeout 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

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial