published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Nfs Mount Point.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaNfsMountPoint("example", {
devicePath: "192.168.100.1:/nfs/export",
mountPoint: "/mnt/nfstest",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaNfsMountPoint("example",
device_path="192.168.100.1:/nfs/export",
mount_point="/mnt/nfstest")
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.NewGaiaNfsMountPoint(ctx, "example", &checkpoint.GaiaNfsMountPointArgs{
DevicePath: pulumi.String("192.168.100.1:/nfs/export"),
MountPoint: pulumi.String("/mnt/nfstest"),
})
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.GaiaNfsMountPoint("example", new()
{
DevicePath = "192.168.100.1:/nfs/export",
MountPoint = "/mnt/nfstest",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaNfsMountPoint;
import com.pulumi.checkpoint.GaiaNfsMountPointArgs;
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 GaiaNfsMountPoint("example", GaiaNfsMountPointArgs.builder()
.devicePath("192.168.100.1:/nfs/export")
.mountPoint("/mnt/nfstest")
.build());
}
}
resources:
example:
type: checkpoint:GaiaNfsMountPoint
properties:
devicePath: 192.168.100.1:/nfs/export
mountPoint: /mnt/nfstest
Example coming soon!
Create GaiaNfsMountPoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaNfsMountPoint(name: string, args: GaiaNfsMountPointArgs, opts?: CustomResourceOptions);@overload
def GaiaNfsMountPoint(resource_name: str,
args: GaiaNfsMountPointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaNfsMountPoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
device_path: Optional[str] = None,
mount_point: Optional[str] = None,
debug: Optional[bool] = None,
gaia_nfs_mount_point_id: Optional[str] = None,
member_id: Optional[str] = None,
options: Optional[str] = None)func NewGaiaNfsMountPoint(ctx *Context, name string, args GaiaNfsMountPointArgs, opts ...ResourceOption) (*GaiaNfsMountPoint, error)public GaiaNfsMountPoint(string name, GaiaNfsMountPointArgs args, CustomResourceOptions? opts = null)
public GaiaNfsMountPoint(String name, GaiaNfsMountPointArgs args)
public GaiaNfsMountPoint(String name, GaiaNfsMountPointArgs args, CustomResourceOptions options)
type: checkpoint:GaiaNfsMountPoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaianfsmountpoint" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaNfsMountPointArgs
- 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 GaiaNfsMountPointArgs
- 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 GaiaNfsMountPointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaNfsMountPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaNfsMountPointArgs
- 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 gaiaNfsMountPointResource = new Checkpoint.GaiaNfsMountPoint("gaiaNfsMountPointResource", new()
{
DevicePath = "string",
MountPoint = "string",
Debug = false,
GaiaNfsMountPointId = "string",
MemberId = "string",
Options = "string",
});
example, err := checkpoint.NewGaiaNfsMountPoint(ctx, "gaiaNfsMountPointResource", &checkpoint.GaiaNfsMountPointArgs{
DevicePath: pulumi.String("string"),
MountPoint: pulumi.String("string"),
Debug: pulumi.Bool(false),
GaiaNfsMountPointId: pulumi.String("string"),
MemberId: pulumi.String("string"),
Options: pulumi.String("string"),
})
resource "checkpoint_gaianfsmountpoint" "gaiaNfsMountPointResource" {
device_path = "string"
mount_point = "string"
debug = false
gaia_nfs_mount_point_id = "string"
member_id = "string"
options = "string"
}
var gaiaNfsMountPointResource = new GaiaNfsMountPoint("gaiaNfsMountPointResource", GaiaNfsMountPointArgs.builder()
.devicePath("string")
.mountPoint("string")
.debug(false)
.gaiaNfsMountPointId("string")
.memberId("string")
.options("string")
.build());
gaia_nfs_mount_point_resource = checkpoint.GaiaNfsMountPoint("gaiaNfsMountPointResource",
device_path="string",
mount_point="string",
debug=False,
gaia_nfs_mount_point_id="string",
member_id="string",
options="string")
const gaiaNfsMountPointResource = new checkpoint.GaiaNfsMountPoint("gaiaNfsMountPointResource", {
devicePath: "string",
mountPoint: "string",
debug: false,
gaiaNfsMountPointId: "string",
memberId: "string",
options: "string",
});
type: checkpoint:GaiaNfsMountPoint
properties:
debug: false
devicePath: string
gaiaNfsMountPointId: string
memberId: string
mountPoint: string
options: string
GaiaNfsMountPoint 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 GaiaNfsMountPoint resource accepts the following input properties:
- Device
Path string - The device that contains a file system.
- Mount
Point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Nfs stringMount Point 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
- Options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- Device
Path string - The device that contains a file system.
- Mount
Point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Nfs stringMount Point 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
- Options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- device_
path string - The device that contains a file system.
- mount_
point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- debug bool
- Enable debug logging for this resource.
- gaia_
nfs_ stringmount_ point_ 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
- options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- device
Path String - The device that contains a file system.
- mount
Point String - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Nfs StringMount Point 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
- options String
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- device
Path string - The device that contains a file system.
- mount
Point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- debug boolean
- Enable debug logging for this resource.
- gaia
Nfs stringMount Point 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
- options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- device_
path str - The device that contains a file system.
- mount_
point str - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- debug bool
- Enable debug logging for this resource.
- gaia_
nfs_ strmount_ point_ 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
- options str
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- device
Path String - The device that contains a file system.
- mount
Point String - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Nfs StringMount Point 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
- options String
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaNfsMountPoint 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 GaiaNfsMountPoint Resource
Get an existing GaiaNfsMountPoint 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?: GaiaNfsMountPointState, opts?: CustomResourceOptions): GaiaNfsMountPoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
device_path: Optional[str] = None,
gaia_nfs_mount_point_id: Optional[str] = None,
member_id: Optional[str] = None,
mount_point: Optional[str] = None,
options: Optional[str] = None) -> GaiaNfsMountPointfunc GetGaiaNfsMountPoint(ctx *Context, name string, id IDInput, state *GaiaNfsMountPointState, opts ...ResourceOption) (*GaiaNfsMountPoint, error)public static GaiaNfsMountPoint Get(string name, Input<string> id, GaiaNfsMountPointState? state, CustomResourceOptions? opts = null)public static GaiaNfsMountPoint get(String name, Output<String> id, GaiaNfsMountPointState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaNfsMountPoint get: id: ${id}import {
to = checkpoint_gaianfsmountpoint.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.
- Device
Path string - The device that contains a file system.
- Gaia
Nfs stringMount Point 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
- Mount
Point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- Options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- Debug bool
- Enable debug logging for this resource.
- Device
Path string - The device that contains a file system.
- Gaia
Nfs stringMount Point 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
- Mount
Point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- Options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- debug bool
- Enable debug logging for this resource.
- device_
path string - The device that contains a file system.
- gaia_
nfs_ stringmount_ point_ 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
- mount_
point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- debug Boolean
- Enable debug logging for this resource.
- device
Path String - The device that contains a file system.
- gaia
Nfs StringMount Point 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
- mount
Point String - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- options String
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- debug boolean
- Enable debug logging for this resource.
- device
Path string - The device that contains a file system.
- gaia
Nfs stringMount Point 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
- mount
Point string - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- options string
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- debug bool
- Enable debug logging for this resource.
- device_
path str - The device that contains a file system.
- gaia_
nfs_ strmount_ point_ 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
- mount_
point str - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- options str
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
- debug Boolean
- Enable debug logging for this resource.
- device
Path String - The device that contains a file system.
- gaia
Nfs StringMount Point 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
- mount
Point String - The directory on your root file system from which it will be possible to access the content of the device. Mount points should not have spaces in the names.
- options String
- Mount options of access to the device. For the list of the supported options, see the Gaia Administration Guide, or the built-in help in the corresponding Gaia Clish command. For explanations about these options, see the Linux man pages 'mount(8)' and 'nfs(5)'.
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