1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaArp
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 Arp.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaArp("example", {
        proxies: [
            {
                "interface": "eth0",
                ipv4Address: "172.23.22.200",
            },
            {
                ipv4Address: "172.23.22.202",
                macAddress: "1c:a8:5d:ae:f9:81",
            },
        ],
        statics: [{
            ipv4Address: "172.23.22.201",
            macAddress: "1c:a8:5d:ae:f9:81",
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaArp("example",
        proxies=[
            {
                "interface": "eth0",
                "ipv4_address": "172.23.22.200",
            },
            {
                "ipv4_address": "172.23.22.202",
                "mac_address": "1c:a8:5d:ae:f9:81",
            },
        ],
        statics=[{
            "ipv4_address": "172.23.22.201",
            "mac_address": "1c:a8:5d:ae:f9:81",
        }])
    
    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.NewGaiaArp(ctx, "example", &checkpoint.GaiaArpArgs{
    			Proxies: checkpoint.GaiaArpProxyArray{
    				&checkpoint.GaiaArpProxyArgs{
    					Interface:   pulumi.String("eth0"),
    					Ipv4Address: pulumi.String("172.23.22.200"),
    				},
    				&checkpoint.GaiaArpProxyArgs{
    					Ipv4Address: pulumi.String("172.23.22.202"),
    					MacAddress:  pulumi.String("1c:a8:5d:ae:f9:81"),
    				},
    			},
    			Statics: checkpoint.GaiaArpStaticArray{
    				&checkpoint.GaiaArpStaticArgs{
    					Ipv4Address: pulumi.String("172.23.22.201"),
    					MacAddress:  pulumi.String("1c:a8:5d:ae:f9:81"),
    				},
    			},
    		})
    		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.GaiaArp("example", new()
        {
            Proxies = new[]
            {
                new Checkpoint.Inputs.GaiaArpProxyArgs
                {
                    Interface = "eth0",
                    Ipv4Address = "172.23.22.200",
                },
                new Checkpoint.Inputs.GaiaArpProxyArgs
                {
                    Ipv4Address = "172.23.22.202",
                    MacAddress = "1c:a8:5d:ae:f9:81",
                },
            },
            Statics = new[]
            {
                new Checkpoint.Inputs.GaiaArpStaticArgs
                {
                    Ipv4Address = "172.23.22.201",
                    MacAddress = "1c:a8:5d:ae:f9:81",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaArp;
    import com.pulumi.checkpoint.GaiaArpArgs;
    import com.pulumi.checkpoint.inputs.GaiaArpProxyArgs;
    import com.pulumi.checkpoint.inputs.GaiaArpStaticArgs;
    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 GaiaArp("example", GaiaArpArgs.builder()
                .proxies(            
                    GaiaArpProxyArgs.builder()
                        .interface_("eth0")
                        .ipv4Address("172.23.22.200")
                        .build(),
                    GaiaArpProxyArgs.builder()
                        .ipv4Address("172.23.22.202")
                        .macAddress("1c:a8:5d:ae:f9:81")
                        .build())
                .statics(GaiaArpStaticArgs.builder()
                    .ipv4Address("172.23.22.201")
                    .macAddress("1c:a8:5d:ae:f9:81")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaArp
        properties:
          proxies:
            - interface: eth0
              ipv4Address: 172.23.22.200
            - ipv4Address: 172.23.22.202
              macAddress: 1c:a8:5d:ae:f9:81
          statics:
            - ipv4Address: 172.23.22.201
              macAddress: 1c:a8:5d:ae:f9:81
    
    Example coming soon!
    

    Create GaiaArp Resource

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

    Constructor syntax

    new GaiaArp(name: string, args?: GaiaArpArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaArp(resource_name: str,
                args: Optional[GaiaArpArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaArp(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                debug: Optional[bool] = None,
                gaia_arp_id: Optional[str] = None,
                member_id: Optional[str] = None,
                proxies: Optional[Sequence[GaiaArpProxyArgs]] = None,
                settings: Optional[GaiaArpSettingsArgs] = None,
                statics: Optional[Sequence[GaiaArpStaticArgs]] = None)
    func NewGaiaArp(ctx *Context, name string, args *GaiaArpArgs, opts ...ResourceOption) (*GaiaArp, error)
    public GaiaArp(string name, GaiaArpArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaArp(String name, GaiaArpArgs args)
    public GaiaArp(String name, GaiaArpArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaArp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiaarp" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaArpArgs
    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 GaiaArpArgs
    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 GaiaArpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaArpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaArpArgs
    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 gaiaArpResource = new Checkpoint.GaiaArp("gaiaArpResource", new()
    {
        Debug = false,
        GaiaArpId = "string",
        MemberId = "string",
        Proxies = new[]
        {
            new Checkpoint.Inputs.GaiaArpProxyArgs
            {
                Interface = "string",
                Ipv4Address = "string",
                MacAddress = "string",
                RealIpv4Address = "string",
            },
        },
        Settings = new Checkpoint.Inputs.GaiaArpSettingsArgs
        {
            AutoCacheSize = false,
            CacheSize = 0,
            RestrictionLevel = 0,
            ValidityTimeout = 0,
        },
        Statics = new[]
        {
            new Checkpoint.Inputs.GaiaArpStaticArgs
            {
                Ipv4Address = "string",
                MacAddress = "string",
            },
        },
    });
    
    example, err := checkpoint.NewGaiaArp(ctx, "gaiaArpResource", &checkpoint.GaiaArpArgs{
    	Debug:     pulumi.Bool(false),
    	GaiaArpId: pulumi.String("string"),
    	MemberId:  pulumi.String("string"),
    	Proxies: checkpoint.GaiaArpProxyArray{
    		&checkpoint.GaiaArpProxyArgs{
    			Interface:       pulumi.String("string"),
    			Ipv4Address:     pulumi.String("string"),
    			MacAddress:      pulumi.String("string"),
    			RealIpv4Address: pulumi.String("string"),
    		},
    	},
    	Settings: &checkpoint.GaiaArpSettingsArgs{
    		AutoCacheSize:    pulumi.Bool(false),
    		CacheSize:        pulumi.Float64(0),
    		RestrictionLevel: pulumi.Float64(0),
    		ValidityTimeout:  pulumi.Float64(0),
    	},
    	Statics: checkpoint.GaiaArpStaticArray{
    		&checkpoint.GaiaArpStaticArgs{
    			Ipv4Address: pulumi.String("string"),
    			MacAddress:  pulumi.String("string"),
    		},
    	},
    })
    
    resource "checkpoint_gaiaarp" "gaiaArpResource" {
      debug       = false
      gaia_arp_id = "string"
      member_id   = "string"
      proxies {
        interface         = "string"
        ipv4_address      = "string"
        mac_address       = "string"
        real_ipv4_address = "string"
      }
      settings = {
        auto_cache_size   = false
        cache_size        = 0
        restriction_level = 0
        validity_timeout  = 0
      }
      statics {
        ipv4_address = "string"
        mac_address  = "string"
      }
    }
    
    var gaiaArpResource = new GaiaArp("gaiaArpResource", GaiaArpArgs.builder()
        .debug(false)
        .gaiaArpId("string")
        .memberId("string")
        .proxies(GaiaArpProxyArgs.builder()
            .interface_("string")
            .ipv4Address("string")
            .macAddress("string")
            .realIpv4Address("string")
            .build())
        .settings(GaiaArpSettingsArgs.builder()
            .autoCacheSize(false)
            .cacheSize(0.0)
            .restrictionLevel(0.0)
            .validityTimeout(0.0)
            .build())
        .statics(GaiaArpStaticArgs.builder()
            .ipv4Address("string")
            .macAddress("string")
            .build())
        .build());
    
    gaia_arp_resource = checkpoint.GaiaArp("gaiaArpResource",
        debug=False,
        gaia_arp_id="string",
        member_id="string",
        proxies=[{
            "interface": "string",
            "ipv4_address": "string",
            "mac_address": "string",
            "real_ipv4_address": "string",
        }],
        settings={
            "auto_cache_size": False,
            "cache_size": float(0),
            "restriction_level": float(0),
            "validity_timeout": float(0),
        },
        statics=[{
            "ipv4_address": "string",
            "mac_address": "string",
        }])
    
    const gaiaArpResource = new checkpoint.GaiaArp("gaiaArpResource", {
        debug: false,
        gaiaArpId: "string",
        memberId: "string",
        proxies: [{
            "interface": "string",
            ipv4Address: "string",
            macAddress: "string",
            realIpv4Address: "string",
        }],
        settings: {
            autoCacheSize: false,
            cacheSize: 0,
            restrictionLevel: 0,
            validityTimeout: 0,
        },
        statics: [{
            ipv4Address: "string",
            macAddress: "string",
        }],
    });
    
    type: checkpoint:GaiaArp
    properties:
        debug: false
        gaiaArpId: string
        memberId: string
        proxies:
            - interface: string
              ipv4Address: string
              macAddress: string
              realIpv4Address: string
        settings:
            autoCacheSize: false
            cacheSize: 0
            restrictionLevel: 0
            validityTimeout: 0
        statics:
            - ipv4Address: string
              macAddress: string
    

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

    Debug bool
    Enable debug logging for this resource.
    GaiaArpId string
    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
    Proxies List<GaiaArpProxy>
    Add a specified Proxy ARP entries proxy blocks are documented below.
    Settings GaiaArpSettings
    Configure ARP settings settings blocks are documented below.
    Statics List<GaiaArpStatic>
    Add a specified Static ARP entries static blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaArpId string
    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
    Proxies []GaiaArpProxyArgs
    Add a specified Proxy ARP entries proxy blocks are documented below.
    Settings GaiaArpSettingsArgs
    Configure ARP settings settings blocks are documented below.
    Statics []GaiaArpStaticArgs
    Add a specified Static ARP entries static blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_arp_id string
    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
    proxies list(object)
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings object
    Configure ARP settings settings blocks are documented below.
    statics list(object)
    Add a specified Static ARP entries static blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaArpId String
    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
    proxies List<GaiaArpProxy>
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings GaiaArpSettings
    Configure ARP settings settings blocks are documented below.
    statics List<GaiaArpStatic>
    Add a specified Static ARP entries static blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaArpId string
    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
    proxies GaiaArpProxy[]
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings GaiaArpSettings
    Configure ARP settings settings blocks are documented below.
    statics GaiaArpStatic[]
    Add a specified Static ARP entries static blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_arp_id str
    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
    proxies Sequence[GaiaArpProxyArgs]
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings GaiaArpSettingsArgs
    Configure ARP settings settings blocks are documented below.
    statics Sequence[GaiaArpStaticArgs]
    Add a specified Static ARP entries static blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaArpId String
    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
    proxies List<Property Map>
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings Property Map
    Configure ARP settings settings blocks are documented below.
    statics List<Property Map>
    Add a specified Static ARP entries static blocks are documented below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaArp resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GaiaArp Resource

    Get an existing GaiaArp 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?: GaiaArpState, opts?: CustomResourceOptions): GaiaArp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_arp_id: Optional[str] = None,
            member_id: Optional[str] = None,
            proxies: Optional[Sequence[GaiaArpProxyArgs]] = None,
            settings: Optional[GaiaArpSettingsArgs] = None,
            statics: Optional[Sequence[GaiaArpStaticArgs]] = None) -> GaiaArp
    func GetGaiaArp(ctx *Context, name string, id IDInput, state *GaiaArpState, opts ...ResourceOption) (*GaiaArp, error)
    public static GaiaArp Get(string name, Input<string> id, GaiaArpState? state, CustomResourceOptions? opts = null)
    public static GaiaArp get(String name, Output<String> id, GaiaArpState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaArp    get:      id: ${id}
    import {
      to = checkpoint_gaiaarp.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:
    Debug bool
    Enable debug logging for this resource.
    GaiaArpId string
    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
    Proxies List<GaiaArpProxy>
    Add a specified Proxy ARP entries proxy blocks are documented below.
    Settings GaiaArpSettings
    Configure ARP settings settings blocks are documented below.
    Statics List<GaiaArpStatic>
    Add a specified Static ARP entries static blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaArpId string
    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
    Proxies []GaiaArpProxyArgs
    Add a specified Proxy ARP entries proxy blocks are documented below.
    Settings GaiaArpSettingsArgs
    Configure ARP settings settings blocks are documented below.
    Statics []GaiaArpStaticArgs
    Add a specified Static ARP entries static blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_arp_id string
    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
    proxies list(object)
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings object
    Configure ARP settings settings blocks are documented below.
    statics list(object)
    Add a specified Static ARP entries static blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaArpId String
    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
    proxies List<GaiaArpProxy>
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings GaiaArpSettings
    Configure ARP settings settings blocks are documented below.
    statics List<GaiaArpStatic>
    Add a specified Static ARP entries static blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaArpId string
    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
    proxies GaiaArpProxy[]
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings GaiaArpSettings
    Configure ARP settings settings blocks are documented below.
    statics GaiaArpStatic[]
    Add a specified Static ARP entries static blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_arp_id str
    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
    proxies Sequence[GaiaArpProxyArgs]
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings GaiaArpSettingsArgs
    Configure ARP settings settings blocks are documented below.
    statics Sequence[GaiaArpStaticArgs]
    Add a specified Static ARP entries static blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaArpId String
    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
    proxies List<Property Map>
    Add a specified Proxy ARP entries proxy blocks are documented below.
    settings Property Map
    Configure ARP settings settings blocks are documented below.
    statics List<Property Map>
    Add a specified Static ARP entries static blocks are documented below.

    Supporting Types

    GaiaArpProxy, GaiaArpProxyArgs

    Interface string
    Define the interface used when forwarding packets to the given IP address
    Ipv4Address string
    Define the IP address of a new proxy ARP entry
    MacAddress string
    Define the hardware address used when forwarding packets to the given IP address
    RealIpv4Address string
    Define the real IP address used when forwarding packets to the given IP address
    Interface string
    Define the interface used when forwarding packets to the given IP address
    Ipv4Address string
    Define the IP address of a new proxy ARP entry
    MacAddress string
    Define the hardware address used when forwarding packets to the given IP address
    RealIpv4Address string
    Define the real IP address used when forwarding packets to the given IP address
    interface string
    Define the interface used when forwarding packets to the given IP address
    ipv4_address string
    Define the IP address of a new proxy ARP entry
    mac_address string
    Define the hardware address used when forwarding packets to the given IP address
    real_ipv4_address string
    Define the real IP address used when forwarding packets to the given IP address
    interface_ String
    Define the interface used when forwarding packets to the given IP address
    ipv4Address String
    Define the IP address of a new proxy ARP entry
    macAddress String
    Define the hardware address used when forwarding packets to the given IP address
    realIpv4Address String
    Define the real IP address used when forwarding packets to the given IP address
    interface string
    Define the interface used when forwarding packets to the given IP address
    ipv4Address string
    Define the IP address of a new proxy ARP entry
    macAddress string
    Define the hardware address used when forwarding packets to the given IP address
    realIpv4Address string
    Define the real IP address used when forwarding packets to the given IP address
    interface str
    Define the interface used when forwarding packets to the given IP address
    ipv4_address str
    Define the IP address of a new proxy ARP entry
    mac_address str
    Define the hardware address used when forwarding packets to the given IP address
    real_ipv4_address str
    Define the real IP address used when forwarding packets to the given IP address
    interface String
    Define the interface used when forwarding packets to the given IP address
    ipv4Address String
    Define the IP address of a new proxy ARP entry
    macAddress String
    Define the hardware address used when forwarding packets to the given IP address
    realIpv4Address String
    Define the real IP address used when forwarding packets to the given IP address

    GaiaArpSettings, GaiaArpSettingsArgs

    AutoCacheSize bool
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    CacheSize double
    Specify the maximum number of entries in the arp cache
    RestrictionLevel double
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    ValidityTimeout double
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.
    AutoCacheSize bool
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    CacheSize float64
    Specify the maximum number of entries in the arp cache
    RestrictionLevel float64
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    ValidityTimeout float64
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.
    auto_cache_size bool
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    cache_size number
    Specify the maximum number of entries in the arp cache
    restriction_level number
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    validity_timeout number
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.
    autoCacheSize Boolean
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    cacheSize Double
    Specify the maximum number of entries in the arp cache
    restrictionLevel Double
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    validityTimeout Double
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.
    autoCacheSize boolean
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    cacheSize number
    Specify the maximum number of entries in the arp cache
    restrictionLevel number
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    validityTimeout number
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.
    auto_cache_size bool
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    cache_size float
    Specify the maximum number of entries in the arp cache
    restriction_level float
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    validity_timeout float
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.
    autoCacheSize Boolean
    Update cache size to be automatically changed depending on the current ARP table entries in the system. ARP table default size: 4096, Range: 1024-131072, Supported starting from R82.00. Supported starting from Gaia version R82
    cacheSize Number
    Specify the maximum number of entries in the arp cache
    restrictionLevel Number
    Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface: 0 - Any local address 1 - Use address from the same subnet as the target address 2 - Prefer primary address
    validityTimeout Number
    Specify time, in seconds, to keep resolved dynamic ARP entries. If the entry is not referred to and is not used by traffic before the time elapses, it is deleted. Otherwise, a request will be sent to verify the MAC address.

    GaiaArpStatic, GaiaArpStaticArgs

    Ipv4Address string
    Define the IP address of a new static ARP entry
    MacAddress string
    Specify the hardware address used when forwarding packets to the given IP address
    Ipv4Address string
    Define the IP address of a new static ARP entry
    MacAddress string
    Specify the hardware address used when forwarding packets to the given IP address
    ipv4_address string
    Define the IP address of a new static ARP entry
    mac_address string
    Specify the hardware address used when forwarding packets to the given IP address
    ipv4Address String
    Define the IP address of a new static ARP entry
    macAddress String
    Specify the hardware address used when forwarding packets to the given IP address
    ipv4Address string
    Define the IP address of a new static ARP entry
    macAddress string
    Specify the hardware address used when forwarding packets to the given IP address
    ipv4_address str
    Define the IP address of a new static ARP entry
    mac_address str
    Specify the hardware address used when forwarding packets to the given IP address
    ipv4Address String
    Define the IP address of a new static ARP entry
    macAddress String
    Specify the hardware address used when forwarding packets to the given IP address

    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