1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaNfsMountSettings
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 Nfs Mount Settings.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaNfsMountSettings("example", {timeout: 5});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaNfsMountSettings("example", timeout=5)
    
    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.NewGaiaNfsMountSettings(ctx, "example", &checkpoint.GaiaNfsMountSettingsArgs{
    			Timeout: pulumi.Float64(5),
    		})
    		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.GaiaNfsMountSettings("example", new()
        {
            Timeout = 5,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaNfsMountSettings;
    import com.pulumi.checkpoint.GaiaNfsMountSettingsArgs;
    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 GaiaNfsMountSettings("example", GaiaNfsMountSettingsArgs.builder()
                .timeout(5.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaNfsMountSettings
        properties:
          timeout: 5
    
    Example coming soon!
    

    Create GaiaNfsMountSettings Resource

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

    Constructor syntax

    new GaiaNfsMountSettings(name: string, args?: GaiaNfsMountSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaNfsMountSettings(resource_name: str,
                             args: Optional[GaiaNfsMountSettingsArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaNfsMountSettings(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             debug: Optional[bool] = None,
                             gaia_nfs_mount_settings_id: Optional[str] = None,
                             member_id: Optional[str] = None,
                             timeout: Optional[float] = None)
    func NewGaiaNfsMountSettings(ctx *Context, name string, args *GaiaNfsMountSettingsArgs, opts ...ResourceOption) (*GaiaNfsMountSettings, error)
    public GaiaNfsMountSettings(string name, GaiaNfsMountSettingsArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaNfsMountSettings(String name, GaiaNfsMountSettingsArgs args)
    public GaiaNfsMountSettings(String name, GaiaNfsMountSettingsArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaNfsMountSettings
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaianfsmountsettings" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaNfsMountSettingsArgs
    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 GaiaNfsMountSettingsArgs
    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 GaiaNfsMountSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaNfsMountSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaNfsMountSettingsArgs
    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 gaiaNfsMountSettingsResource = new Checkpoint.GaiaNfsMountSettings("gaiaNfsMountSettingsResource", new()
    {
        Debug = false,
        GaiaNfsMountSettingsId = "string",
        MemberId = "string",
        Timeout = 0,
    });
    
    example, err := checkpoint.NewGaiaNfsMountSettings(ctx, "gaiaNfsMountSettingsResource", &checkpoint.GaiaNfsMountSettingsArgs{
    	Debug:                  pulumi.Bool(false),
    	GaiaNfsMountSettingsId: pulumi.String("string"),
    	MemberId:               pulumi.String("string"),
    	Timeout:                pulumi.Float64(0),
    })
    
    resource "checkpoint_gaianfsmountsettings" "gaiaNfsMountSettingsResource" {
      debug                      = false
      gaia_nfs_mount_settings_id = "string"
      member_id                  = "string"
      timeout                    = 0
    }
    
    var gaiaNfsMountSettingsResource = new GaiaNfsMountSettings("gaiaNfsMountSettingsResource", GaiaNfsMountSettingsArgs.builder()
        .debug(false)
        .gaiaNfsMountSettingsId("string")
        .memberId("string")
        .timeout(0.0)
        .build());
    
    gaia_nfs_mount_settings_resource = checkpoint.GaiaNfsMountSettings("gaiaNfsMountSettingsResource",
        debug=False,
        gaia_nfs_mount_settings_id="string",
        member_id="string",
        timeout=float(0))
    
    const gaiaNfsMountSettingsResource = new checkpoint.GaiaNfsMountSettings("gaiaNfsMountSettingsResource", {
        debug: false,
        gaiaNfsMountSettingsId: "string",
        memberId: "string",
        timeout: 0,
    });
    
    type: checkpoint:GaiaNfsMountSettings
    properties:
        debug: false
        gaiaNfsMountSettingsId: string
        memberId: string
        timeout: 0
    

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

    Debug bool
    Enable debug logging for this resource.
    GaiaNfsMountSettingsId 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
    Timeout double
    Nfs timeout in seconds.
    Debug bool
    Enable debug logging for this resource.
    GaiaNfsMountSettingsId 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
    Timeout float64
    Nfs timeout in seconds.
    debug bool
    Enable debug logging for this resource.
    gaia_nfs_mount_settings_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
    timeout number
    Nfs timeout in seconds.
    debug Boolean
    Enable debug logging for this resource.
    gaiaNfsMountSettingsId 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
    timeout Double
    Nfs timeout in seconds.
    debug boolean
    Enable debug logging for this resource.
    gaiaNfsMountSettingsId 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
    timeout number
    Nfs timeout in seconds.
    debug bool
    Enable debug logging for this resource.
    gaia_nfs_mount_settings_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
    timeout float
    Nfs timeout in seconds.
    debug Boolean
    Enable debug logging for this resource.
    gaiaNfsMountSettingsId 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
    timeout Number
    Nfs timeout in seconds.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaNfsMountSettings 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 GaiaNfsMountSettings Resource

    Get an existing GaiaNfsMountSettings 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?: GaiaNfsMountSettingsState, opts?: CustomResourceOptions): GaiaNfsMountSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_nfs_mount_settings_id: Optional[str] = None,
            member_id: Optional[str] = None,
            timeout: Optional[float] = None) -> GaiaNfsMountSettings
    func GetGaiaNfsMountSettings(ctx *Context, name string, id IDInput, state *GaiaNfsMountSettingsState, opts ...ResourceOption) (*GaiaNfsMountSettings, error)
    public static GaiaNfsMountSettings Get(string name, Input<string> id, GaiaNfsMountSettingsState? state, CustomResourceOptions? opts = null)
    public static GaiaNfsMountSettings get(String name, Output<String> id, GaiaNfsMountSettingsState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaNfsMountSettings    get:      id: ${id}
    import {
      to = checkpoint_gaianfsmountsettings.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.
    GaiaNfsMountSettingsId 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
    Timeout double
    Nfs timeout in seconds.
    Debug bool
    Enable debug logging for this resource.
    GaiaNfsMountSettingsId 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
    Timeout float64
    Nfs timeout in seconds.
    debug bool
    Enable debug logging for this resource.
    gaia_nfs_mount_settings_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
    timeout number
    Nfs timeout in seconds.
    debug Boolean
    Enable debug logging for this resource.
    gaiaNfsMountSettingsId 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
    timeout Double
    Nfs timeout in seconds.
    debug boolean
    Enable debug logging for this resource.
    gaiaNfsMountSettingsId 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
    timeout number
    Nfs timeout in seconds.
    debug bool
    Enable debug logging for this resource.
    gaia_nfs_mount_settings_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
    timeout float
    Nfs timeout in seconds.
    debug Boolean
    Enable debug logging for this resource.
    gaiaNfsMountSettingsId 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
    timeout Number
    Nfs timeout in seconds.

    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