1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaParam
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 Param.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaParam("example", {paramLists: [{
        paramPath: "firewall.ipv4.acceleration.cphwd_agg_log_delay",
        useDefault: true,
    }]});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaParam("example", param_lists=[{
        "param_path": "firewall.ipv4.acceleration.cphwd_agg_log_delay",
        "use_default": True,
    }])
    
    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.NewGaiaParam(ctx, "example", &checkpoint.GaiaParamArgs{
    			ParamLists: checkpoint.GaiaParamParamListArray{
    				&checkpoint.GaiaParamParamListArgs{
    					ParamPath:  pulumi.String("firewall.ipv4.acceleration.cphwd_agg_log_delay"),
    					UseDefault: pulumi.Bool(true),
    				},
    			},
    		})
    		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.GaiaParam("example", new()
        {
            ParamLists = new[]
            {
                new Checkpoint.Inputs.GaiaParamParamListArgs
                {
                    ParamPath = "firewall.ipv4.acceleration.cphwd_agg_log_delay",
                    UseDefault = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaParam;
    import com.pulumi.checkpoint.GaiaParamArgs;
    import com.pulumi.checkpoint.inputs.GaiaParamParamListArgs;
    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 GaiaParam("example", GaiaParamArgs.builder()
                .paramLists(GaiaParamParamListArgs.builder()
                    .paramPath("firewall.ipv4.acceleration.cphwd_agg_log_delay")
                    .useDefault(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaParam
        properties:
          paramLists:
            - paramPath: firewall.ipv4.acceleration.cphwd_agg_log_delay
              useDefault: true
    
    Example coming soon!
    

    Create GaiaParam Resource

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

    Constructor syntax

    new GaiaParam(name: string, args: GaiaParamArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaParam(resource_name: str,
                  args: GaiaParamArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaParam(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  param_lists: Optional[Sequence[GaiaParamParamListArgs]] = None,
                  debug: Optional[bool] = None,
                  dry_run: Optional[bool] = None,
                  filter_by: Optional[str] = None,
                  gaia_param_id: Optional[str] = None,
                  member_id: Optional[str] = None,
                  param_path: Optional[str] = None,
                  use_regex: Optional[bool] = None,
                  virtual_system_id: Optional[str] = None)
    func NewGaiaParam(ctx *Context, name string, args GaiaParamArgs, opts ...ResourceOption) (*GaiaParam, error)
    public GaiaParam(string name, GaiaParamArgs args, CustomResourceOptions? opts = null)
    public GaiaParam(String name, GaiaParamArgs args)
    public GaiaParam(String name, GaiaParamArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaParam
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiaparam" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaParamArgs
    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 GaiaParamArgs
    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 GaiaParamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaParamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaParamArgs
    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 gaiaParamResource = new Checkpoint.GaiaParam("gaiaParamResource", new()
    {
        ParamLists = new[]
        {
            new Checkpoint.Inputs.GaiaParamParamListArgs
            {
                Comments = "string",
                ParamPath = "string",
                UseDefault = false,
                Value = "string",
                VirtualSystemId = "string",
                Volatile = false,
            },
        },
        Debug = false,
        DryRun = false,
        FilterBy = "string",
        GaiaParamId = "string",
        MemberId = "string",
        ParamPath = "string",
        UseRegex = false,
        VirtualSystemId = "string",
    });
    
    example, err := checkpoint.NewGaiaParam(ctx, "gaiaParamResource", &checkpoint.GaiaParamArgs{
    	ParamLists: checkpoint.GaiaParamParamListArray{
    		&checkpoint.GaiaParamParamListArgs{
    			Comments:        pulumi.String("string"),
    			ParamPath:       pulumi.String("string"),
    			UseDefault:      pulumi.Bool(false),
    			Value:           pulumi.String("string"),
    			VirtualSystemId: pulumi.String("string"),
    			Volatile:        pulumi.Bool(false),
    		},
    	},
    	Debug:           pulumi.Bool(false),
    	DryRun:          pulumi.Bool(false),
    	FilterBy:        pulumi.String("string"),
    	GaiaParamId:     pulumi.String("string"),
    	MemberId:        pulumi.String("string"),
    	ParamPath:       pulumi.String("string"),
    	UseRegex:        pulumi.Bool(false),
    	VirtualSystemId: pulumi.String("string"),
    })
    
    resource "checkpoint_gaiaparam" "gaiaParamResource" {
      param_lists {
        comments          = "string"
        param_path        = "string"
        use_default       = false
        value             = "string"
        virtual_system_id = "string"
        volatile          = false
      }
      debug             = false
      dry_run           = false
      filter_by         = "string"
      gaia_param_id     = "string"
      member_id         = "string"
      param_path        = "string"
      use_regex         = false
      virtual_system_id = "string"
    }
    
    var gaiaParamResource = new GaiaParam("gaiaParamResource", GaiaParamArgs.builder()
        .paramLists(GaiaParamParamListArgs.builder()
            .comments("string")
            .paramPath("string")
            .useDefault(false)
            .value("string")
            .virtualSystemId("string")
            .volatile_(false)
            .build())
        .debug(false)
        .dryRun(false)
        .filterBy("string")
        .gaiaParamId("string")
        .memberId("string")
        .paramPath("string")
        .useRegex(false)
        .virtualSystemId("string")
        .build());
    
    gaia_param_resource = checkpoint.GaiaParam("gaiaParamResource",
        param_lists=[{
            "comments": "string",
            "param_path": "string",
            "use_default": False,
            "value": "string",
            "virtual_system_id": "string",
            "volatile": False,
        }],
        debug=False,
        dry_run=False,
        filter_by="string",
        gaia_param_id="string",
        member_id="string",
        param_path="string",
        use_regex=False,
        virtual_system_id="string")
    
    const gaiaParamResource = new checkpoint.GaiaParam("gaiaParamResource", {
        paramLists: [{
            comments: "string",
            paramPath: "string",
            useDefault: false,
            value: "string",
            virtualSystemId: "string",
            volatile: false,
        }],
        debug: false,
        dryRun: false,
        filterBy: "string",
        gaiaParamId: "string",
        memberId: "string",
        paramPath: "string",
        useRegex: false,
        virtualSystemId: "string",
    });
    
    type: checkpoint:GaiaParam
    properties:
        debug: false
        dryRun: false
        filterBy: string
        gaiaParamId: string
        memberId: string
        paramLists:
            - comments: string
              paramPath: string
              useDefault: false
              value: string
              virtualSystemId: string
              volatile: false
        paramPath: string
        useRegex: false
        virtualSystemId: string
    

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

    ParamLists List<GaiaParamParamList>
    List of parameters to be set param_list blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    DryRun bool
    run the request without saving to data base, return only with the changed values.
    FilterBy string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    GaiaParamId 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
    ParamPath string
    Paramter full path or prefix
    UseRegex bool
    indicates that parameter param_path includes *
    VirtualSystemId string
    VSX vs-id which present the context switch
    ParamLists []GaiaParamParamListArgs
    List of parameters to be set param_list blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    DryRun bool
    run the request without saving to data base, return only with the changed values.
    FilterBy string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    GaiaParamId 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
    ParamPath string
    Paramter full path or prefix
    UseRegex bool
    indicates that parameter param_path includes *
    VirtualSystemId string
    VSX vs-id which present the context switch
    param_lists list(object)
    List of parameters to be set param_list blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    dry_run bool
    run the request without saving to data base, return only with the changed values.
    filter_by string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaia_param_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
    param_path string
    Paramter full path or prefix
    use_regex bool
    indicates that parameter param_path includes *
    virtual_system_id string
    VSX vs-id which present the context switch
    paramLists List<GaiaParamParamList>
    List of parameters to be set param_list blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    dryRun Boolean
    run the request without saving to data base, return only with the changed values.
    filterBy String
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaiaParamId 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
    paramPath String
    Paramter full path or prefix
    useRegex Boolean
    indicates that parameter param_path includes *
    virtualSystemId String
    VSX vs-id which present the context switch
    paramLists GaiaParamParamList[]
    List of parameters to be set param_list blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    dryRun boolean
    run the request without saving to data base, return only with the changed values.
    filterBy string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaiaParamId 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
    paramPath string
    Paramter full path or prefix
    useRegex boolean
    indicates that parameter param_path includes *
    virtualSystemId string
    VSX vs-id which present the context switch
    param_lists Sequence[GaiaParamParamListArgs]
    List of parameters to be set param_list blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    dry_run bool
    run the request without saving to data base, return only with the changed values.
    filter_by str
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaia_param_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
    param_path str
    Paramter full path or prefix
    use_regex bool
    indicates that parameter param_path includes *
    virtual_system_id str
    VSX vs-id which present the context switch
    paramLists List<Property Map>
    List of parameters to be set param_list blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    dryRun Boolean
    run the request without saving to data base, return only with the changed values.
    filterBy String
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaiaParamId 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
    paramPath String
    Paramter full path or prefix
    useRegex Boolean
    indicates that parameter param_path includes *
    virtualSystemId String
    VSX vs-id which present the context switch

    Outputs

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

    Get an existing GaiaParam 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?: GaiaParamState, opts?: CustomResourceOptions): GaiaParam
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            dry_run: Optional[bool] = None,
            filter_by: Optional[str] = None,
            gaia_param_id: Optional[str] = None,
            member_id: Optional[str] = None,
            param_lists: Optional[Sequence[GaiaParamParamListArgs]] = None,
            param_path: Optional[str] = None,
            use_regex: Optional[bool] = None,
            virtual_system_id: Optional[str] = None) -> GaiaParam
    func GetGaiaParam(ctx *Context, name string, id IDInput, state *GaiaParamState, opts ...ResourceOption) (*GaiaParam, error)
    public static GaiaParam Get(string name, Input<string> id, GaiaParamState? state, CustomResourceOptions? opts = null)
    public static GaiaParam get(String name, Output<String> id, GaiaParamState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaParam    get:      id: ${id}
    import {
      to = checkpoint_gaiaparam.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.
    DryRun bool
    run the request without saving to data base, return only with the changed values.
    FilterBy string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    GaiaParamId 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
    ParamLists List<GaiaParamParamList>
    List of parameters to be set param_list blocks are documented below.
    ParamPath string
    Paramter full path or prefix
    UseRegex bool
    indicates that parameter param_path includes *
    VirtualSystemId string
    VSX vs-id which present the context switch
    Debug bool
    Enable debug logging for this resource.
    DryRun bool
    run the request without saving to data base, return only with the changed values.
    FilterBy string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    GaiaParamId 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
    ParamLists []GaiaParamParamListArgs
    List of parameters to be set param_list blocks are documented below.
    ParamPath string
    Paramter full path or prefix
    UseRegex bool
    indicates that parameter param_path includes *
    VirtualSystemId string
    VSX vs-id which present the context switch
    debug bool
    Enable debug logging for this resource.
    dry_run bool
    run the request without saving to data base, return only with the changed values.
    filter_by string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaia_param_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
    param_lists list(object)
    List of parameters to be set param_list blocks are documented below.
    param_path string
    Paramter full path or prefix
    use_regex bool
    indicates that parameter param_path includes *
    virtual_system_id string
    VSX vs-id which present the context switch
    debug Boolean
    Enable debug logging for this resource.
    dryRun Boolean
    run the request without saving to data base, return only with the changed values.
    filterBy String
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaiaParamId 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
    paramLists List<GaiaParamParamList>
    List of parameters to be set param_list blocks are documented below.
    paramPath String
    Paramter full path or prefix
    useRegex Boolean
    indicates that parameter param_path includes *
    virtualSystemId String
    VSX vs-id which present the context switch
    debug boolean
    Enable debug logging for this resource.
    dryRun boolean
    run the request without saving to data base, return only with the changed values.
    filterBy string
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaiaParamId 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
    paramLists GaiaParamParamList[]
    List of parameters to be set param_list blocks are documented below.
    paramPath string
    Paramter full path or prefix
    useRegex boolean
    indicates that parameter param_path includes *
    virtualSystemId string
    VSX vs-id which present the context switch
    debug bool
    Enable debug logging for this resource.
    dry_run bool
    run the request without saving to data base, return only with the changed values.
    filter_by str
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaia_param_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
    param_lists Sequence[GaiaParamParamListArgs]
    List of parameters to be set param_list blocks are documented below.
    param_path str
    Paramter full path or prefix
    use_regex bool
    indicates that parameter param_path includes *
    virtual_system_id str
    VSX vs-id which present the context switch
    debug Boolean
    Enable debug logging for this resource.
    dryRun Boolean
    run the request without saving to data base, return only with the changed values.
    filterBy String
    show parameters by filtering type in the following format: <fiter_type>=true when fiter_type can be one of (modified,with-comments,not-default), for example modified=true
    gaiaParamId 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
    paramLists List<Property Map>
    List of parameters to be set param_list blocks are documented below.
    paramPath String
    Paramter full path or prefix
    useRegex Boolean
    indicates that parameter param_path includes *
    virtualSystemId String
    VSX vs-id which present the context switch

    Supporting Types

    GaiaParamParamList, GaiaParamParamListArgs

    Comments string
    Comments to be added to the parameter, length is limited to 256 characters
    ParamPath string
    Parameter's full path
    UseDefault bool
    Set the parameter back to its default value. can not send it with value in the same request
    Value string
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    VirtualSystemId string
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    Volatile bool
    Set parameter with the value specified untill the next reboot
    Comments string
    Comments to be added to the parameter, length is limited to 256 characters
    ParamPath string
    Parameter's full path
    UseDefault bool
    Set the parameter back to its default value. can not send it with value in the same request
    Value string
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    VirtualSystemId string
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    Volatile bool
    Set parameter with the value specified untill the next reboot
    comments string
    Comments to be added to the parameter, length is limited to 256 characters
    param_path string
    Parameter's full path
    use_default bool
    Set the parameter back to its default value. can not send it with value in the same request
    value string
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    virtual_system_id string
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    volatile bool
    Set parameter with the value specified untill the next reboot
    comments String
    Comments to be added to the parameter, length is limited to 256 characters
    paramPath String
    Parameter's full path
    useDefault Boolean
    Set the parameter back to its default value. can not send it with value in the same request
    value String
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    virtualSystemId String
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    volatile_ Boolean
    Set parameter with the value specified untill the next reboot
    comments string
    Comments to be added to the parameter, length is limited to 256 characters
    paramPath string
    Parameter's full path
    useDefault boolean
    Set the parameter back to its default value. can not send it with value in the same request
    value string
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    virtualSystemId string
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    volatile boolean
    Set parameter with the value specified untill the next reboot
    comments str
    Comments to be added to the parameter, length is limited to 256 characters
    param_path str
    Parameter's full path
    use_default bool
    Set the parameter back to its default value. can not send it with value in the same request
    value str
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    virtual_system_id str
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    volatile bool
    Set parameter with the value specified untill the next reboot
    comments String
    Comments to be added to the parameter, length is limited to 256 characters
    paramPath String
    Parameter's full path
    useDefault Boolean
    Set the parameter back to its default value. can not send it with value in the same request
    value String
    Parameter's value. it can be sanitized-ascii, int or boolean or object. can not send it with use-default in the same request
    virtualSystemId String
    VSX vs-id which present the context id, can be 'all' or a string represent spesific VS Ids, for example: '2,4,7-10'
    volatile Boolean
    Set parameter with the value specified untill the next reboot

    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