1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. getManagementUser
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw

    This resource allows you to execute Check Point User.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const user = new checkpoint.ManagementUser("user", {
        name: "my user",
        email: "email@email.com",
        expirationDate: "2030-12-31",
        phoneNumber: "12345678",
        authenticationMethod: "securid",
        connectDaily: true,
        fromHour: "08:00",
        toHour: "17:00",
    });
    const testUser = checkpoint.getManagementUserOutput({
        name: user.name,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    user = checkpoint.ManagementUser("user",
        name="my user",
        email="email@email.com",
        expiration_date="2030-12-31",
        phone_number="12345678",
        authentication_method="securid",
        connect_daily=True,
        from_hour="08:00",
        to_hour="17:00")
    test_user = checkpoint.get_management_user_output(name=user.name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		user, err := checkpoint.NewManagementUser(ctx, "user", &checkpoint.ManagementUserArgs{
    			Name:                 pulumi.String("my user"),
    			Email:                pulumi.String("email@email.com"),
    			ExpirationDate:       pulumi.String("2030-12-31"),
    			PhoneNumber:          pulumi.String("12345678"),
    			AuthenticationMethod: pulumi.String("securid"),
    			ConnectDaily:         pulumi.Bool(true),
    			FromHour:             pulumi.String("08:00"),
    			ToHour:               pulumi.String("17:00"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = checkpoint.LookupManagementUserOutput(ctx, checkpoint.GetManagementUserOutputArgs{
    			Name: user.Name,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var user = new Checkpoint.ManagementUser("user", new()
        {
            Name = "my user",
            Email = "email@email.com",
            ExpirationDate = "2030-12-31",
            PhoneNumber = "12345678",
            AuthenticationMethod = "securid",
            ConnectDaily = true,
            FromHour = "08:00",
            ToHour = "17:00",
        });
    
        var testUser = Checkpoint.GetManagementUser.Invoke(new()
        {
            Name = user.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementUser;
    import com.pulumi.checkpoint.ManagementUserArgs;
    import com.pulumi.checkpoint.CheckpointFunctions;
    import com.pulumi.checkpoint.inputs.GetManagementUserArgs;
    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 user = new ManagementUser("user", ManagementUserArgs.builder()
                .name("my user")
                .email("email@email.com")
                .expirationDate("2030-12-31")
                .phoneNumber("12345678")
                .authenticationMethod("securid")
                .connectDaily(true)
                .fromHour("08:00")
                .toHour("17:00")
                .build());
    
            final var testUser = CheckpointFunctions.getManagementUser(GetManagementUserArgs.builder()
                .name(user.name())
                .build());
    
        }
    }
    
    resources:
      user:
        type: checkpoint:ManagementUser
        properties:
          name: my user
          email: email@email.com
          expirationDate: 2030-12-31
          phoneNumber: '12345678'
          authenticationMethod: securid
          connectDaily: true
          fromHour: 08:00
          toHour: 17:00
    variables:
      testUser:
        fn::invoke:
          function: checkpoint:getManagementUser
          arguments:
            name: ${user.name}
    

    Using getManagementUser

    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 getManagementUser(args: GetManagementUserArgs, opts?: InvokeOptions): Promise<GetManagementUserResult>
    function getManagementUserOutput(args: GetManagementUserOutputArgs, opts?: InvokeOptions): Output<GetManagementUserResult>
    def get_management_user(id: Optional[str] = None,
                            name: Optional[str] = None,
                            uid: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetManagementUserResult
    def get_management_user_output(id: Optional[pulumi.Input[str]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            uid: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetManagementUserResult]
    func LookupManagementUser(ctx *Context, args *LookupManagementUserArgs, opts ...InvokeOption) (*LookupManagementUserResult, error)
    func LookupManagementUserOutput(ctx *Context, args *LookupManagementUserOutputArgs, opts ...InvokeOption) LookupManagementUserResultOutput

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

    public static class GetManagementUser 
    {
        public static Task<GetManagementUserResult> InvokeAsync(GetManagementUserArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementUserResult> Invoke(GetManagementUserInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementUserResult> getManagementUser(GetManagementUserArgs args, InvokeOptions options)
    public static Output<GetManagementUserResult> getManagementUser(GetManagementUserArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementUser:getManagementUser
      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.

    getManagementUser Result

    The following output properties are available:

    Supporting Types

    GetManagementUserAllowedLocation

    Destinations List<string>
    Collection of allowed destination locations name or uid.
    Sources List<string>
    Collection of allowed source locations name or uid.
    Destinations []string
    Collection of allowed destination locations name or uid.
    Sources []string
    Collection of allowed source locations name or uid.
    destinations List<String>
    Collection of allowed destination locations name or uid.
    sources List<String>
    Collection of allowed source locations name or uid.
    destinations string[]
    Collection of allowed destination locations name or uid.
    sources string[]
    Collection of allowed source locations name or uid.
    destinations Sequence[str]
    Collection of allowed destination locations name or uid.
    sources Sequence[str]
    Collection of allowed source locations name or uid.
    destinations List<String>
    Collection of allowed destination locations name or uid.
    sources List<String>
    Collection of allowed source locations name or uid.

    GetManagementUserEncryption

    EnableIke bool
    Enable IKE encryption for users.
    EnablePublicKey bool
    Enable IKE public key.
    EnableSharedSecret bool
    Enable IKE shared secret.
    EnableIke bool
    Enable IKE encryption for users.
    EnablePublicKey bool
    Enable IKE public key.
    EnableSharedSecret bool
    Enable IKE shared secret.
    enableIke Boolean
    Enable IKE encryption for users.
    enablePublicKey Boolean
    Enable IKE public key.
    enableSharedSecret Boolean
    Enable IKE shared secret.
    enableIke boolean
    Enable IKE encryption for users.
    enablePublicKey boolean
    Enable IKE public key.
    enableSharedSecret boolean
    Enable IKE shared secret.
    enable_ike bool
    Enable IKE encryption for users.
    enable_public_key bool
    Enable IKE public key.
    enable_shared_secret bool
    Enable IKE shared secret.
    enableIke Boolean
    Enable IKE encryption for users.
    enablePublicKey Boolean
    Enable IKE public key.
    enableSharedSecret Boolean
    Enable IKE shared secret.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.0.0
    published on Monday, Mar 30, 2026 by checkpointsw
      Try Pulumi Cloud free. Your team will thank you.