1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaLightshotPartition
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 Lightshot Partition.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaLightshotPartition("example", {size: 17});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaLightshotPartition("example", size=17)
    
    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.NewGaiaLightshotPartition(ctx, "example", &checkpoint.GaiaLightshotPartitionArgs{
    			Size: pulumi.Float64(17),
    		})
    		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.GaiaLightshotPartition("example", new()
        {
            Size = 17,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaLightshotPartition;
    import com.pulumi.checkpoint.GaiaLightshotPartitionArgs;
    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 GaiaLightshotPartition("example", GaiaLightshotPartitionArgs.builder()
                .size(17.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaLightshotPartition
        properties:
          size: 17
    
    Example coming soon!
    

    Create GaiaLightshotPartition Resource

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

    Constructor syntax

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

    Parameters

    name string
    The unique name of the resource.
    args GaiaLightshotPartitionArgs
    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 GaiaLightshotPartitionArgs
    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 GaiaLightshotPartitionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaLightshotPartitionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaLightshotPartitionArgs
    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 gaiaLightshotPartitionResource = new Checkpoint.GaiaLightshotPartition("gaiaLightshotPartitionResource", new()
    {
        Size = 0,
        Debug = false,
        GaiaLightshotPartitionId = "string",
        MemberId = "string",
    });
    
    example, err := checkpoint.NewGaiaLightshotPartition(ctx, "gaiaLightshotPartitionResource", &checkpoint.GaiaLightshotPartitionArgs{
    	Size:                     pulumi.Float64(0),
    	Debug:                    pulumi.Bool(false),
    	GaiaLightshotPartitionId: pulumi.String("string"),
    	MemberId:                 pulumi.String("string"),
    })
    
    resource "checkpoint_gaialightshotpartition" "gaiaLightshotPartitionResource" {
      size                        = 0
      debug                       = false
      gaia_lightshot_partition_id = "string"
      member_id                   = "string"
    }
    
    var gaiaLightshotPartitionResource = new GaiaLightshotPartition("gaiaLightshotPartitionResource", GaiaLightshotPartitionArgs.builder()
        .size(0.0)
        .debug(false)
        .gaiaLightshotPartitionId("string")
        .memberId("string")
        .build());
    
    gaia_lightshot_partition_resource = checkpoint.GaiaLightshotPartition("gaiaLightshotPartitionResource",
        size=float(0),
        debug=False,
        gaia_lightshot_partition_id="string",
        member_id="string")
    
    const gaiaLightshotPartitionResource = new checkpoint.GaiaLightshotPartition("gaiaLightshotPartitionResource", {
        size: 0,
        debug: false,
        gaiaLightshotPartitionId: "string",
        memberId: "string",
    });
    
    type: checkpoint:GaiaLightshotPartition
    properties:
        debug: false
        gaiaLightshotPartitionId: string
        memberId: string
        size: 0
    

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

    Size double
    New size (GB) for setting light shotpartition
    Debug bool
    Enable debug logging for this resource.
    GaiaLightshotPartitionId 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
    Size float64
    New size (GB) for setting light shotpartition
    Debug bool
    Enable debug logging for this resource.
    GaiaLightshotPartitionId 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
    size number
    New size (GB) for setting light shotpartition
    debug bool
    Enable debug logging for this resource.
    gaia_lightshot_partition_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
    size Double
    New size (GB) for setting light shotpartition
    debug Boolean
    Enable debug logging for this resource.
    gaiaLightshotPartitionId 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
    size number
    New size (GB) for setting light shotpartition
    debug boolean
    Enable debug logging for this resource.
    gaiaLightshotPartitionId 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
    size float
    New size (GB) for setting light shotpartition
    debug bool
    Enable debug logging for this resource.
    gaia_lightshot_partition_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
    size Number
    New size (GB) for setting light shotpartition
    debug Boolean
    Enable debug logging for this resource.
    gaiaLightshotPartitionId 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

    Outputs

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

    Available double
    Id string
    The provider-assigned unique ID for this managed resource.
    MountOn string
    Used double
    Available float64
    Id string
    The provider-assigned unique ID for this managed resource.
    MountOn string
    Used float64
    available number
    id string
    The provider-assigned unique ID for this managed resource.
    mount_on string
    used number
    available Double
    id String
    The provider-assigned unique ID for this managed resource.
    mountOn String
    used Double
    available number
    id string
    The provider-assigned unique ID for this managed resource.
    mountOn string
    used number
    available float
    id str
    The provider-assigned unique ID for this managed resource.
    mount_on str
    used float
    available Number
    id String
    The provider-assigned unique ID for this managed resource.
    mountOn String
    used Number

    Look up Existing GaiaLightshotPartition Resource

    Get an existing GaiaLightshotPartition 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?: GaiaLightshotPartitionState, opts?: CustomResourceOptions): GaiaLightshotPartition
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            available: Optional[float] = None,
            debug: Optional[bool] = None,
            gaia_lightshot_partition_id: Optional[str] = None,
            member_id: Optional[str] = None,
            mount_on: Optional[str] = None,
            size: Optional[float] = None,
            used: Optional[float] = None) -> GaiaLightshotPartition
    func GetGaiaLightshotPartition(ctx *Context, name string, id IDInput, state *GaiaLightshotPartitionState, opts ...ResourceOption) (*GaiaLightshotPartition, error)
    public static GaiaLightshotPartition Get(string name, Input<string> id, GaiaLightshotPartitionState? state, CustomResourceOptions? opts = null)
    public static GaiaLightshotPartition get(String name, Output<String> id, GaiaLightshotPartitionState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaLightshotPartition    get:      id: ${id}
    import {
      to = checkpoint_gaialightshotpartition.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:
    Available double
    Debug bool
    Enable debug logging for this resource.
    GaiaLightshotPartitionId 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
    MountOn string
    Size double
    New size (GB) for setting light shotpartition
    Used double
    Available float64
    Debug bool
    Enable debug logging for this resource.
    GaiaLightshotPartitionId 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
    MountOn string
    Size float64
    New size (GB) for setting light shotpartition
    Used float64
    available number
    debug bool
    Enable debug logging for this resource.
    gaia_lightshot_partition_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
    mount_on string
    size number
    New size (GB) for setting light shotpartition
    used number
    available Double
    debug Boolean
    Enable debug logging for this resource.
    gaiaLightshotPartitionId 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
    mountOn String
    size Double
    New size (GB) for setting light shotpartition
    used Double
    available number
    debug boolean
    Enable debug logging for this resource.
    gaiaLightshotPartitionId 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
    mountOn string
    size number
    New size (GB) for setting light shotpartition
    used number
    available float
    debug bool
    Enable debug logging for this resource.
    gaia_lightshot_partition_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
    mount_on str
    size float
    New size (GB) for setting light shotpartition
    used float
    available Number
    debug Boolean
    Enable debug logging for this resource.
    gaiaLightshotPartitionId 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
    mountOn String
    size Number
    New size (GB) for setting light shotpartition
    used Number

    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