published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Hostname.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaHostname("example", {name: "new-hostname"});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaHostname("example", name="new-hostname")
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.NewGaiaHostname(ctx, "example", &checkpoint.GaiaHostnameArgs{
Name: pulumi.String("new-hostname"),
})
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.GaiaHostname("example", new()
{
Name = "new-hostname",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaHostname;
import com.pulumi.checkpoint.GaiaHostnameArgs;
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 GaiaHostname("example", GaiaHostnameArgs.builder()
.name("new-hostname")
.build());
}
}
resources:
example:
type: checkpoint:GaiaHostname
properties:
name: new-hostname
Example coming soon!
Create GaiaHostname Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaHostname(name: string, args?: GaiaHostnameArgs, opts?: CustomResourceOptions);@overload
def GaiaHostname(resource_name: str,
args: Optional[GaiaHostnameArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaHostname(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_hostname_id: Optional[str] = None,
member_id: Optional[str] = None,
name: Optional[str] = None)func NewGaiaHostname(ctx *Context, name string, args *GaiaHostnameArgs, opts ...ResourceOption) (*GaiaHostname, error)public GaiaHostname(string name, GaiaHostnameArgs? args = null, CustomResourceOptions? opts = null)
public GaiaHostname(String name, GaiaHostnameArgs args)
public GaiaHostname(String name, GaiaHostnameArgs args, CustomResourceOptions options)
type: checkpoint:GaiaHostname
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiahostname" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaHostnameArgs
- 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 GaiaHostnameArgs
- 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 GaiaHostnameArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaHostnameArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaHostnameArgs
- 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 gaiaHostnameResource = new Checkpoint.GaiaHostname("gaiaHostnameResource", new()
{
Debug = false,
GaiaHostnameId = "string",
MemberId = "string",
Name = "string",
});
example, err := checkpoint.NewGaiaHostname(ctx, "gaiaHostnameResource", &checkpoint.GaiaHostnameArgs{
Debug: pulumi.Bool(false),
GaiaHostnameId: pulumi.String("string"),
MemberId: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "checkpoint_gaiahostname" "gaiaHostnameResource" {
debug = false
gaia_hostname_id = "string"
member_id = "string"
name = "string"
}
var gaiaHostnameResource = new GaiaHostname("gaiaHostnameResource", GaiaHostnameArgs.builder()
.debug(false)
.gaiaHostnameId("string")
.memberId("string")
.name("string")
.build());
gaia_hostname_resource = checkpoint.GaiaHostname("gaiaHostnameResource",
debug=False,
gaia_hostname_id="string",
member_id="string",
name="string")
const gaiaHostnameResource = new checkpoint.GaiaHostname("gaiaHostnameResource", {
debug: false,
gaiaHostnameId: "string",
memberId: "string",
name: "string",
});
type: checkpoint:GaiaHostname
properties:
debug: false
gaiaHostnameId: string
memberId: string
name: string
GaiaHostname 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 GaiaHostname resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Gaia
Hostname stringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- Debug bool
- Enable debug logging for this resource.
- Gaia
Hostname stringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug bool
- Enable debug logging for this resource.
- gaia_
hostname_ stringid - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug Boolean
- Enable debug logging for this resource.
- gaia
Hostname StringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug boolean
- Enable debug logging for this resource.
- gaia
Hostname stringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug bool
- Enable debug logging for this resource.
- gaia_
hostname_ strid - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug Boolean
- Enable debug logging for this resource.
- gaia
Hostname StringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaHostname 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 GaiaHostname Resource
Get an existing GaiaHostname 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?: GaiaHostnameState, opts?: CustomResourceOptions): GaiaHostname@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_hostname_id: Optional[str] = None,
member_id: Optional[str] = None,
name: Optional[str] = None) -> GaiaHostnamefunc GetGaiaHostname(ctx *Context, name string, id IDInput, state *GaiaHostnameState, opts ...ResourceOption) (*GaiaHostname, error)public static GaiaHostname Get(string name, Input<string> id, GaiaHostnameState? state, CustomResourceOptions? opts = null)public static GaiaHostname get(String name, Output<String> id, GaiaHostnameState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaHostname get: id: ${id}import {
to = checkpoint_gaiahostname.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
Hostname stringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- Debug bool
- Enable debug logging for this resource.
- Gaia
Hostname stringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug bool
- Enable debug logging for this resource.
- gaia_
hostname_ stringid - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug Boolean
- Enable debug logging for this resource.
- gaia
Hostname StringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug boolean
- Enable debug logging for this resource.
- gaia
Hostname stringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug bool
- Enable debug logging for this resource.
- gaia_
hostname_ strid - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
- debug Boolean
- Enable debug logging for this resource.
- gaia
Hostname StringId - 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
- Hostname can be a combination of letters and numbers, it cannot be in IP format or start/end with characters such as '.' And '-'
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