published on Monday, Jun 15, 2026 by checkpointsw
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:
- Param
Lists List<GaiaParam Param List> - 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 stringId - Member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- Param
Path string - Paramter full path or prefix
- Use
Regex bool - indicates that parameter param_path includes *
- Virtual
System stringId - VSX vs-id which present the context switch
- Param
Lists []GaiaParam Param List Args - 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 stringId - Member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- Param
Path string - Paramter full path or prefix
- Use
Regex bool - indicates that parameter param_path includes *
- Virtual
System stringId - 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_ stringid - member_
id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param_
path string - Paramter full path or prefix
- use_
regex bool - indicates that parameter param_path includes *
- virtual_
system_ stringid - VSX vs-id which present the context switch
- param
Lists List<GaiaParam Param List> - List of parameters to be set param_list blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- dry
Run Boolean - 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 StringId - member
Id String - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param
Path String - Paramter full path or prefix
- use
Regex Boolean - indicates that parameter param_path includes *
- virtual
System StringId - VSX vs-id which present the context switch
- param
Lists GaiaParam Param List[] - List of parameters to be set param_list blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- dry
Run boolean - 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 stringId - member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param
Path string - Paramter full path or prefix
- use
Regex boolean - indicates that parameter param_path includes *
- virtual
System stringId - VSX vs-id which present the context switch
- param_
lists Sequence[GaiaParam Param List Args] - 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_ strid - member_
id str - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param_
path str - Paramter full path or prefix
- use_
regex bool - indicates that parameter param_path includes *
- virtual_
system_ strid - VSX vs-id which present the context switch
- param
Lists List<Property Map> - List of parameters to be set param_list blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- dry
Run Boolean - 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 StringId - member
Id String - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param
Path String - Paramter full path or prefix
- use
Regex Boolean - indicates that parameter param_path includes *
- virtual
System StringId - 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) -> GaiaParamfunc 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.
- 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 stringId - Member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- Param
Lists List<GaiaParam Param List> - 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 stringId - 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 stringId - Member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- Param
Lists []GaiaParam Param List Args - 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 stringId - 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_ stringid - member_
id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- 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_ stringid - VSX vs-id which present the context switch
- debug Boolean
- Enable debug logging for this resource.
- dry
Run Boolean - 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 StringId - member
Id String - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param
Lists List<GaiaParam Param List> - List of parameters to be set param_list blocks are documented below.
- param
Path String - Paramter full path or prefix
- use
Regex Boolean - indicates that parameter param_path includes *
- virtual
System StringId - VSX vs-id which present the context switch
- debug boolean
- Enable debug logging for this resource.
- dry
Run boolean - 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 stringId - member
Id string - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param
Lists GaiaParam Param List[] - List of parameters to be set param_list blocks are documented below.
- param
Path string - Paramter full path or prefix
- use
Regex boolean - indicates that parameter param_path includes *
- virtual
System stringId - 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_ strid - member_
id str - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param_
lists Sequence[GaiaParam Param List Args] - 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_ strid - VSX vs-id which present the context switch
- debug Boolean
- Enable debug logging for this resource.
- dry
Run Boolean - 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 StringId - member
Id String - Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
- param
Lists List<Property Map> - List of parameters to be set param_list blocks are documented below.
- param
Path String - Paramter full path or prefix
- use
Regex Boolean - indicates that parameter param_path includes *
- virtual
System StringId - 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
- 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 stringId - 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 stringId - 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_ stringid - 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 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
- virtual
System StringId - 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
- param
Path string - Parameter's full path
- use
Default 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
- virtual
System stringId - 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_ strid - 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 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
- virtual
System StringId - 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
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw