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

checkpoint.ManagementDataCenterQuery

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 Center Query.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementDataCenterQuery("example", {
        dataCenters: ["All"],
        queryRules: [{
            key: "name-in-data-center",
            keyType: "predefined",
            values: [
                "firstVal",
                "secondVal",
            ],
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementDataCenterQuery("example",
        data_centers=["All"],
        query_rules=[{
            "key": "name-in-data-center",
            "key_type": "predefined",
            "values": [
                "firstVal",
                "secondVal",
            ],
        }])
    
    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.NewManagementDataCenterQuery(ctx, "example", &checkpoint.ManagementDataCenterQueryArgs{
    			DataCenters: pulumi.StringArray{
    				pulumi.String("All"),
    			},
    			QueryRules: checkpoint.ManagementDataCenterQueryQueryRuleArray{
    				&checkpoint.ManagementDataCenterQueryQueryRuleArgs{
    					Key:     pulumi.String("name-in-data-center"),
    					KeyType: pulumi.String("predefined"),
    					Values: pulumi.StringArray{
    						pulumi.String("firstVal"),
    						pulumi.String("secondVal"),
    					},
    				},
    			},
    		})
    		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.ManagementDataCenterQuery("example", new()
        {
            DataCenters = new[]
            {
                "All",
            },
            QueryRules = new[]
            {
                new Checkpoint.Inputs.ManagementDataCenterQueryQueryRuleArgs
                {
                    Key = "name-in-data-center",
                    KeyType = "predefined",
                    Values = new[]
                    {
                        "firstVal",
                        "secondVal",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementDataCenterQuery;
    import com.pulumi.checkpoint.ManagementDataCenterQueryArgs;
    import com.pulumi.checkpoint.inputs.ManagementDataCenterQueryQueryRuleArgs;
    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 ManagementDataCenterQuery("example", ManagementDataCenterQueryArgs.builder()
                .dataCenters("All")
                .queryRules(ManagementDataCenterQueryQueryRuleArgs.builder()
                    .key("name-in-data-center")
                    .keyType("predefined")
                    .values(                
                        "firstVal",
                        "secondVal")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementDataCenterQuery
        properties:
          dataCenters:
            - All
          queryRules:
            - key: name-in-data-center
              keyType: predefined
              values:
                - firstVal
                - secondVal
    

    Create ManagementDataCenterQuery Resource

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

    Constructor syntax

    new ManagementDataCenterQuery(name: string, args?: ManagementDataCenterQueryArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementDataCenterQuery(resource_name: str,
                                  args: Optional[ManagementDataCenterQueryArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementDataCenterQuery(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  color: Optional[str] = None,
                                  comments: Optional[str] = None,
                                  data_centers: Optional[Sequence[str]] = None,
                                  ignore_errors: Optional[bool] = None,
                                  ignore_warnings: Optional[bool] = None,
                                  management_data_center_query_id: Optional[str] = None,
                                  name: Optional[str] = None,
                                  query_rules: Optional[Sequence[ManagementDataCenterQueryQueryRuleArgs]] = None,
                                  tags: Optional[Sequence[str]] = None)
    func NewManagementDataCenterQuery(ctx *Context, name string, args *ManagementDataCenterQueryArgs, opts ...ResourceOption) (*ManagementDataCenterQuery, error)
    public ManagementDataCenterQuery(string name, ManagementDataCenterQueryArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementDataCenterQuery(String name, ManagementDataCenterQueryArgs args)
    public ManagementDataCenterQuery(String name, ManagementDataCenterQueryArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementDataCenterQuery
    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 ManagementDataCenterQueryArgs
    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 ManagementDataCenterQueryArgs
    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 ManagementDataCenterQueryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementDataCenterQueryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementDataCenterQueryArgs
    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 managementDataCenterQueryResource = new Checkpoint.ManagementDataCenterQuery("managementDataCenterQueryResource", new()
    {
        Color = "string",
        Comments = "string",
        DataCenters = new[]
        {
            "string",
        },
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementDataCenterQueryId = "string",
        Name = "string",
        QueryRules = new[]
        {
            new Checkpoint.Inputs.ManagementDataCenterQueryQueryRuleArgs
            {
                Key = "string",
                KeyType = "string",
                Values = new[]
                {
                    "string",
                },
            },
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementDataCenterQuery(ctx, "managementDataCenterQueryResource", &checkpoint.ManagementDataCenterQueryArgs{
    	Color:    pulumi.String("string"),
    	Comments: pulumi.String("string"),
    	DataCenters: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IgnoreErrors:                pulumi.Bool(false),
    	IgnoreWarnings:              pulumi.Bool(false),
    	ManagementDataCenterQueryId: pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	QueryRules: checkpoint.ManagementDataCenterQueryQueryRuleArray{
    		&checkpoint.ManagementDataCenterQueryQueryRuleArgs{
    			Key:     pulumi.String("string"),
    			KeyType: pulumi.String("string"),
    			Values: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var managementDataCenterQueryResource = new ManagementDataCenterQuery("managementDataCenterQueryResource", ManagementDataCenterQueryArgs.builder()
        .color("string")
        .comments("string")
        .dataCenters("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementDataCenterQueryId("string")
        .name("string")
        .queryRules(ManagementDataCenterQueryQueryRuleArgs.builder()
            .key("string")
            .keyType("string")
            .values("string")
            .build())
        .tags("string")
        .build());
    
    management_data_center_query_resource = checkpoint.ManagementDataCenterQuery("managementDataCenterQueryResource",
        color="string",
        comments="string",
        data_centers=["string"],
        ignore_errors=False,
        ignore_warnings=False,
        management_data_center_query_id="string",
        name="string",
        query_rules=[{
            "key": "string",
            "key_type": "string",
            "values": ["string"],
        }],
        tags=["string"])
    
    const managementDataCenterQueryResource = new checkpoint.ManagementDataCenterQuery("managementDataCenterQueryResource", {
        color: "string",
        comments: "string",
        dataCenters: ["string"],
        ignoreErrors: false,
        ignoreWarnings: false,
        managementDataCenterQueryId: "string",
        name: "string",
        queryRules: [{
            key: "string",
            keyType: "string",
            values: ["string"],
        }],
        tags: ["string"],
    });
    
    type: checkpoint:ManagementDataCenterQuery
    properties:
        color: string
        comments: string
        dataCenters:
            - string
        ignoreErrors: false
        ignoreWarnings: false
        managementDataCenterQueryId: string
        name: string
        queryRules:
            - key: string
              keyType: string
              values:
                - string
        tags:
            - string
    

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

    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    DataCenters List<string>
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    ManagementDataCenterQueryId string
    Name string
    Object name.
    QueryRules List<ManagementDataCenterQueryQueryRule>
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    DataCenters []string
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    ManagementDataCenterQueryId string
    Name string
    Object name.
    QueryRules []ManagementDataCenterQueryQueryRuleArgs
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    dataCenters List<String>
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    managementDataCenterQueryId String
    name String
    Object name.
    queryRules List<ManagementDataCenterQueryQueryRule>
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    dataCenters string[]
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    managementDataCenterQueryId string
    name string
    Object name.
    queryRules ManagementDataCenterQueryQueryRule[]
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    data_centers Sequence[str]
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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_center_query_id str
    name str
    Object name.
    query_rules Sequence[ManagementDataCenterQueryQueryRuleArgs]
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    dataCenters List<String>
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    managementDataCenterQueryId String
    name String
    Object name.
    queryRules List<Property Map>
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Outputs

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

    Get an existing ManagementDataCenterQuery 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?: ManagementDataCenterQueryState, opts?: CustomResourceOptions): ManagementDataCenterQuery
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            data_centers: Optional[Sequence[str]] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_data_center_query_id: Optional[str] = None,
            name: Optional[str] = None,
            query_rules: Optional[Sequence[ManagementDataCenterQueryQueryRuleArgs]] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementDataCenterQuery
    func GetManagementDataCenterQuery(ctx *Context, name string, id IDInput, state *ManagementDataCenterQueryState, opts ...ResourceOption) (*ManagementDataCenterQuery, error)
    public static ManagementDataCenterQuery Get(string name, Input<string> id, ManagementDataCenterQueryState? state, CustomResourceOptions? opts = null)
    public static ManagementDataCenterQuery get(String name, Output<String> id, ManagementDataCenterQueryState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementDataCenterQuery    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.
    DataCenters List<string>
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    ManagementDataCenterQueryId string
    Name string
    Object name.
    QueryRules List<ManagementDataCenterQueryQueryRule>
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    DataCenters []string
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    ManagementDataCenterQueryId string
    Name string
    Object name.
    QueryRules []ManagementDataCenterQueryQueryRuleArgs
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    dataCenters List<String>
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    managementDataCenterQueryId String
    name String
    Object name.
    queryRules List<ManagementDataCenterQueryQueryRule>
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    dataCenters string[]
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    managementDataCenterQueryId string
    name string
    Object name.
    queryRules ManagementDataCenterQueryQueryRule[]
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    data_centers Sequence[str]
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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_center_query_id str
    name str
    Object name.
    query_rules Sequence[ManagementDataCenterQueryQueryRuleArgs]
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    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 string.
    dataCenters List<String>
    Collection of Data Center servers identified by the name or UID. Use "All" to select all data centers.data_centers blocks are documented below.
    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.
    managementDataCenterQueryId String
    name String
    Object name.
    queryRules List<Property Map>
    Data Center Query Rules.There is an 'AND' operation between multiple Query Rules.query_rules blocks are documented below.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Supporting Types

    ManagementDataCenterQueryQueryRule, ManagementDataCenterQueryQueryRuleArgs

    Key string
    Defines in which Data Center property to query.For key-type "predefined", use these keys:type-in-data-center, name-in-data-center, and ip-address.For key-type "tag", use the Data Center tag key to query.Keys are case-insensitive.
    KeyType string
    The type of the "key" parameter.Use "predefined" for these keys: type-in-data-center, name-in-data-center, and ip-address.Use "tag" to query the Data Center tag�s property.
    Values List<string>
    The value(s) of the Data Center property to match the Query Rule.Values are case-insensitive.There is an 'OR' operation between multiple values.For key-type "predefined" and key 'ip-address', the values must be an IPv4 or IPv6 address.For key-type "tag", the values must be the Data Center tag values.values blocks are documented below.
    Key string
    Defines in which Data Center property to query.For key-type "predefined", use these keys:type-in-data-center, name-in-data-center, and ip-address.For key-type "tag", use the Data Center tag key to query.Keys are case-insensitive.
    KeyType string
    The type of the "key" parameter.Use "predefined" for these keys: type-in-data-center, name-in-data-center, and ip-address.Use "tag" to query the Data Center tag�s property.
    Values []string
    The value(s) of the Data Center property to match the Query Rule.Values are case-insensitive.There is an 'OR' operation between multiple values.For key-type "predefined" and key 'ip-address', the values must be an IPv4 or IPv6 address.For key-type "tag", the values must be the Data Center tag values.values blocks are documented below.
    key String
    Defines in which Data Center property to query.For key-type "predefined", use these keys:type-in-data-center, name-in-data-center, and ip-address.For key-type "tag", use the Data Center tag key to query.Keys are case-insensitive.
    keyType String
    The type of the "key" parameter.Use "predefined" for these keys: type-in-data-center, name-in-data-center, and ip-address.Use "tag" to query the Data Center tag�s property.
    values List<String>
    The value(s) of the Data Center property to match the Query Rule.Values are case-insensitive.There is an 'OR' operation between multiple values.For key-type "predefined" and key 'ip-address', the values must be an IPv4 or IPv6 address.For key-type "tag", the values must be the Data Center tag values.values blocks are documented below.
    key string
    Defines in which Data Center property to query.For key-type "predefined", use these keys:type-in-data-center, name-in-data-center, and ip-address.For key-type "tag", use the Data Center tag key to query.Keys are case-insensitive.
    keyType string
    The type of the "key" parameter.Use "predefined" for these keys: type-in-data-center, name-in-data-center, and ip-address.Use "tag" to query the Data Center tag�s property.
    values string[]
    The value(s) of the Data Center property to match the Query Rule.Values are case-insensitive.There is an 'OR' operation between multiple values.For key-type "predefined" and key 'ip-address', the values must be an IPv4 or IPv6 address.For key-type "tag", the values must be the Data Center tag values.values blocks are documented below.
    key str
    Defines in which Data Center property to query.For key-type "predefined", use these keys:type-in-data-center, name-in-data-center, and ip-address.For key-type "tag", use the Data Center tag key to query.Keys are case-insensitive.
    key_type str
    The type of the "key" parameter.Use "predefined" for these keys: type-in-data-center, name-in-data-center, and ip-address.Use "tag" to query the Data Center tag�s property.
    values Sequence[str]
    The value(s) of the Data Center property to match the Query Rule.Values are case-insensitive.There is an 'OR' operation between multiple values.For key-type "predefined" and key 'ip-address', the values must be an IPv4 or IPv6 address.For key-type "tag", the values must be the Data Center tag values.values blocks are documented below.
    key String
    Defines in which Data Center property to query.For key-type "predefined", use these keys:type-in-data-center, name-in-data-center, and ip-address.For key-type "tag", use the Data Center tag key to query.Keys are case-insensitive.
    keyType String
    The type of the "key" parameter.Use "predefined" for these keys: type-in-data-center, name-in-data-center, and ip-address.Use "tag" to query the Data Center tag�s property.
    values List<String>
    The value(s) of the Data Center property to match the Query Rule.Values are case-insensitive.There is an 'OR' operation between multiple values.For key-type "predefined" and key 'ip-address', the values must be an IPv4 or IPv6 address.For key-type "tag", the values must be the Data Center tag values.values blocks are documented below.

    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