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

checkpoint.getManagementIdentityTag

Explore with Pulumi AI

This resource allows you to execute Check Point Identity Tag.

Example Usage

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

const test = new checkpoint.ManagementIdentityTag("test", {externalIdentifier: "cisco ise security group"});
const dataTest = checkpoint.getManagementIdentityTagOutput({
    name: test.name,
});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

test = checkpoint.ManagementIdentityTag("test", external_identifier="cisco ise security group")
data_test = checkpoint.get_management_identity_tag_output(name=test.name)
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 {
		test, err := checkpoint.NewManagementIdentityTag(ctx, "test", &checkpoint.ManagementIdentityTagArgs{
			ExternalIdentifier: pulumi.String("cisco ise security group"),
		})
		if err != nil {
			return err
		}
		_ = checkpoint.LookupManagementIdentityTagOutput(ctx, checkpoint.GetManagementIdentityTagOutputArgs{
			Name: test.Name,
		}, nil)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var test = new Checkpoint.ManagementIdentityTag("test", new()
    {
        ExternalIdentifier = "cisco ise security group",
    });

    var dataTest = Checkpoint.GetManagementIdentityTag.Invoke(new()
    {
        Name = test.Name,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementIdentityTag;
import com.pulumi.checkpoint.ManagementIdentityTagArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementIdentityTagArgs;
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 test = new ManagementIdentityTag("test", ManagementIdentityTagArgs.builder()
            .externalIdentifier("cisco ise security group")
            .build());

        final var dataTest = CheckpointFunctions.getManagementIdentityTag(GetManagementIdentityTagArgs.builder()
            .name(test.name())
            .build());

    }
}
Copy
resources:
  test:
    type: checkpoint:ManagementIdentityTag
    properties:
      externalIdentifier: cisco ise security group
variables:
  dataTest:
    fn::invoke:
      function: checkpoint:getManagementIdentityTag
      arguments:
        name: ${test.name}
Copy

Using getManagementIdentityTag

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 getManagementIdentityTag(args: GetManagementIdentityTagArgs, opts?: InvokeOptions): Promise<GetManagementIdentityTagResult>
function getManagementIdentityTagOutput(args: GetManagementIdentityTagOutputArgs, opts?: InvokeOptions): Output<GetManagementIdentityTagResult>
Copy
def get_management_identity_tag(id: Optional[str] = None,
                                name: Optional[str] = None,
                                uid: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetManagementIdentityTagResult
def get_management_identity_tag_output(id: Optional[pulumi.Input[str]] = None,
                                name: Optional[pulumi.Input[str]] = None,
                                uid: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetManagementIdentityTagResult]
Copy
func LookupManagementIdentityTag(ctx *Context, args *LookupManagementIdentityTagArgs, opts ...InvokeOption) (*LookupManagementIdentityTagResult, error)
func LookupManagementIdentityTagOutput(ctx *Context, args *LookupManagementIdentityTagOutputArgs, opts ...InvokeOption) LookupManagementIdentityTagResultOutput
Copy

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

public static class GetManagementIdentityTag 
{
    public static Task<GetManagementIdentityTagResult> InvokeAsync(GetManagementIdentityTagArgs args, InvokeOptions? opts = null)
    public static Output<GetManagementIdentityTagResult> Invoke(GetManagementIdentityTagInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetManagementIdentityTagResult> getManagementIdentityTag(GetManagementIdentityTagArgs args, InvokeOptions options)
public static Output<GetManagementIdentityTagResult> getManagementIdentityTag(GetManagementIdentityTagArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: checkpoint:index/getManagementIdentityTag:getManagementIdentityTag
  arguments:
    # arguments dictionary
Copy

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.

getManagementIdentityTag Result

The following output properties are available:

Color string
Comments string
ExternalIdentifier string
Id string
Tags List<string>
Name string
Uid string
Color string
Comments string
ExternalIdentifier string
Id string
Tags []string
Name string
Uid string
color String
comments String
externalIdentifier String
id String
tags List<String>
name String
uid String
color string
comments string
externalIdentifier string
id string
tags string[]
name string
uid string
color str
comments str
external_identifier str
id str
tags Sequence[str]
name str
uid str
color String
comments String
externalIdentifier String
id String
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.