published on Monday, Jun 15, 2026 by checkpointsw
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
- Ipv4Mask
Length double - N/A
- Parent string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Gaia
Alias stringInterface Id - 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 doubleId - Virtual System ID. Relevant for VSNext setups
- Ipv4Address string
- N/A
- Ipv4Mask
Length float64 - N/A
- Parent string
- N/A
- Debug bool
- Enable debug logging for this resource.
- Gaia
Alias stringInterface Id - 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 float64Id - Virtual System ID. Relevant for VSNext setups
- ipv4_
address string - N/A
- ipv4_
mask_ numberlength - N/A
- parent string
- N/A
- debug bool
- Enable debug logging for this resource.
- gaia_
alias_ stringinterface_ id - 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_ numberid - Virtual System ID. Relevant for VSNext setups
- ipv4Address String
- N/A
- ipv4Mask
Length Double - N/A
- parent String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- gaia
Alias StringInterface Id - 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 DoubleId - Virtual System ID. Relevant for VSNext setups
- ipv4Address string
- N/A
- ipv4Mask
Length number - N/A
- parent string
- N/A
- debug boolean
- Enable debug logging for this resource.
- gaia
Alias stringInterface Id - 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 numberId - Virtual System ID. Relevant for VSNext setups
- ipv4_
address str - N/A
- ipv4_
mask_ floatlength - N/A
- parent str
- N/A
- debug bool
- Enable debug logging for this resource.
- gaia_
alias_ strinterface_ id - 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_ floatid - Virtual System ID. Relevant for VSNext setups
- ipv4Address String
- N/A
- ipv4Mask
Length Number - N/A
- parent String
- N/A
- debug Boolean
- Enable debug logging for this resource.
- gaia
Alias StringInterface Id - 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 NumberId - 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:
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) -> GaiaAliasInterfacefunc 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.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Alias stringInterface Id - Ipv4Address string
- N/A
- Ipv4Mask
Length double - N/A
- Member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- Name string
- N/A
- Parent string
- N/A
- Virtual
System doubleId - Virtual System ID. Relevant for VSNext setups
- Debug bool
- Enable debug logging for this resource.
- Gaia
Alias stringInterface Id - Ipv4Address string
- N/A
- Ipv4Mask
Length float64 - N/A
- Member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- Name string
- N/A
- Parent string
- N/A
- Virtual
System float64Id - Virtual System ID. Relevant for VSNext setups
- debug bool
- Enable debug logging for this resource.
- gaia_
alias_ stringinterface_ id - ipv4_
address string - N/A
- ipv4_
mask_ numberlength - N/A
- member_
id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- name string
- N/A
- parent string
- N/A
- virtual_
system_ numberid - Virtual System ID. Relevant for VSNext setups
- debug Boolean
- Enable debug logging for this resource.
- gaia
Alias StringInterface Id - ipv4Address String
- N/A
- ipv4Mask
Length Double - N/A
- member
Id String - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- name String
- N/A
- parent String
- N/A
- virtual
System DoubleId - Virtual System ID. Relevant for VSNext setups
- debug boolean
- Enable debug logging for this resource.
- gaia
Alias stringInterface Id - ipv4Address string
- N/A
- ipv4Mask
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 numberId - Virtual System ID. Relevant for VSNext setups
- debug bool
- Enable debug logging for this resource.
- gaia_
alias_ strinterface_ id - ipv4_
address str - N/A
- ipv4_
mask_ floatlength - N/A
- member_
id str - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- name str
- N/A
- parent str
- N/A
- virtual_
system_ floatid - Virtual System ID. Relevant for VSNext setups
- debug Boolean
- Enable debug logging for this resource.
- gaia
Alias StringInterface Id - ipv4Address String
- N/A
- ipv4Mask
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 NumberId - Virtual System ID. Relevant for VSNext setups
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw