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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaAliasInterface("example", {
        parent: "eth0",
        ipv4Address: "192.168.1.10",
        ipv4MaskLength: 24,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaAliasInterface("example",
        parent="eth0",
        ipv4_address="192.168.1.10",
        ipv4_mask_length=24)
    
    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.NewGaiaAliasInterface(ctx, "example", &checkpoint.GaiaAliasInterfaceArgs{
    			Parent:         pulumi.String("eth0"),
    			Ipv4Address:    pulumi.String("192.168.1.10"),
    			Ipv4MaskLength: pulumi.Float64(24),
    		})
    		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.GaiaAliasInterface("example", new()
        {
            Parent = "eth0",
            Ipv4Address = "192.168.1.10",
            Ipv4MaskLength = 24,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaAliasInterface;
    import com.pulumi.checkpoint.GaiaAliasInterfaceArgs;
    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 GaiaAliasInterface("example", GaiaAliasInterfaceArgs.builder()
                .parent("eth0")
                .ipv4Address("192.168.1.10")
                .ipv4MaskLength(24.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaAliasInterface
        properties:
          parent: eth0
          ipv4Address: 192.168.1.10
          ipv4MaskLength: 24
    
    Example coming soon!
    

    Create GaiaAliasInterface Resource

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

    Constructor syntax

    new GaiaAliasInterface(name: string, args: GaiaAliasInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaAliasInterface(resource_name: str,
                           args: GaiaAliasInterfaceArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaAliasInterface(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           ipv4_address: Optional[str] = None,
                           ipv4_mask_length: Optional[float] = None,
                           parent: Optional[str] = None,
                           debug: Optional[bool] = None,
                           gaia_alias_interface_id: Optional[str] = None,
                           member_id: Optional[str] = None,
                           virtual_system_id: Optional[float] = None)
    func NewGaiaAliasInterface(ctx *Context, name string, args GaiaAliasInterfaceArgs, opts ...ResourceOption) (*GaiaAliasInterface, error)
    public GaiaAliasInterface(string name, GaiaAliasInterfaceArgs args, CustomResourceOptions? opts = null)
    public GaiaAliasInterface(String name, GaiaAliasInterfaceArgs args)
    public GaiaAliasInterface(String name, GaiaAliasInterfaceArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaAliasInterface
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiaaliasinterface" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaAliasInterfaceArgs
    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 GaiaAliasInterfaceArgs
    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 GaiaAliasInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaAliasInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaAliasInterfaceArgs
    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 gaiaAliasInterfaceResource = new Checkpoint.GaiaAliasInterface("gaiaAliasInterfaceResource", new()
    {
        Ipv4Address = "string",
        Ipv4MaskLength = 0,
        Parent = "string",
        Debug = false,
        GaiaAliasInterfaceId = "string",
        MemberId = "string",
        VirtualSystemId = 0,
    });
    
    example, err := checkpoint.NewGaiaAliasInterface(ctx, "gaiaAliasInterfaceResource", &checkpoint.GaiaAliasInterfaceArgs{
    	Ipv4Address:          pulumi.String("string"),
    	Ipv4MaskLength:       pulumi.Float64(0),
    	Parent:               pulumi.String("string"),
    	Debug:                pulumi.Bool(false),
    	GaiaAliasInterfaceId: pulumi.String("string"),
    	MemberId:             pulumi.String("string"),
    	VirtualSystemId:      pulumi.Float64(0),
    })
    
    resource "checkpoint_gaiaaliasinterface" "gaiaAliasInterfaceResource" {
      ipv4_address            = "string"
      ipv4_mask_length        = 0
      parent                  = "string"
      debug                   = false
      gaia_alias_interface_id = "string"
      member_id               = "string"
      virtual_system_id       = 0
    }
    
    var gaiaAliasInterfaceResource = new GaiaAliasInterface("gaiaAliasInterfaceResource", GaiaAliasInterfaceArgs.builder()
        .ipv4Address("string")
        .ipv4MaskLength(0.0)
        .parent("string")
        .debug(false)
        .gaiaAliasInterfaceId("string")
        .memberId("string")
        .virtualSystemId(0.0)
        .build());
    
    gaia_alias_interface_resource = checkpoint.GaiaAliasInterface("gaiaAliasInterfaceResource",
        ipv4_address="string",
        ipv4_mask_length=float(0),
        parent="string",
        debug=False,
        gaia_alias_interface_id="string",
        member_id="string",
        virtual_system_id=float(0))
    
    const gaiaAliasInterfaceResource = new checkpoint.GaiaAliasInterface("gaiaAliasInterfaceResource", {
        ipv4Address: "string",
        ipv4MaskLength: 0,
        parent: "string",
        debug: false,
        gaiaAliasInterfaceId: "string",
        memberId: "string",
        virtualSystemId: 0,
    });
    
    type: checkpoint:GaiaAliasInterface
    properties:
        debug: false
        gaiaAliasInterfaceId: string
        ipv4Address: string
        ipv4MaskLength: 0
        memberId: string
        parent: string
        virtualSystemId: 0
    

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

    Ipv4Address string
    N/A
    Ipv4MaskLength double
    N/A
    Parent string
    N/A
    Debug bool
    Enable debug logging for this resource.
    GaiaAliasInterfaceId 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
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Ipv4Address string
    N/A
    Ipv4MaskLength float64
    N/A
    Parent string
    N/A
    Debug bool
    Enable debug logging for this resource.
    GaiaAliasInterfaceId 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
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    ipv4_address string
    N/A
    ipv4_mask_length number
    N/A
    parent string
    N/A
    debug bool
    Enable debug logging for this resource.
    gaia_alias_interface_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
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    ipv4Address String
    N/A
    ipv4MaskLength Double
    N/A
    parent String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    gaiaAliasInterfaceId 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
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    ipv4Address string
    N/A
    ipv4MaskLength number
    N/A
    parent string
    N/A
    debug boolean
    Enable debug logging for this resource.
    gaiaAliasInterfaceId 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
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    ipv4_address str
    N/A
    ipv4_mask_length float
    N/A
    parent str
    N/A
    debug bool
    Enable debug logging for this resource.
    gaia_alias_interface_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
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    ipv4Address String
    N/A
    ipv4MaskLength Number
    N/A
    parent String
    N/A
    debug Boolean
    Enable debug logging for this resource.
    gaiaAliasInterfaceId 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
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    N/A
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    N/A
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    N/A
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    N/A
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    N/A
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    N/A
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    N/A

    Look up Existing GaiaAliasInterface Resource

    Get an existing GaiaAliasInterface 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?: GaiaAliasInterfaceState, opts?: CustomResourceOptions): GaiaAliasInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_alias_interface_id: Optional[str] = None,
            ipv4_address: Optional[str] = None,
            ipv4_mask_length: Optional[float] = None,
            member_id: Optional[str] = None,
            name: Optional[str] = None,
            parent: Optional[str] = None,
            virtual_system_id: Optional[float] = None) -> GaiaAliasInterface
    func GetGaiaAliasInterface(ctx *Context, name string, id IDInput, state *GaiaAliasInterfaceState, opts ...ResourceOption) (*GaiaAliasInterface, error)
    public static GaiaAliasInterface Get(string name, Input<string> id, GaiaAliasInterfaceState? state, CustomResourceOptions? opts = null)
    public static GaiaAliasInterface get(String name, Output<String> id, GaiaAliasInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaAliasInterface    get:      id: ${id}
    import {
      to = checkpoint_gaiaaliasinterface.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.
    GaiaAliasInterfaceId string
    Ipv4Address string
    N/A
    Ipv4MaskLength 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
    Name string
    N/A
    Parent string
    N/A
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Debug bool
    Enable debug logging for this resource.
    GaiaAliasInterfaceId string
    Ipv4Address string
    N/A
    Ipv4MaskLength 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
    Name string
    N/A
    Parent string
    N/A
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    gaia_alias_interface_id string
    ipv4_address string
    N/A
    ipv4_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
    name string
    N/A
    parent string
    N/A
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    gaiaAliasInterfaceId String
    ipv4Address String
    N/A
    ipv4MaskLength 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
    name String
    N/A
    parent String
    N/A
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    debug boolean
    Enable debug logging for this resource.
    gaiaAliasInterfaceId string
    ipv4Address string
    N/A
    ipv4MaskLength 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
    name string
    N/A
    parent string
    N/A
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    gaia_alias_interface_id str
    ipv4_address str
    N/A
    ipv4_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
    name str
    N/A
    parent str
    N/A
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    gaiaAliasInterfaceId String
    ipv4Address String
    N/A
    ipv4MaskLength 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
    name String
    N/A
    parent String
    N/A
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    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