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

checkpoint.ManagementDataTypeCompoundGroup

Explore with Pulumi AI

This resource allows you to execute Check Point Data Type Compound Group.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";

const example = new checkpoint.ManagementDataTypeCompoundGroup("example", {
    description: "Compound group object",
    matchedGroups: ["Source Code"],
    unmatchedGroups: ["Large File"],
});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

example = checkpoint.ManagementDataTypeCompoundGroup("example",
    description="Compound group object",
    matched_groups=["Source Code"],
    unmatched_groups=["Large File"])
Copy
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.NewManagementDataTypeCompoundGroup(ctx, "example", &checkpoint.ManagementDataTypeCompoundGroupArgs{
			Description: pulumi.String("Compound group object"),
			MatchedGroups: pulumi.StringArray{
				pulumi.String("Source Code"),
			},
			UnmatchedGroups: pulumi.StringArray{
				pulumi.String("Large File"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var example = new Checkpoint.ManagementDataTypeCompoundGroup("example", new()
    {
        Description = "Compound group object",
        MatchedGroups = new[]
        {
            "Source Code",
        },
        UnmatchedGroups = new[]
        {
            "Large File",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementDataTypeCompoundGroup;
import com.pulumi.checkpoint.ManagementDataTypeCompoundGroupArgs;
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 ManagementDataTypeCompoundGroup("example", ManagementDataTypeCompoundGroupArgs.builder()
            .description("Compound group object")
            .matchedGroups("Source Code")
            .unmatchedGroups("Large File")
            .build());

    }
}
Copy
resources:
  example:
    type: checkpoint:ManagementDataTypeCompoundGroup
    properties:
      description: Compound group object
      matchedGroups:
        - Source Code
      unmatchedGroups:
        - Large File
Copy

Create ManagementDataTypeCompoundGroup Resource

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

Constructor syntax

new ManagementDataTypeCompoundGroup(name: string, args?: ManagementDataTypeCompoundGroupArgs, opts?: CustomResourceOptions);
@overload
def ManagementDataTypeCompoundGroup(resource_name: str,
                                    args: Optional[ManagementDataTypeCompoundGroupArgs] = None,
                                    opts: Optional[ResourceOptions] = None)

@overload
def ManagementDataTypeCompoundGroup(resource_name: 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_compound_group_id: Optional[str] = None,
                                    matched_groups: Optional[Sequence[str]] = None,
                                    name: Optional[str] = None,
                                    tags: Optional[Sequence[str]] = None,
                                    unmatched_groups: Optional[Sequence[str]] = None)
func NewManagementDataTypeCompoundGroup(ctx *Context, name string, args *ManagementDataTypeCompoundGroupArgs, opts ...ResourceOption) (*ManagementDataTypeCompoundGroup, error)
public ManagementDataTypeCompoundGroup(string name, ManagementDataTypeCompoundGroupArgs? args = null, CustomResourceOptions? opts = null)
public ManagementDataTypeCompoundGroup(String name, ManagementDataTypeCompoundGroupArgs args)
public ManagementDataTypeCompoundGroup(String name, ManagementDataTypeCompoundGroupArgs args, CustomResourceOptions options)
type: checkpoint:ManagementDataTypeCompoundGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ManagementDataTypeCompoundGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ManagementDataTypeCompoundGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ManagementDataTypeCompoundGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ManagementDataTypeCompoundGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementDataTypeCompoundGroupArgs
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 managementDataTypeCompoundGroupResource = new Checkpoint.ManagementDataTypeCompoundGroup("managementDataTypeCompoundGroupResource", new()
{
    Color = "string",
    Comments = "string",
    Description = "string",
    IgnoreErrors = false,
    IgnoreWarnings = false,
    ManagementDataTypeCompoundGroupId = "string",
    MatchedGroups = new[]
    {
        "string",
    },
    Name = "string",
    Tags = new[]
    {
        "string",
    },
    UnmatchedGroups = new[]
    {
        "string",
    },
});
Copy
example, err := checkpoint.NewManagementDataTypeCompoundGroup(ctx, "managementDataTypeCompoundGroupResource", &checkpoint.ManagementDataTypeCompoundGroupArgs{
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
Description: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementDataTypeCompoundGroupId: pulumi.String("string"),
MatchedGroups: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UnmatchedGroups: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var managementDataTypeCompoundGroupResource = new ManagementDataTypeCompoundGroup("managementDataTypeCompoundGroupResource", ManagementDataTypeCompoundGroupArgs.builder()
    .color("string")
    .comments("string")
    .description("string")
    .ignoreErrors(false)
    .ignoreWarnings(false)
    .managementDataTypeCompoundGroupId("string")
    .matchedGroups("string")
    .name("string")
    .tags("string")
    .unmatchedGroups("string")
    .build());
Copy
management_data_type_compound_group_resource = checkpoint.ManagementDataTypeCompoundGroup("managementDataTypeCompoundGroupResource",
    color="string",
    comments="string",
    description="string",
    ignore_errors=False,
    ignore_warnings=False,
    management_data_type_compound_group_id="string",
    matched_groups=["string"],
    name="string",
    tags=["string"],
    unmatched_groups=["string"])
Copy
const managementDataTypeCompoundGroupResource = new checkpoint.ManagementDataTypeCompoundGroup("managementDataTypeCompoundGroupResource", {
    color: "string",
    comments: "string",
    description: "string",
    ignoreErrors: false,
    ignoreWarnings: false,
    managementDataTypeCompoundGroupId: "string",
    matchedGroups: ["string"],
    name: "string",
    tags: ["string"],
    unmatchedGroups: ["string"],
});
Copy
type: checkpoint:ManagementDataTypeCompoundGroup
properties:
    color: string
    comments: string
    description: string
    ignoreErrors: false
    ignoreWarnings: false
    managementDataTypeCompoundGroupId: string
    matchedGroups:
        - string
    name: string
    tags:
        - string
    unmatchedGroups:
        - string
Copy

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

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.
ManagementDataTypeCompoundGroupId string
MatchedGroups List<string>
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
Name string
Object name.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
UnmatchedGroups List<string>
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
ManagementDataTypeCompoundGroupId string
MatchedGroups []string
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
Name string
Object name.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
UnmatchedGroups []string
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
managementDataTypeCompoundGroupId String
matchedGroups List<String>
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name String
Object name.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
unmatchedGroups List<String>
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
managementDataTypeCompoundGroupId string
matchedGroups string[]
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name string
Object name.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
unmatchedGroups string[]
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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_compound_group_id str
matched_groups Sequence[str]
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name str
Object name.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
unmatched_groups Sequence[str]
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
managementDataTypeCompoundGroupId String
matchedGroups List<String>
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name String
Object name.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
unmatchedGroups List<String>
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups blocks are documented below.

Outputs

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

Get an existing ManagementDataTypeCompoundGroup 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?: ManagementDataTypeCompoundGroupState, opts?: CustomResourceOptions): ManagementDataTypeCompoundGroup
@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_compound_group_id: Optional[str] = None,
        matched_groups: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        tags: Optional[Sequence[str]] = None,
        unmatched_groups: Optional[Sequence[str]] = None) -> ManagementDataTypeCompoundGroup
func GetManagementDataTypeCompoundGroup(ctx *Context, name string, id IDInput, state *ManagementDataTypeCompoundGroupState, opts ...ResourceOption) (*ManagementDataTypeCompoundGroup, error)
public static ManagementDataTypeCompoundGroup Get(string name, Input<string> id, ManagementDataTypeCompoundGroupState? state, CustomResourceOptions? opts = null)
public static ManagementDataTypeCompoundGroup get(String name, Output<String> id, ManagementDataTypeCompoundGroupState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementDataTypeCompoundGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
ManagementDataTypeCompoundGroupId string
MatchedGroups List<string>
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
Name string
Object name.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
UnmatchedGroups List<string>
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
ManagementDataTypeCompoundGroupId string
MatchedGroups []string
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
Name string
Object name.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
UnmatchedGroups []string
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
managementDataTypeCompoundGroupId String
matchedGroups List<String>
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name String
Object name.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
unmatchedGroups List<String>
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
managementDataTypeCompoundGroupId string
matchedGroups string[]
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name string
Object name.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
unmatchedGroups string[]
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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_compound_group_id str
matched_groups Sequence[str]
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name str
Object name.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
unmatched_groups Sequence[str]
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups 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.
managementDataTypeCompoundGroupId String
matchedGroups List<String>
Each one of these data types must be matched - Select existing data types to add. Traffic must match all the data types of this group to match a rule. Identified by name or UID.matched_groups blocks are documented below.
name String
Object name.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
unmatchedGroups List<String>
Each one of these data types must not be matched - Select existing data types to add to the definition. Traffic that does not contain any data matching the types in this list will match this compound data type. Identified by name or UID.unmatched_groups blocks are documented below.

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.