1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaVxlanInterface
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 Vxlan Interface.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaVxlanInterface("example", {
        vxlanId: 100,
        memberOf: "eth0",
        remoteIpAddress: "10.0.0.1",
        comments: "example vxlan tunnel",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaVxlanInterface("example",
        vxlan_id=100,
        member_of="eth0",
        remote_ip_address="10.0.0.1",
        comments="example vxlan tunnel")
    
    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.NewGaiaVxlanInterface(ctx, "example", &checkpoint.GaiaVxlanInterfaceArgs{
    			VxlanId:         pulumi.Float64(100),
    			MemberOf:        pulumi.String("eth0"),
    			RemoteIpAddress: pulumi.String("10.0.0.1"),
    			Comments:        pulumi.String("example vxlan tunnel"),
    		})
    		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.GaiaVxlanInterface("example", new()
        {
            VxlanId = 100,
            MemberOf = "eth0",
            RemoteIpAddress = "10.0.0.1",
            Comments = "example vxlan tunnel",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaVxlanInterface;
    import com.pulumi.checkpoint.GaiaVxlanInterfaceArgs;
    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 GaiaVxlanInterface("example", GaiaVxlanInterfaceArgs.builder()
                .vxlanId(100.0)
                .memberOf("eth0")
                .remoteIpAddress("10.0.0.1")
                .comments("example vxlan tunnel")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaVxlanInterface
        properties:
          vxlanId: 100
          memberOf: eth0
          remoteIpAddress: 10.0.0.1
          comments: example vxlan tunnel
    
    Example coming soon!
    

    Create GaiaVxlanInterface Resource

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

    Constructor syntax

    new GaiaVxlanInterface(name: string, args: GaiaVxlanInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaVxlanInterface(resource_name: str,
                           args: GaiaVxlanInterfaceArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaVxlanInterface(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           member_of: Optional[str] = None,
                           vxlan_id: Optional[float] = None,
                           remote_ip_address: Optional[str] = None,
                           ipv6_autoconfig: Optional[bool] = None,
                           member_id: Optional[str] = None,
                           ipv4_address: Optional[str] = None,
                           ipv4_mask_length: Optional[float] = None,
                           ipv6_address: Optional[str] = None,
                           comments: Optional[str] = None,
                           ipv6_mask_length: Optional[float] = None,
                           gaia_vxlan_interface_id: Optional[str] = None,
                           enabled: Optional[bool] = None,
                           mtu: Optional[float] = None,
                           name: Optional[str] = None,
                           destination_port: Optional[float] = None,
                           virtual_system_id: Optional[float] = None,
                           debug: Optional[bool] = None)
    func NewGaiaVxlanInterface(ctx *Context, name string, args GaiaVxlanInterfaceArgs, opts ...ResourceOption) (*GaiaVxlanInterface, error)
    public GaiaVxlanInterface(string name, GaiaVxlanInterfaceArgs args, CustomResourceOptions? opts = null)
    public GaiaVxlanInterface(String name, GaiaVxlanInterfaceArgs args)
    public GaiaVxlanInterface(String name, GaiaVxlanInterfaceArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaVxlanInterface
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiavxlaninterface" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaVxlanInterfaceArgs
    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 GaiaVxlanInterfaceArgs
    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 GaiaVxlanInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaVxlanInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaVxlanInterfaceArgs
    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 gaiaVxlanInterfaceResource = new Checkpoint.GaiaVxlanInterface("gaiaVxlanInterfaceResource", new()
    {
        MemberOf = "string",
        VxlanId = 0,
        RemoteIpAddress = "string",
        Ipv6Autoconfig = false,
        MemberId = "string",
        Ipv4Address = "string",
        Ipv4MaskLength = 0,
        Ipv6Address = "string",
        Comments = "string",
        Ipv6MaskLength = 0,
        GaiaVxlanInterfaceId = "string",
        Enabled = false,
        Mtu = 0,
        Name = "string",
        DestinationPort = 0,
        VirtualSystemId = 0,
        Debug = false,
    });
    
    example, err := checkpoint.NewGaiaVxlanInterface(ctx, "gaiaVxlanInterfaceResource", &checkpoint.GaiaVxlanInterfaceArgs{
    	MemberOf:             pulumi.String("string"),
    	VxlanId:              pulumi.Float64(0),
    	RemoteIpAddress:      pulumi.String("string"),
    	Ipv6Autoconfig:       pulumi.Bool(false),
    	MemberId:             pulumi.String("string"),
    	Ipv4Address:          pulumi.String("string"),
    	Ipv4MaskLength:       pulumi.Float64(0),
    	Ipv6Address:          pulumi.String("string"),
    	Comments:             pulumi.String("string"),
    	Ipv6MaskLength:       pulumi.Float64(0),
    	GaiaVxlanInterfaceId: pulumi.String("string"),
    	Enabled:              pulumi.Bool(false),
    	Mtu:                  pulumi.Float64(0),
    	Name:                 pulumi.String("string"),
    	DestinationPort:      pulumi.Float64(0),
    	VirtualSystemId:      pulumi.Float64(0),
    	Debug:                pulumi.Bool(false),
    })
    
    resource "checkpoint_gaiavxlaninterface" "gaiaVxlanInterfaceResource" {
      member_of               = "string"
      vxlan_id                = 0
      remote_ip_address       = "string"
      ipv6_autoconfig         = false
      member_id               = "string"
      ipv4_address            = "string"
      ipv4_mask_length        = 0
      ipv6_address            = "string"
      comments                = "string"
      ipv6_mask_length        = 0
      gaia_vxlan_interface_id = "string"
      enabled                 = false
      mtu                     = 0
      name                    = "string"
      destination_port        = 0
      virtual_system_id       = 0
      debug                   = false
    }
    
    var gaiaVxlanInterfaceResource = new GaiaVxlanInterface("gaiaVxlanInterfaceResource", GaiaVxlanInterfaceArgs.builder()
        .memberOf("string")
        .vxlanId(0.0)
        .remoteIpAddress("string")
        .ipv6Autoconfig(false)
        .memberId("string")
        .ipv4Address("string")
        .ipv4MaskLength(0.0)
        .ipv6Address("string")
        .comments("string")
        .ipv6MaskLength(0.0)
        .gaiaVxlanInterfaceId("string")
        .enabled(false)
        .mtu(0.0)
        .name("string")
        .destinationPort(0.0)
        .virtualSystemId(0.0)
        .debug(false)
        .build());
    
    gaia_vxlan_interface_resource = checkpoint.GaiaVxlanInterface("gaiaVxlanInterfaceResource",
        member_of="string",
        vxlan_id=float(0),
        remote_ip_address="string",
        ipv6_autoconfig=False,
        member_id="string",
        ipv4_address="string",
        ipv4_mask_length=float(0),
        ipv6_address="string",
        comments="string",
        ipv6_mask_length=float(0),
        gaia_vxlan_interface_id="string",
        enabled=False,
        mtu=float(0),
        name="string",
        destination_port=float(0),
        virtual_system_id=float(0),
        debug=False)
    
    const gaiaVxlanInterfaceResource = new checkpoint.GaiaVxlanInterface("gaiaVxlanInterfaceResource", {
        memberOf: "string",
        vxlanId: 0,
        remoteIpAddress: "string",
        ipv6Autoconfig: false,
        memberId: "string",
        ipv4Address: "string",
        ipv4MaskLength: 0,
        ipv6Address: "string",
        comments: "string",
        ipv6MaskLength: 0,
        gaiaVxlanInterfaceId: "string",
        enabled: false,
        mtu: 0,
        name: "string",
        destinationPort: 0,
        virtualSystemId: 0,
        debug: false,
    });
    
    type: checkpoint:GaiaVxlanInterface
    properties:
        comments: string
        debug: false
        destinationPort: 0
        enabled: false
        gaiaVxlanInterfaceId: string
        ipv4Address: string
        ipv4MaskLength: 0
        ipv6Address: string
        ipv6Autoconfig: false
        ipv6MaskLength: 0
        memberId: string
        memberOf: string
        mtu: 0
        name: string
        remoteIpAddress: string
        virtualSystemId: 0
        vxlanId: 0
    

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

    MemberOf string
    The physical device used for tunnel endpoint communication
    RemoteIpAddress string
    Vxlan remote address
    VxlanId double
    The Vxlan Network Identifier (aka VNI)
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    DestinationPort double
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    Enabled bool
    N/A
    GaiaVxlanInterfaceId 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
    Mtu double
    N/A
    Name string
    Existing Vxlan Interface name
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    MemberOf string
    The physical device used for tunnel endpoint communication
    RemoteIpAddress string
    Vxlan remote address
    VxlanId float64
    The Vxlan Network Identifier (aka VNI)
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    DestinationPort float64
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    Enabled bool
    N/A
    GaiaVxlanInterfaceId 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
    Mtu float64
    N/A
    Name string
    Existing Vxlan Interface name
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    member_of string
    The physical device used for tunnel endpoint communication
    remote_ip_address string
    Vxlan remote address
    vxlan_id number
    The Vxlan Network Identifier (aka VNI)
    comments string
    N/A
    debug bool
    Enable debug logging for this resource.
    destination_port number
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    enabled bool
    N/A
    gaia_vxlan_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
    mtu number
    N/A
    name string
    Existing Vxlan Interface name
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    memberOf String
    The physical device used for tunnel endpoint communication
    remoteIpAddress String
    Vxlan remote address
    vxlanId Double
    The Vxlan Network Identifier (aka VNI)
    comments String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    destinationPort Double
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    enabled Boolean
    N/A
    gaiaVxlanInterfaceId 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
    mtu Double
    N/A
    name String
    Existing Vxlan Interface name
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    memberOf string
    The physical device used for tunnel endpoint communication
    remoteIpAddress string
    Vxlan remote address
    vxlanId number
    The Vxlan Network Identifier (aka VNI)
    comments string
    N/A
    debug boolean
    Enable debug logging for this resource.
    destinationPort number
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    enabled boolean
    N/A
    gaiaVxlanInterfaceId 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
    mtu number
    N/A
    name string
    Existing Vxlan Interface name
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    member_of str
    The physical device used for tunnel endpoint communication
    remote_ip_address str
    Vxlan remote address
    vxlan_id float
    The Vxlan Network Identifier (aka VNI)
    comments str
    N/A
    debug bool
    Enable debug logging for this resource.
    destination_port float
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    enabled bool
    N/A
    gaia_vxlan_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
    mtu float
    N/A
    name str
    Existing Vxlan Interface name
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    memberOf String
    The physical device used for tunnel endpoint communication
    remoteIpAddress String
    Vxlan remote address
    vxlanId Number
    The Vxlan Network Identifier (aka VNI)
    comments String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    destinationPort Number
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    enabled Boolean
    N/A
    gaiaVxlanInterfaceId 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
    mtu Number
    N/A
    name String
    Existing Vxlan Interface name
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

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

    Get an existing GaiaVxlanInterface 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?: GaiaVxlanInterfaceState, opts?: CustomResourceOptions): GaiaVxlanInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comments: Optional[str] = None,
            debug: Optional[bool] = None,
            destination_port: Optional[float] = None,
            duplex: Optional[str] = None,
            enabled: Optional[bool] = None,
            gaia_vxlan_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,
            member_of: Optional[str] = None,
            mtu: Optional[float] = None,
            name: Optional[str] = None,
            remote_ip_address: 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,
            vxlan_id: Optional[float] = None) -> GaiaVxlanInterface
    func GetGaiaVxlanInterface(ctx *Context, name string, id IDInput, state *GaiaVxlanInterfaceState, opts ...ResourceOption) (*GaiaVxlanInterface, error)
    public static GaiaVxlanInterface Get(string name, Input<string> id, GaiaVxlanInterfaceState? state, CustomResourceOptions? opts = null)
    public static GaiaVxlanInterface get(String name, Output<String> id, GaiaVxlanInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaVxlanInterface    get:      id: ${id}
    import {
      to = checkpoint_gaiavxlaninterface.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.
    DestinationPort double
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    Duplex string
    Computed field, returned in the response.
    Enabled bool
    N/A
    GaiaVxlanInterfaceId 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
    MemberOf string
    The physical device used for tunnel endpoint communication
    Mtu double
    N/A
    Name string
    Existing Vxlan Interface name
    RemoteIpAddress string
    Vxlan remote address
    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
    VxlanId double
    The Vxlan Network Identifier (aka VNI)
    Comments string
    N/A
    Debug bool
    Enable debug logging for this resource.
    DestinationPort float64
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    Duplex string
    Computed field, returned in the response.
    Enabled bool
    N/A
    GaiaVxlanInterfaceId 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
    MemberOf string
    The physical device used for tunnel endpoint communication
    Mtu float64
    N/A
    Name string
    Existing Vxlan Interface name
    RemoteIpAddress string
    Vxlan remote address
    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
    VxlanId float64
    The Vxlan Network Identifier (aka VNI)
    comments string
    N/A
    debug bool
    Enable debug logging for this resource.
    destination_port number
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    duplex string
    Computed field, returned in the response.
    enabled bool
    N/A
    gaia_vxlan_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
    member_of string
    The physical device used for tunnel endpoint communication
    mtu number
    N/A
    name string
    Existing Vxlan Interface name
    remote_ip_address string
    Vxlan remote address
    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
    vxlan_id number
    The Vxlan Network Identifier (aka VNI)
    comments String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    destinationPort Double
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    duplex String
    Computed field, returned in the response.
    enabled Boolean
    N/A
    gaiaVxlanInterfaceId 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
    memberOf String
    The physical device used for tunnel endpoint communication
    mtu Double
    N/A
    name String
    Existing Vxlan Interface name
    remoteIpAddress String
    Vxlan remote address
    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
    vxlanId Double
    The Vxlan Network Identifier (aka VNI)
    comments string
    N/A
    debug boolean
    Enable debug logging for this resource.
    destinationPort number
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    duplex string
    Computed field, returned in the response.
    enabled boolean
    N/A
    gaiaVxlanInterfaceId 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
    memberOf string
    The physical device used for tunnel endpoint communication
    mtu number
    N/A
    name string
    Existing Vxlan Interface name
    remoteIpAddress string
    Vxlan remote address
    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
    vxlanId number
    The Vxlan Network Identifier (aka VNI)
    comments str
    N/A
    debug bool
    Enable debug logging for this resource.
    destination_port float
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    duplex str
    Computed field, returned in the response.
    enabled bool
    N/A
    gaia_vxlan_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
    member_of str
    The physical device used for tunnel endpoint communication
    mtu float
    N/A
    name str
    Existing Vxlan Interface name
    remote_ip_address str
    Vxlan remote address
    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
    vxlan_id float
    The Vxlan Network Identifier (aka VNI)
    comments String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    destinationPort Number
    The UDP destination port to communicate to the remote Vxlan tunnel endpoint
    duplex String
    Computed field, returned in the response.
    enabled Boolean
    N/A
    gaiaVxlanInterfaceId 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
    memberOf String
    The physical device used for tunnel endpoint communication
    mtu Number
    N/A
    name String
    Existing Vxlan Interface name
    remoteIpAddress String
    Vxlan remote address
    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
    vxlanId Number
    The Vxlan Network Identifier (aka VNI)

    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