1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementDefSetting
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw

    This resource allows you to execute Check Point Def Setting.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementDefSetting("example", {
        name: "My Boolean Def Setting",
        dataType: "boolean",
        assignments: [
            {
                value: "true",
                description: "Default for Quantum gateways",
                model: "quantum",
            },
            {
                value: "false",
                description: "Default for Spark gateways",
                model: "spark",
            },
        ],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementDefSetting("example",
        name="My Boolean Def Setting",
        data_type="boolean",
        assignments=[
            {
                "value": "true",
                "description": "Default for Quantum gateways",
                "model": "quantum",
            },
            {
                "value": "false",
                "description": "Default for Spark gateways",
                "model": "spark",
            },
        ])
    
    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.NewManagementDefSetting(ctx, "example", &checkpoint.ManagementDefSettingArgs{
    			Name:     pulumi.String("My Boolean Def Setting"),
    			DataType: pulumi.String("boolean"),
    			Assignments: checkpoint.ManagementDefSettingAssignmentArray{
    				&checkpoint.ManagementDefSettingAssignmentArgs{
    					Value:       pulumi.String("true"),
    					Description: pulumi.String("Default for Quantum gateways"),
    					Model:       pulumi.String("quantum"),
    				},
    				&checkpoint.ManagementDefSettingAssignmentArgs{
    					Value:       pulumi.String("false"),
    					Description: pulumi.String("Default for Spark gateways"),
    					Model:       pulumi.String("spark"),
    				},
    			},
    		})
    		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.ManagementDefSetting("example", new()
        {
            Name = "My Boolean Def Setting",
            DataType = "boolean",
            Assignments = new[]
            {
                new Checkpoint.Inputs.ManagementDefSettingAssignmentArgs
                {
                    Value = "true",
                    Description = "Default for Quantum gateways",
                    Model = "quantum",
                },
                new Checkpoint.Inputs.ManagementDefSettingAssignmentArgs
                {
                    Value = "false",
                    Description = "Default for Spark gateways",
                    Model = "spark",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementDefSetting;
    import com.pulumi.checkpoint.ManagementDefSettingArgs;
    import com.pulumi.checkpoint.inputs.ManagementDefSettingAssignmentArgs;
    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 ManagementDefSetting("example", ManagementDefSettingArgs.builder()
                .name("My Boolean Def Setting")
                .dataType("boolean")
                .assignments(            
                    ManagementDefSettingAssignmentArgs.builder()
                        .value("true")
                        .description("Default for Quantum gateways")
                        .model("quantum")
                        .build(),
                    ManagementDefSettingAssignmentArgs.builder()
                        .value("false")
                        .description("Default for Spark gateways")
                        .model("spark")
                        .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementDefSetting
        properties:
          name: My Boolean Def Setting
          dataType: boolean
          assignments:
            - value: 'true'
              description: Default for Quantum gateways
              model: quantum
            - value: 'false'
              description: Default for Spark gateways
              model: spark
    
    Example coming soon!
    

    Create ManagementDefSetting Resource

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

    Constructor syntax

    new ManagementDefSetting(name: string, args: ManagementDefSettingArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementDefSetting(resource_name: str,
                             args: ManagementDefSettingArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementDefSetting(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             assignments: Optional[Sequence[ManagementDefSettingAssignmentArgs]] = None,
                             data_type: Optional[str] = None,
                             color: Optional[str] = None,
                             comments: Optional[str] = None,
                             ignore_errors: Optional[bool] = None,
                             ignore_warnings: Optional[bool] = None,
                             management_def_setting_id: Optional[str] = None,
                             name: Optional[str] = None,
                             tags: Optional[Sequence[str]] = None)
    func NewManagementDefSetting(ctx *Context, name string, args ManagementDefSettingArgs, opts ...ResourceOption) (*ManagementDefSetting, error)
    public ManagementDefSetting(string name, ManagementDefSettingArgs args, CustomResourceOptions? opts = null)
    public ManagementDefSetting(String name, ManagementDefSettingArgs args)
    public ManagementDefSetting(String name, ManagementDefSettingArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementDefSetting
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_def_setting" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementDefSettingArgs
    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 ManagementDefSettingArgs
    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 ManagementDefSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementDefSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementDefSettingArgs
    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 managementDefSettingResource = new Checkpoint.ManagementDefSetting("managementDefSettingResource", new()
    {
        Assignments = new[]
        {
            new Checkpoint.Inputs.ManagementDefSettingAssignmentArgs
            {
                Value = "string",
                Description = "string",
                Enabled = false,
                FromVersion = "string",
                Model = "string",
                Position = "string",
                Targets = new[]
                {
                    "string",
                },
                ToVersion = "string",
            },
        },
        DataType = "string",
        Color = "string",
        Comments = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementDefSettingId = "string",
        Name = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementDefSetting(ctx, "managementDefSettingResource", &checkpoint.ManagementDefSettingArgs{
    	Assignments: checkpoint.ManagementDefSettingAssignmentArray{
    		&checkpoint.ManagementDefSettingAssignmentArgs{
    			Value:       pulumi.String("string"),
    			Description: pulumi.String("string"),
    			Enabled:     pulumi.Bool(false),
    			FromVersion: pulumi.String("string"),
    			Model:       pulumi.String("string"),
    			Position:    pulumi.String("string"),
    			Targets: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ToVersion: pulumi.String("string"),
    		},
    	},
    	DataType:               pulumi.String("string"),
    	Color:                  pulumi.String("string"),
    	Comments:               pulumi.String("string"),
    	IgnoreErrors:           pulumi.Bool(false),
    	IgnoreWarnings:         pulumi.Bool(false),
    	ManagementDefSettingId: pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    resource "checkpoint_management_def_setting" "managementDefSettingResource" {
      lifecycle {
        create_before_destroy = true
      }
      assignments {
        value        = "string"
        description  = "string"
        enabled      = false
        from_version = "string"
        model        = "string"
        position     = "string"
        targets      = ["string"]
        to_version   = "string"
      }
      data_type                 = "string"
      color                     = "string"
      comments                  = "string"
      ignore_errors             = false
      ignore_warnings           = false
      management_def_setting_id = "string"
      name                      = "string"
      tags                      = ["string"]
    }
    
    var managementDefSettingResource = new ManagementDefSetting("managementDefSettingResource", ManagementDefSettingArgs.builder()
        .assignments(ManagementDefSettingAssignmentArgs.builder()
            .value("string")
            .description("string")
            .enabled(false)
            .fromVersion("string")
            .model("string")
            .position("string")
            .targets("string")
            .toVersion("string")
            .build())
        .dataType("string")
        .color("string")
        .comments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementDefSettingId("string")
        .name("string")
        .tags("string")
        .build());
    
    management_def_setting_resource = checkpoint.ManagementDefSetting("managementDefSettingResource",
        assignments=[{
            "value": "string",
            "description": "string",
            "enabled": False,
            "from_version": "string",
            "model": "string",
            "position": "string",
            "targets": ["string"],
            "to_version": "string",
        }],
        data_type="string",
        color="string",
        comments="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_def_setting_id="string",
        name="string",
        tags=["string"])
    
    const managementDefSettingResource = new checkpoint.ManagementDefSetting("managementDefSettingResource", {
        assignments: [{
            value: "string",
            description: "string",
            enabled: false,
            fromVersion: "string",
            model: "string",
            position: "string",
            targets: ["string"],
            toVersion: "string",
        }],
        dataType: "string",
        color: "string",
        comments: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementDefSettingId: "string",
        name: "string",
        tags: ["string"],
    });
    
    type: checkpoint:ManagementDefSetting
    properties:
        assignments:
            - description: string
              enabled: false
              fromVersion: string
              model: string
              position: string
              targets:
                - string
              toVersion: string
              value: string
        color: string
        comments: string
        dataType: string
        ignoreErrors: false
        ignoreWarnings: false
        managementDefSettingId: string
        name: string
        tags:
            - string
    

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

    Assignments List<ManagementDefSettingAssignment>
    Assignments.assignments blocks are documented below.
    DataType string
    The data type of the setting.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementDefSettingId string
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.
    Assignments []ManagementDefSettingAssignmentArgs
    Assignments.assignments blocks are documented below.
    DataType string
    The data type of the setting.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementDefSettingId string
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.
    assignments list(object)
    Assignments.assignments blocks are documented below.
    data_type string
    The data type of the setting.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_def_setting_id string
    name string
    Object name.
    tags list(string)
    Collection of tag identifiers.
    assignments List<ManagementDefSettingAssignment>
    Assignments.assignments blocks are documented below.
    dataType String
    The data type of the setting.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementDefSettingId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.
    assignments ManagementDefSettingAssignment[]
    Assignments.assignments blocks are documented below.
    dataType string
    The data type of the setting.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementDefSettingId string
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.
    assignments Sequence[ManagementDefSettingAssignmentArgs]
    Assignments.assignments blocks are documented below.
    data_type str
    The data type of the setting.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_def_setting_id str
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.
    assignments List<Property Map>
    Assignments.assignments blocks are documented below.
    dataType String
    The data type of the setting.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementDefSettingId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.

    Outputs

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

    Get an existing ManagementDefSetting 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?: ManagementDefSettingState, opts?: CustomResourceOptions): ManagementDefSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            assignments: Optional[Sequence[ManagementDefSettingAssignmentArgs]] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            data_type: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_def_setting_id: Optional[str] = None,
            name: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementDefSetting
    func GetManagementDefSetting(ctx *Context, name string, id IDInput, state *ManagementDefSettingState, opts ...ResourceOption) (*ManagementDefSetting, error)
    public static ManagementDefSetting Get(string name, Input<string> id, ManagementDefSettingState? state, CustomResourceOptions? opts = null)
    public static ManagementDefSetting get(String name, Output<String> id, ManagementDefSettingState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementDefSetting    get:      id: ${id}
    import {
      to = checkpoint_management_def_setting.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:
    Assignments List<ManagementDefSettingAssignment>
    Assignments.assignments blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DataType string
    The data type of the setting.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementDefSettingId string
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.
    Assignments []ManagementDefSettingAssignmentArgs
    Assignments.assignments blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DataType string
    The data type of the setting.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementDefSettingId string
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.
    assignments list(object)
    Assignments.assignments blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    data_type string
    The data type of the setting.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_def_setting_id string
    name string
    Object name.
    tags list(string)
    Collection of tag identifiers.
    assignments List<ManagementDefSettingAssignment>
    Assignments.assignments blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    dataType String
    The data type of the setting.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementDefSettingId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.
    assignments ManagementDefSettingAssignment[]
    Assignments.assignments blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    dataType string
    The data type of the setting.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementDefSettingId string
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.
    assignments Sequence[ManagementDefSettingAssignmentArgs]
    Assignments.assignments blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    data_type str
    The data type of the setting.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_def_setting_id str
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.
    assignments List<Property Map>
    Assignments.assignments blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    dataType String
    The data type of the setting.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementDefSettingId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.

    Supporting Types

    ManagementDefSettingAssignment, ManagementDefSettingAssignmentArgs

    Value string
    The value of the setting.
    Description string
    The description for this setting.
    Enabled bool
    If the setting is enabled.
    FromVersion string
    The gateway version this setting applies from.
    Model string
    The gateway model this setting applies to.
    Position string
    The position of the setting.
    Targets List<string>
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    ToVersion string
    The gateway version this setting applies to.
    Value string
    The value of the setting.
    Description string
    The description for this setting.
    Enabled bool
    If the setting is enabled.
    FromVersion string
    The gateway version this setting applies from.
    Model string
    The gateway model this setting applies to.
    Position string
    The position of the setting.
    Targets []string
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    ToVersion string
    The gateway version this setting applies to.
    value string
    The value of the setting.
    description string
    The description for this setting.
    enabled bool
    If the setting is enabled.
    from_version string
    The gateway version this setting applies from.
    model string
    The gateway model this setting applies to.
    position string
    The position of the setting.
    targets list(string)
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    to_version string
    The gateway version this setting applies to.
    value String
    The value of the setting.
    description String
    The description for this setting.
    enabled Boolean
    If the setting is enabled.
    fromVersion String
    The gateway version this setting applies from.
    model String
    The gateway model this setting applies to.
    position String
    The position of the setting.
    targets List<String>
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    toVersion String
    The gateway version this setting applies to.
    value string
    The value of the setting.
    description string
    The description for this setting.
    enabled boolean
    If the setting is enabled.
    fromVersion string
    The gateway version this setting applies from.
    model string
    The gateway model this setting applies to.
    position string
    The position of the setting.
    targets string[]
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    toVersion string
    The gateway version this setting applies to.
    value str
    The value of the setting.
    description str
    The description for this setting.
    enabled bool
    If the setting is enabled.
    from_version str
    The gateway version this setting applies from.
    model str
    The gateway model this setting applies to.
    position str
    The position of the setting.
    targets Sequence[str]
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    to_version str
    The gateway version this setting applies to.
    value String
    The value of the setting.
    description String
    The description for this setting.
    enabled Boolean
    If the setting is enabled.
    fromVersion String
    The gateway version this setting applies from.
    model String
    The gateway model this setting applies to.
    position String
    The position of the setting.
    targets List<String>
    The Gateways or Clusters the assignment is applied to, identified by name or UID.
    toVersion String
    The gateway version this setting applies to.

    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.3.0
    published on Thursday, Jul 30, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial