1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementDataTypeWeightedKeywords
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementDataTypeWeightedKeywords

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    This resource allows you to execute Check Point Data Type Weighted Keywords.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementDataTypeWeightedKeywords("example", {
        sumOfWeightsThreshold: 10,
        weightedKeywords: [
            {
                keyword: "name",
                maxWeight: 4,
                regex: true,
                weight: 4,
            },
            {
                keyword: "name2",
                maxWeight: 8,
                regex: false,
                weight: 5,
            },
        ],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementDataTypeWeightedKeywords("example",
        sum_of_weights_threshold=10,
        weighted_keywords=[
            {
                "keyword": "name",
                "max_weight": 4,
                "regex": True,
                "weight": 4,
            },
            {
                "keyword": "name2",
                "max_weight": 8,
                "regex": False,
                "weight": 5,
            },
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementDataTypeWeightedKeywords(ctx, "example", &checkpoint.ManagementDataTypeWeightedKeywordsArgs{
    			SumOfWeightsThreshold: pulumi.Float64(10),
    			WeightedKeywords: checkpoint.ManagementDataTypeWeightedKeywordsWeightedKeywordArray{
    				&checkpoint.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs{
    					Keyword:   pulumi.String("name"),
    					MaxWeight: pulumi.Float64(4),
    					Regex:     pulumi.Bool(true),
    					Weight:    pulumi.Float64(4),
    				},
    				&checkpoint.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs{
    					Keyword:   pulumi.String("name2"),
    					MaxWeight: pulumi.Float64(8),
    					Regex:     pulumi.Bool(false),
    					Weight:    pulumi.Float64(5),
    				},
    			},
    		})
    		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.ManagementDataTypeWeightedKeywords("example", new()
        {
            SumOfWeightsThreshold = 10,
            WeightedKeywords = new[]
            {
                new Checkpoint.Inputs.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs
                {
                    Keyword = "name",
                    MaxWeight = 4,
                    Regex = true,
                    Weight = 4,
                },
                new Checkpoint.Inputs.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs
                {
                    Keyword = "name2",
                    MaxWeight = 8,
                    Regex = false,
                    Weight = 5,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementDataTypeWeightedKeywords;
    import com.pulumi.checkpoint.ManagementDataTypeWeightedKeywordsArgs;
    import com.pulumi.checkpoint.inputs.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs;
    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 ManagementDataTypeWeightedKeywords("example", ManagementDataTypeWeightedKeywordsArgs.builder()
                .sumOfWeightsThreshold(10)
                .weightedKeywords(            
                    ManagementDataTypeWeightedKeywordsWeightedKeywordArgs.builder()
                        .keyword("name")
                        .maxWeight("4")
                        .regex(true)
                        .weight("4")
                        .build(),
                    ManagementDataTypeWeightedKeywordsWeightedKeywordArgs.builder()
                        .keyword("name2")
                        .maxWeight("8")
                        .regex(false)
                        .weight("5")
                        .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementDataTypeWeightedKeywords
        properties:
          sumOfWeightsThreshold: 10
          weightedKeywords:
            - keyword: name
              maxWeight: '4'
              regex: true
              weight: '4'
            - keyword: name2
              maxWeight: '8'
              regex: false
              weight: '5'
    

    Create ManagementDataTypeWeightedKeywords Resource

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

    Constructor syntax

    new ManagementDataTypeWeightedKeywords(name: string, args: ManagementDataTypeWeightedKeywordsArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementDataTypeWeightedKeywords(resource_name: str,
                                           args: ManagementDataTypeWeightedKeywordsArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementDataTypeWeightedKeywords(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           weighted_keywords: Optional[Sequence[ManagementDataTypeWeightedKeywordsWeightedKeywordArgs]] = None,
                                           color: Optional[str] = None,
                                           comments: Optional[str] = None,
                                           description: Optional[str] = None,
                                           ignore_errors: Optional[bool] = None,
                                           ignore_warnings: Optional[bool] = None,
                                           management_data_type_weighted_keywords_id: Optional[str] = None,
                                           name: Optional[str] = None,
                                           sum_of_weights_threshold: Optional[float] = None,
                                           tags: Optional[Sequence[str]] = None)
    func NewManagementDataTypeWeightedKeywords(ctx *Context, name string, args ManagementDataTypeWeightedKeywordsArgs, opts ...ResourceOption) (*ManagementDataTypeWeightedKeywords, error)
    public ManagementDataTypeWeightedKeywords(string name, ManagementDataTypeWeightedKeywordsArgs args, CustomResourceOptions? opts = null)
    public ManagementDataTypeWeightedKeywords(String name, ManagementDataTypeWeightedKeywordsArgs args)
    public ManagementDataTypeWeightedKeywords(String name, ManagementDataTypeWeightedKeywordsArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementDataTypeWeightedKeywords
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ManagementDataTypeWeightedKeywordsArgs
    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 ManagementDataTypeWeightedKeywordsArgs
    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 ManagementDataTypeWeightedKeywordsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementDataTypeWeightedKeywordsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementDataTypeWeightedKeywordsArgs
    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 managementDataTypeWeightedKeywordsResource = new Checkpoint.ManagementDataTypeWeightedKeywords("managementDataTypeWeightedKeywordsResource", new()
    {
        WeightedKeywords = new[]
        {
            new Checkpoint.Inputs.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs
            {
                Keyword = "string",
                MaxWeight = 0,
                Regex = false,
                Weight = 0,
            },
        },
        Color = "string",
        Comments = "string",
        Description = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementDataTypeWeightedKeywordsId = "string",
        Name = "string",
        SumOfWeightsThreshold = 0,
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementDataTypeWeightedKeywords(ctx, "managementDataTypeWeightedKeywordsResource", &checkpoint.ManagementDataTypeWeightedKeywordsArgs{
    	WeightedKeywords: checkpoint.ManagementDataTypeWeightedKeywordsWeightedKeywordArray{
    		&checkpoint.ManagementDataTypeWeightedKeywordsWeightedKeywordArgs{
    			Keyword:   pulumi.String("string"),
    			MaxWeight: pulumi.Float64(0),
    			Regex:     pulumi.Bool(false),
    			Weight:    pulumi.Float64(0),
    		},
    	},
    	Color:                                pulumi.String("string"),
    	Comments:                             pulumi.String("string"),
    	Description:                          pulumi.String("string"),
    	IgnoreErrors:                         pulumi.Bool(false),
    	IgnoreWarnings:                       pulumi.Bool(false),
    	ManagementDataTypeWeightedKeywordsId: pulumi.String("string"),
    	Name:                                 pulumi.String("string"),
    	SumOfWeightsThreshold:                pulumi.Float64(0),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var managementDataTypeWeightedKeywordsResource = new ManagementDataTypeWeightedKeywords("managementDataTypeWeightedKeywordsResource", ManagementDataTypeWeightedKeywordsArgs.builder()
        .weightedKeywords(ManagementDataTypeWeightedKeywordsWeightedKeywordArgs.builder()
            .keyword("string")
            .maxWeight(0)
            .regex(false)
            .weight(0)
            .build())
        .color("string")
        .comments("string")
        .description("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementDataTypeWeightedKeywordsId("string")
        .name("string")
        .sumOfWeightsThreshold(0)
        .tags("string")
        .build());
    
    management_data_type_weighted_keywords_resource = checkpoint.ManagementDataTypeWeightedKeywords("managementDataTypeWeightedKeywordsResource",
        weighted_keywords=[{
            "keyword": "string",
            "max_weight": 0,
            "regex": False,
            "weight": 0,
        }],
        color="string",
        comments="string",
        description="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_data_type_weighted_keywords_id="string",
        name="string",
        sum_of_weights_threshold=0,
        tags=["string"])
    
    const managementDataTypeWeightedKeywordsResource = new checkpoint.ManagementDataTypeWeightedKeywords("managementDataTypeWeightedKeywordsResource", {
        weightedKeywords: [{
            keyword: "string",
            maxWeight: 0,
            regex: false,
            weight: 0,
        }],
        color: "string",
        comments: "string",
        description: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementDataTypeWeightedKeywordsId: "string",
        name: "string",
        sumOfWeightsThreshold: 0,
        tags: ["string"],
    });
    
    type: checkpoint:ManagementDataTypeWeightedKeywords
    properties:
        color: string
        comments: string
        description: string
        ignoreErrors: false
        ignoreWarnings: false
        managementDataTypeWeightedKeywordsId: string
        name: string
        sumOfWeightsThreshold: 0
        tags:
            - string
        weightedKeywords:
            - keyword: string
              maxWeight: 0
              regex: false
              weight: 0
    

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

    WeightedKeywords List<ManagementDataTypeWeightedKeywordsWeightedKeyword>
    List of keywords or phrases.weighted_keywords blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Description string
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    ManagementDataTypeWeightedKeywordsId string
    Name string
    Object name.
    SumOfWeightsThreshold double
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    WeightedKeywords []ManagementDataTypeWeightedKeywordsWeightedKeywordArgs
    List of keywords or phrases.weighted_keywords blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Description string
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    ManagementDataTypeWeightedKeywordsId string
    Name string
    Object name.
    SumOfWeightsThreshold float64
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    weightedKeywords List<ManagementDataTypeWeightedKeywordsWeightedKeyword>
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    description String
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    managementDataTypeWeightedKeywordsId String
    name String
    Object name.
    sumOfWeightsThreshold Double
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    weightedKeywords ManagementDataTypeWeightedKeywordsWeightedKeyword[]
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    description string
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    managementDataTypeWeightedKeywordsId string
    name string
    Object name.
    sumOfWeightsThreshold number
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    weighted_keywords Sequence[ManagementDataTypeWeightedKeywordsWeightedKeywordArgs]
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    description str
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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_data_type_weighted_keywords_id str
    name str
    Object name.
    sum_of_weights_threshold float
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    weightedKeywords List<Property Map>
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    description String
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    managementDataTypeWeightedKeywordsId String
    name String
    Object name.
    sumOfWeightsThreshold Number
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementDataTypeWeightedKeywords 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ManagementDataTypeWeightedKeywords Resource

    Get an existing ManagementDataTypeWeightedKeywords 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?: ManagementDataTypeWeightedKeywordsState, opts?: CustomResourceOptions): ManagementDataTypeWeightedKeywords
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            description: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_data_type_weighted_keywords_id: Optional[str] = None,
            name: Optional[str] = None,
            sum_of_weights_threshold: Optional[float] = None,
            tags: Optional[Sequence[str]] = None,
            weighted_keywords: Optional[Sequence[ManagementDataTypeWeightedKeywordsWeightedKeywordArgs]] = None) -> ManagementDataTypeWeightedKeywords
    func GetManagementDataTypeWeightedKeywords(ctx *Context, name string, id IDInput, state *ManagementDataTypeWeightedKeywordsState, opts ...ResourceOption) (*ManagementDataTypeWeightedKeywords, error)
    public static ManagementDataTypeWeightedKeywords Get(string name, Input<string> id, ManagementDataTypeWeightedKeywordsState? state, CustomResourceOptions? opts = null)
    public static ManagementDataTypeWeightedKeywords get(String name, Output<String> id, ManagementDataTypeWeightedKeywordsState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementDataTypeWeightedKeywords    get:      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 string.
    Description string
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    ManagementDataTypeWeightedKeywordsId string
    Name string
    Object name.
    SumOfWeightsThreshold double
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    WeightedKeywords List<ManagementDataTypeWeightedKeywordsWeightedKeyword>
    List of keywords or phrases.weighted_keywords blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Description string
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    ManagementDataTypeWeightedKeywordsId string
    Name string
    Object name.
    SumOfWeightsThreshold float64
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    WeightedKeywords []ManagementDataTypeWeightedKeywordsWeightedKeywordArgs
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    description String
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    managementDataTypeWeightedKeywordsId String
    name String
    Object name.
    sumOfWeightsThreshold Double
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    weightedKeywords List<ManagementDataTypeWeightedKeywordsWeightedKeyword>
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    description string
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    managementDataTypeWeightedKeywordsId string
    name string
    Object name.
    sumOfWeightsThreshold number
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    weightedKeywords ManagementDataTypeWeightedKeywordsWeightedKeyword[]
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    description str
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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_data_type_weighted_keywords_id str
    name str
    Object name.
    sum_of_weights_threshold float
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    weighted_keywords Sequence[ManagementDataTypeWeightedKeywordsWeightedKeywordArgs]
    List of keywords or phrases.weighted_keywords blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    description String
    For built-in data types, the description explains the purpose of this type of data representation. For custom-made data types, you can use this field to provide more details.
    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.
    managementDataTypeWeightedKeywordsId String
    name String
    Object name.
    sumOfWeightsThreshold Number
    Define the number of appearances, by weight, of all the keywords that, beyond this threshold, the data containing this list of words or phrases will be recognized as data to be protected.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    weightedKeywords List<Property Map>
    List of keywords or phrases.weighted_keywords blocks are documented below.

    Supporting Types

    ManagementDataTypeWeightedKeywordsWeightedKeyword, ManagementDataTypeWeightedKeywordsWeightedKeywordArgs

    Keyword string
    keyword or regular expression to be weighted.
    MaxWeight double
    Max weight of the expression.
    Regex bool
    Determine whether to consider the expression as a regular expression.
    Weight double
    Weight of the expression.
    Keyword string
    keyword or regular expression to be weighted.
    MaxWeight float64
    Max weight of the expression.
    Regex bool
    Determine whether to consider the expression as a regular expression.
    Weight float64
    Weight of the expression.
    keyword String
    keyword or regular expression to be weighted.
    maxWeight Double
    Max weight of the expression.
    regex Boolean
    Determine whether to consider the expression as a regular expression.
    weight Double
    Weight of the expression.
    keyword string
    keyword or regular expression to be weighted.
    maxWeight number
    Max weight of the expression.
    regex boolean
    Determine whether to consider the expression as a regular expression.
    weight number
    Weight of the expression.
    keyword str
    keyword or regular expression to be weighted.
    max_weight float
    Max weight of the expression.
    regex bool
    Determine whether to consider the expression as a regular expression.
    weight float
    Weight of the expression.
    keyword String
    keyword or regular expression to be weighted.
    maxWeight Number
    Max weight of the expression.
    regex Boolean
    Determine whether to consider the expression as a regular expression.
    weight Number
    Weight of the expression.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw