Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
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 dictionaryThe following arguments are supported:
getManagementUser Result
The following output properties are available:
- Allowed
Locations List<GetManagement User Allowed Location> - Authentication
Method string - Color string
- Comments string
- Connect
Daily bool - Connect
On List<string>Days - Email string
- Encryptions
List<Get
Management User Encryption> - Expiration
Date string - From
Hour string - Id string
- Phone
Number string - Radius
Server string - Tacacs
Server string - List<string>
- To
Hour string - Name string
- Uid string
- Allowed
Locations []GetManagement User Allowed Location - Authentication
Method string - Color string
- Comments string
- Connect
Daily bool - Connect
On []stringDays - Email string
- Encryptions
[]Get
Management User Encryption - Expiration
Date string - From
Hour string - Id string
- Phone
Number string - Radius
Server string - Tacacs
Server string - []string
- To
Hour string - Name string
- Uid string
- allowed
Locations List<GetManagement User Allowed Location> - authentication
Method String - color String
- comments String
- connect
Daily Boolean - connect
On List<String>Days - email String
- encryptions
List<Get
Management User Encryption> - expiration
Date String - from
Hour String - id String
- phone
Number String - radius
Server String - tacacs
Server String - List<String>
- to
Hour String - name String
- uid String
- allowed
Locations GetManagement User Allowed Location[] - authentication
Method string - color string
- comments string
- connect
Daily boolean - connect
On string[]Days - email string
- encryptions
Get
Management User Encryption[] - expiration
Date string - from
Hour string - id string
- phone
Number string - radius
Server string - tacacs
Server string - string[]
- to
Hour string - name string
- uid string
- allowed_
locations Sequence[GetManagement User Allowed Location] - authentication_
method str - color str
- comments str
- connect_
daily bool - connect_
on_ Sequence[str]days - email str
- encryptions
Sequence[Get
Management User Encryption] - expiration_
date str - from_
hour str - id str
- phone_
number str - radius_
server str - tacacs_
server str - Sequence[str]
- to_
hour str - name str
- uid str
- allowed
Locations List<Property Map> - authentication
Method String - color String
- comments String
- connect
Daily Boolean - connect
On List<String>Days - email String
- encryptions List<Property Map>
- expiration
Date String - from
Hour String - id String
- phone
Number String - radius
Server String - tacacs
Server String - List<String>
- to
Hour String - name String
- uid String
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
- Enable
Ike bool - Enable IKE encryption for users.
- Enable
Public boolKey - Enable IKE public key.
- bool
- Enable IKE shared secret.
- Enable
Ike bool - Enable IKE encryption for users.
- Enable
Public boolKey - Enable IKE public key.
- bool
- Enable IKE shared secret.
- enable
Ike Boolean - Enable IKE encryption for users.
- enable
Public BooleanKey - Enable IKE public key.
- Boolean
- Enable IKE shared secret.
- enable
Ike boolean - Enable IKE encryption for users.
- enable
Public booleanKey - Enable IKE public key.
- boolean
- Enable IKE shared secret.
- enable_
ike bool - Enable IKE encryption for users.
- enable_
public_ boolkey - Enable IKE public key.
- bool
- Enable IKE shared secret.
- enable
Ike Boolean - Enable IKE encryption for users.
- enable
Public BooleanKey - Enable IKE public key.
- Boolean
- Enable IKE shared secret.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
