checkpoint 2.12.0 published on Monday, Nov 10, 2025 by checkpointsw
checkpoint 2.12.0 published on Monday, Nov 10, 2025 by checkpointsw
Use this data source to get information on an existing Check Point Logical Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const dataTest = checkpoint.getManagementLogicalServer({
name: "logical_server1",
});
import pulumi
import pulumi_checkpoint as checkpoint
data_test = checkpoint.get_management_logical_server(name="logical_server1")
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.LookupManagementLogicalServer(ctx, &checkpoint.LookupManagementLogicalServerArgs{
Name: pulumi.StringRef("logical_server1"),
}, nil)
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 dataTest = Checkpoint.GetManagementLogicalServer.Invoke(new()
{
Name = "logical_server1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementLogicalServerArgs;
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) {
final var dataTest = CheckpointFunctions.getManagementLogicalServer(GetManagementLogicalServerArgs.builder()
.name("logical_server1")
.build());
}
}
variables:
dataTest:
fn::invoke:
function: checkpoint:getManagementLogicalServer
arguments:
name: logical_server1
Using getManagementLogicalServer
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 getManagementLogicalServer(args: GetManagementLogicalServerArgs, opts?: InvokeOptions): Promise<GetManagementLogicalServerResult>
function getManagementLogicalServerOutput(args: GetManagementLogicalServerOutputArgs, opts?: InvokeOptions): Output<GetManagementLogicalServerResult>def get_management_logical_server(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementLogicalServerResult
def get_management_logical_server_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementLogicalServerResult]func LookupManagementLogicalServer(ctx *Context, args *LookupManagementLogicalServerArgs, opts ...InvokeOption) (*LookupManagementLogicalServerResult, error)
func LookupManagementLogicalServerOutput(ctx *Context, args *LookupManagementLogicalServerOutputArgs, opts ...InvokeOption) LookupManagementLogicalServerResultOutput> Note: This function is named LookupManagementLogicalServer in the Go SDK.
public static class GetManagementLogicalServer
{
public static Task<GetManagementLogicalServerResult> InvokeAsync(GetManagementLogicalServerArgs args, InvokeOptions? opts = null)
public static Output<GetManagementLogicalServerResult> Invoke(GetManagementLogicalServerInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementLogicalServerResult> getManagementLogicalServer(GetManagementLogicalServerArgs args, InvokeOptions options)
public static Output<GetManagementLogicalServerResult> getManagementLogicalServer(GetManagementLogicalServerArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementLogicalServer:getManagementLogicalServer
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementLogicalServer Result
The following output properties are available:
- Balance
Method string - Color string
- Comments string
- Icon string
- Id string
- Ipv4Address string
- Ipv6Address string
- Persistence
Mode bool - Persistency
Type string - Server
Group string - Server
Type string - List<string>
- Name string
- Uid string
- Balance
Method string - Color string
- Comments string
- Icon string
- Id string
- Ipv4Address string
- Ipv6Address string
- Persistence
Mode bool - Persistency
Type string - Server
Group string - Server
Type string - []string
- Name string
- Uid string
- balance
Method String - color String
- comments String
- icon String
- id String
- ipv4Address String
- ipv6Address String
- persistence
Mode Boolean - persistency
Type String - server
Group String - server
Type String - List<String>
- name String
- uid String
- balance
Method string - color string
- comments string
- icon string
- id string
- ipv4Address string
- ipv6Address string
- persistence
Mode boolean - persistency
Type string - server
Group string - server
Type string - string[]
- name string
- uid string
- balance_
method str - color str
- comments str
- icon str
- id str
- ipv4_
address str - ipv6_
address str - persistence_
mode bool - persistency_
type str - server_
group str - server_
type str - Sequence[str]
- name str
- uid str
- balance
Method String - color String
- comments String
- icon String
- id String
- ipv4Address String
- ipv6Address String
- persistence
Mode Boolean - persistency
Type String - server
Group String - server
Type String - List<String>
- name String
- uid String
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
checkpoint 2.12.0 published on Monday, Nov 10, 2025 by checkpointsw
