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

checkpoint.getManagementDataTypeKeywords

Explore with Pulumi AI

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

    Use this data source to get information on an existing Check Point Data Type Keywords.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementDataTypeKeywords("example", {
        dataMatchThreshold: "all-keywords",
        description: "keywords object",
        keywords: [
            "word1",
            "word2",
        ],
    });
    const data = checkpoint.getManagementDataTypeKeywordsOutput({
        name: example.name,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementDataTypeKeywords("example",
        data_match_threshold="all-keywords",
        description="keywords object",
        keywords=[
            "word1",
            "word2",
        ])
    data = checkpoint.get_management_data_type_keywords_output(name=example.name)
    
    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 {
    		example, err := checkpoint.NewManagementDataTypeKeywords(ctx, "example", &checkpoint.ManagementDataTypeKeywordsArgs{
    			DataMatchThreshold: pulumi.String("all-keywords"),
    			Description:        pulumi.String("keywords object"),
    			Keywords: pulumi.StringArray{
    				pulumi.String("word1"),
    				pulumi.String("word2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_ = checkpoint.LookupManagementDataTypeKeywordsOutput(ctx, checkpoint.GetManagementDataTypeKeywordsOutputArgs{
    			Name: example.Name,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Checkpoint.ManagementDataTypeKeywords("example", new()
        {
            DataMatchThreshold = "all-keywords",
            Description = "keywords object",
            Keywords = new[]
            {
                "word1",
                "word2",
            },
        });
    
        var data = Checkpoint.GetManagementDataTypeKeywords.Invoke(new()
        {
            Name = example.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementDataTypeKeywords;
    import com.pulumi.checkpoint.ManagementDataTypeKeywordsArgs;
    import com.pulumi.checkpoint.CheckpointFunctions;
    import com.pulumi.checkpoint.inputs.GetManagementDataTypeKeywordsArgs;
    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 ManagementDataTypeKeywords("example", ManagementDataTypeKeywordsArgs.builder()
                .dataMatchThreshold("all-keywords")
                .description("keywords object")
                .keywords(            
                    "word1",
                    "word2")
                .build());
    
            final var data = CheckpointFunctions.getManagementDataTypeKeywords(GetManagementDataTypeKeywordsArgs.builder()
                .name(example.name())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementDataTypeKeywords
        properties:
          dataMatchThreshold: all-keywords
          description: keywords object
          keywords:
            - word1
            - word2
    variables:
      data:
        fn::invoke:
          function: checkpoint:getManagementDataTypeKeywords
          arguments:
            name: ${example.name}
    

    Using getManagementDataTypeKeywords

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getManagementDataTypeKeywords(args: GetManagementDataTypeKeywordsArgs, opts?: InvokeOptions): Promise<GetManagementDataTypeKeywordsResult>
    function getManagementDataTypeKeywordsOutput(args: GetManagementDataTypeKeywordsOutputArgs, opts?: InvokeOptions): Output<GetManagementDataTypeKeywordsResult>
    def get_management_data_type_keywords(id: Optional[str] = None,
                                          name: Optional[str] = None,
                                          uid: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetManagementDataTypeKeywordsResult
    def get_management_data_type_keywords_output(id: Optional[pulumi.Input[str]] = None,
                                          name: Optional[pulumi.Input[str]] = None,
                                          uid: Optional[pulumi.Input[str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataTypeKeywordsResult]
    func LookupManagementDataTypeKeywords(ctx *Context, args *LookupManagementDataTypeKeywordsArgs, opts ...InvokeOption) (*LookupManagementDataTypeKeywordsResult, error)
    func LookupManagementDataTypeKeywordsOutput(ctx *Context, args *LookupManagementDataTypeKeywordsOutputArgs, opts ...InvokeOption) LookupManagementDataTypeKeywordsResultOutput

    > Note: This function is named LookupManagementDataTypeKeywords in the Go SDK.

    public static class GetManagementDataTypeKeywords 
    {
        public static Task<GetManagementDataTypeKeywordsResult> InvokeAsync(GetManagementDataTypeKeywordsArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementDataTypeKeywordsResult> Invoke(GetManagementDataTypeKeywordsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementDataTypeKeywordsResult> getManagementDataTypeKeywords(GetManagementDataTypeKeywordsArgs args, InvokeOptions options)
    public static Output<GetManagementDataTypeKeywordsResult> getManagementDataTypeKeywords(GetManagementDataTypeKeywordsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementDataTypeKeywords:getManagementDataTypeKeywords
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    id str
    name str
    Object name.
    uid str
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.

    getManagementDataTypeKeywords Result

    The following output properties are available:

    Color string
    Comments string
    DataMatchThreshold string
    Description string
    Id string
    Keywords List<string>
    MinNumberOfKeywords double
    Tags List<string>
    Name string
    Uid string
    Color string
    Comments string
    DataMatchThreshold string
    Description string
    Id string
    Keywords []string
    MinNumberOfKeywords float64
    Tags []string
    Name string
    Uid string
    color String
    comments String
    dataMatchThreshold String
    description String
    id String
    keywords List<String>
    minNumberOfKeywords Double
    tags List<String>
    name String
    uid String
    color string
    comments string
    dataMatchThreshold string
    description string
    id string
    keywords string[]
    minNumberOfKeywords number
    tags string[]
    name string
    uid string
    color str
    comments str
    data_match_threshold str
    description str
    id str
    keywords Sequence[str]
    min_number_of_keywords float
    tags Sequence[str]
    name str
    uid str
    color String
    comments String
    dataMatchThreshold String
    description String
    id String
    keywords List<String>
    minNumberOfKeywords Number
    tags List<String>
    name String
    uid String

    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