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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementRegulation("example", {
        name: "MyReg",
        fullName: "My New Regulation",
        comments: "My compliance regulation",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementRegulation("example",
        name="MyReg",
        full_name="My New Regulation",
        comments="My compliance regulation")
    
    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.NewManagementRegulation(ctx, "example", &checkpoint.ManagementRegulationArgs{
    			Name:     pulumi.String("MyReg"),
    			FullName: pulumi.String("My New Regulation"),
    			Comments: pulumi.String("My compliance regulation"),
    		})
    		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.ManagementRegulation("example", new()
        {
            Name = "MyReg",
            FullName = "My New Regulation",
            Comments = "My compliance regulation",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementRegulation;
    import com.pulumi.checkpoint.ManagementRegulationArgs;
    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 ManagementRegulation("example", ManagementRegulationArgs.builder()
                .name("MyReg")
                .fullName("My New Regulation")
                .comments("My compliance regulation")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementRegulation
        properties:
          name: MyReg
          fullName: My New Regulation
          comments: My compliance regulation
    
    Example coming soon!
    

    Create ManagementRegulation Resource

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

    Constructor syntax

    new ManagementRegulation(name: string, args: ManagementRegulationArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementRegulation(resource_name: str,
                             args: ManagementRegulationArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementRegulation(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             full_name: Optional[str] = None,
                             color: Optional[str] = None,
                             comments: Optional[str] = None,
                             enabled: Optional[bool] = None,
                             ignore_errors: Optional[bool] = None,
                             ignore_warnings: Optional[bool] = None,
                             management_regulation_id: Optional[str] = None,
                             name: Optional[str] = None,
                             show_requirements: Optional[bool] = None,
                             tags: Optional[Sequence[str]] = None)
    func NewManagementRegulation(ctx *Context, name string, args ManagementRegulationArgs, opts ...ResourceOption) (*ManagementRegulation, error)
    public ManagementRegulation(string name, ManagementRegulationArgs args, CustomResourceOptions? opts = null)
    public ManagementRegulation(String name, ManagementRegulationArgs args)
    public ManagementRegulation(String name, ManagementRegulationArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementRegulation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_regulation" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementRegulationArgs
    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 ManagementRegulationArgs
    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 ManagementRegulationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementRegulationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementRegulationArgs
    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 managementRegulationResource = new Checkpoint.ManagementRegulation("managementRegulationResource", new()
    {
        FullName = "string",
        Color = "string",
        Comments = "string",
        Enabled = false,
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementRegulationId = "string",
        Name = "string",
        ShowRequirements = false,
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementRegulation(ctx, "managementRegulationResource", &checkpoint.ManagementRegulationArgs{
    	FullName:               pulumi.String("string"),
    	Color:                  pulumi.String("string"),
    	Comments:               pulumi.String("string"),
    	Enabled:                pulumi.Bool(false),
    	IgnoreErrors:           pulumi.Bool(false),
    	IgnoreWarnings:         pulumi.Bool(false),
    	ManagementRegulationId: pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	ShowRequirements:       pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    resource "checkpoint_management_regulation" "managementRegulationResource" {
      lifecycle {
        create_before_destroy = true
      }
      full_name                = "string"
      color                    = "string"
      comments                 = "string"
      enabled                  = false
      ignore_errors            = false
      ignore_warnings          = false
      management_regulation_id = "string"
      name                     = "string"
      show_requirements        = false
      tags                     = ["string"]
    }
    
    var managementRegulationResource = new ManagementRegulation("managementRegulationResource", ManagementRegulationArgs.builder()
        .fullName("string")
        .color("string")
        .comments("string")
        .enabled(false)
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementRegulationId("string")
        .name("string")
        .showRequirements(false)
        .tags("string")
        .build());
    
    management_regulation_resource = checkpoint.ManagementRegulation("managementRegulationResource",
        full_name="string",
        color="string",
        comments="string",
        enabled=False,
        ignore_errors=False,
        ignore_warnings=False,
        management_regulation_id="string",
        name="string",
        show_requirements=False,
        tags=["string"])
    
    const managementRegulationResource = new checkpoint.ManagementRegulation("managementRegulationResource", {
        fullName: "string",
        color: "string",
        comments: "string",
        enabled: false,
        ignoreErrors: false,
        ignoreWarnings: false,
        managementRegulationId: "string",
        name: "string",
        showRequirements: false,
        tags: ["string"],
    });
    
    type: checkpoint:ManagementRegulation
    properties:
        color: string
        comments: string
        enabled: false
        fullName: string
        ignoreErrors: false
        ignoreWarnings: false
        managementRegulationId: string
        name: string
        showRequirements: false
        tags:
            - string
    

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

    FullName string
    Regulation full name.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments about this regulation.
    Enabled bool
    Determines if the regulation is enabled.
    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.
    ManagementRegulationId string
    Name string
    Regulation name.
    ShowRequirements bool
    Show the requirements of the regulation.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    FullName string
    Regulation full name.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments about this regulation.
    Enabled bool
    Determines if the regulation is enabled.
    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.
    ManagementRegulationId string
    Name string
    Regulation name.
    ShowRequirements bool
    Show the requirements of the regulation.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    full_name string
    Regulation full name.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments about this regulation.
    enabled bool
    Determines if the regulation is enabled.
    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_regulation_id string
    name string
    Regulation name.
    show_requirements bool
    Show the requirements of the regulation.
    tags list(string)
    Collection of tag identifiers.tags blocks are documented below.
    fullName String
    Regulation full name.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments about this regulation.
    enabled Boolean
    Determines if the regulation is enabled.
    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.
    managementRegulationId String
    name String
    Regulation name.
    showRequirements Boolean
    Show the requirements of the regulation.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    fullName string
    Regulation full name.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments about this regulation.
    enabled boolean
    Determines if the regulation is enabled.
    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.
    managementRegulationId string
    name string
    Regulation name.
    showRequirements boolean
    Show the requirements of the regulation.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    full_name str
    Regulation full name.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments about this regulation.
    enabled bool
    Determines if the regulation is enabled.
    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_regulation_id str
    name str
    Regulation name.
    show_requirements bool
    Show the requirements of the regulation.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    fullName String
    Regulation full name.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments about this regulation.
    enabled Boolean
    Determines if the regulation is enabled.
    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.
    managementRegulationId String
    name String
    Regulation name.
    showRequirements Boolean
    Show the requirements of the regulation.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Requirements List<string>
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    Id string
    The provider-assigned unique ID for this managed resource.
    Requirements []string
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    requirements list(string)
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    requirements List<String>
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    id string
    The provider-assigned unique ID for this managed resource.
    requirements string[]
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    id str
    The provider-assigned unique ID for this managed resource.
    requirements Sequence[str]
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    id String
    The provider-assigned unique ID for this managed resource.
    requirements List<String>
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.

    Look up Existing ManagementRegulation Resource

    Get an existing ManagementRegulation 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?: ManagementRegulationState, opts?: CustomResourceOptions): ManagementRegulation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            enabled: Optional[bool] = None,
            full_name: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_regulation_id: Optional[str] = None,
            name: Optional[str] = None,
            requirements: Optional[Sequence[str]] = None,
            show_requirements: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementRegulation
    func GetManagementRegulation(ctx *Context, name string, id IDInput, state *ManagementRegulationState, opts ...ResourceOption) (*ManagementRegulation, error)
    public static ManagementRegulation Get(string name, Input<string> id, ManagementRegulationState? state, CustomResourceOptions? opts = null)
    public static ManagementRegulation get(String name, Output<String> id, ManagementRegulationState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementRegulation    get:      id: ${id}
    import {
      to = checkpoint_management_regulation.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:
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments about this regulation.
    Enabled bool
    Determines if the regulation is enabled.
    FullName string
    Regulation full name.
    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.
    ManagementRegulationId string
    Name string
    Regulation name.
    Requirements List<string>
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    ShowRequirements bool
    Show the requirements of the regulation.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments about this regulation.
    Enabled bool
    Determines if the regulation is enabled.
    FullName string
    Regulation full name.
    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.
    ManagementRegulationId string
    Name string
    Regulation name.
    Requirements []string
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    ShowRequirements bool
    Show the requirements of the regulation.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments about this regulation.
    enabled bool
    Determines if the regulation is enabled.
    full_name string
    Regulation full name.
    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_regulation_id string
    name string
    Regulation name.
    requirements list(string)
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    show_requirements bool
    Show the requirements of the regulation.
    tags list(string)
    Collection of tag identifiers.tags blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments about this regulation.
    enabled Boolean
    Determines if the regulation is enabled.
    fullName String
    Regulation full name.
    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.
    managementRegulationId String
    name String
    Regulation name.
    requirements List<String>
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    showRequirements Boolean
    Show the requirements of the regulation.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments about this regulation.
    enabled boolean
    Determines if the regulation is enabled.
    fullName string
    Regulation full name.
    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.
    managementRegulationId string
    name string
    Regulation name.
    requirements string[]
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    showRequirements boolean
    Show the requirements of the regulation.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments about this regulation.
    enabled bool
    Determines if the regulation is enabled.
    full_name str
    Regulation full name.
    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_regulation_id str
    name str
    Regulation name.
    requirements Sequence[str]
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    show_requirements bool
    Show the requirements of the regulation.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments about this regulation.
    enabled Boolean
    Determines if the regulation is enabled.
    fullName String
    Regulation full name.
    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.
    managementRegulationId String
    name String
    Regulation name.
    requirements List<String>
    The requirements of the regulation, identified by name. Appears only when show_requirements is set to true.
    showRequirements Boolean
    Show the requirements of the regulation.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    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