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
Use this data source to get information on an existing Check Point Radius Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const host = new checkpoint.ManagementHost("host", {
name: "My Host",
ipv4Address: "1.2.3.4",
});
const radiusServer = new checkpoint.ManagementRadiusServer("radius_server", {
name: "New Radius Server",
server: host.name,
sharedSecret: "123",
});
const dataRadiusServer = checkpoint.getManagementRadiusServerOutput({
name: radiusServer.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
host = checkpoint.ManagementHost("host",
name="My Host",
ipv4_address="1.2.3.4")
radius_server = checkpoint.ManagementRadiusServer("radius_server",
name="New Radius Server",
server=host.name,
shared_secret="123")
data_radius_server = checkpoint.get_management_radius_server_output(name=radius_server.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 {
host, err := checkpoint.NewManagementHost(ctx, "host", &checkpoint.ManagementHostArgs{
Name: pulumi.String("My Host"),
Ipv4Address: pulumi.String("1.2.3.4"),
})
if err != nil {
return err
}
radiusServer, err := checkpoint.NewManagementRadiusServer(ctx, "radius_server", &checkpoint.ManagementRadiusServerArgs{
Name: pulumi.String("New Radius Server"),
Server: host.Name,
SharedSecret: pulumi.String("123"),
})
if err != nil {
return err
}
_ = checkpoint.LookupManagementRadiusServerOutput(ctx, checkpoint.GetManagementRadiusServerOutputArgs{
Name: radiusServer.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var host = new Checkpoint.ManagementHost("host", new()
{
Name = "My Host",
Ipv4Address = "1.2.3.4",
});
var radiusServer = new Checkpoint.ManagementRadiusServer("radius_server", new()
{
Name = "New Radius Server",
Server = host.Name,
SharedSecret = "123",
});
var dataRadiusServer = Checkpoint.GetManagementRadiusServer.Invoke(new()
{
Name = radiusServer.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementHost;
import com.pulumi.checkpoint.ManagementHostArgs;
import com.pulumi.checkpoint.ManagementRadiusServer;
import com.pulumi.checkpoint.ManagementRadiusServerArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementRadiusServerArgs;
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 host = new ManagementHost("host", ManagementHostArgs.builder()
.name("My Host")
.ipv4Address("1.2.3.4")
.build());
var radiusServer = new ManagementRadiusServer("radiusServer", ManagementRadiusServerArgs.builder()
.name("New Radius Server")
.server(host.name())
.sharedSecret("123")
.build());
final var dataRadiusServer = CheckpointFunctions.getManagementRadiusServer(GetManagementRadiusServerArgs.builder()
.name(radiusServer.name())
.build());
}
}
resources:
host:
type: checkpoint:ManagementHost
properties:
name: My Host
ipv4Address: 1.2.3.4
radiusServer:
type: checkpoint:ManagementRadiusServer
name: radius_server
properties:
name: New Radius Server
server: ${host.name}
sharedSecret: '123'
variables:
dataRadiusServer:
fn::invoke:
function: checkpoint:getManagementRadiusServer
arguments:
name: ${radiusServer.name}
Using getManagementRadiusServer
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 getManagementRadiusServer(args: GetManagementRadiusServerArgs, opts?: InvokeOptions): Promise<GetManagementRadiusServerResult>
function getManagementRadiusServerOutput(args: GetManagementRadiusServerOutputArgs, opts?: InvokeOptions): Output<GetManagementRadiusServerResult>def get_management_radius_server(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementRadiusServerResult
def get_management_radius_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[GetManagementRadiusServerResult]func LookupManagementRadiusServer(ctx *Context, args *LookupManagementRadiusServerArgs, opts ...InvokeOption) (*LookupManagementRadiusServerResult, error)
func LookupManagementRadiusServerOutput(ctx *Context, args *LookupManagementRadiusServerOutputArgs, opts ...InvokeOption) LookupManagementRadiusServerResultOutput> Note: This function is named LookupManagementRadiusServer in the Go SDK.
public static class GetManagementRadiusServer
{
public static Task<GetManagementRadiusServerResult> InvokeAsync(GetManagementRadiusServerArgs args, InvokeOptions? opts = null)
public static Output<GetManagementRadiusServerResult> Invoke(GetManagementRadiusServerInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementRadiusServerResult> getManagementRadiusServer(GetManagementRadiusServerArgs args, InvokeOptions options)
public static Output<GetManagementRadiusServerResult> getManagementRadiusServer(GetManagementRadiusServerArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementRadiusServer:getManagementRadiusServer
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementRadiusServer Result
The following output properties are available:
Supporting Types
GetManagementRadiusServerAccounting
- Accounting
Service string - The UID or Name of the the accounting interface to notify the server when users login and logout which will then lock and release the IP addresses that the server allocated to those users.
- Enable
Ip boolPool Management - IP pool management, enables Accounting service.
- Accounting
Service string - The UID or Name of the the accounting interface to notify the server when users login and logout which will then lock and release the IP addresses that the server allocated to those users.
- Enable
Ip boolPool Management - IP pool management, enables Accounting service.
- accounting
Service String - The UID or Name of the the accounting interface to notify the server when users login and logout which will then lock and release the IP addresses that the server allocated to those users.
- enable
Ip BooleanPool Management - IP pool management, enables Accounting service.
- accounting
Service string - The UID or Name of the the accounting interface to notify the server when users login and logout which will then lock and release the IP addresses that the server allocated to those users.
- enable
Ip booleanPool Management - IP pool management, enables Accounting service.
- accounting_
service str - The UID or Name of the the accounting interface to notify the server when users login and logout which will then lock and release the IP addresses that the server allocated to those users.
- enable_
ip_ boolpool_ management - IP pool management, enables Accounting service.
- accounting
Service String - The UID or Name of the the accounting interface to notify the server when users login and logout which will then lock and release the IP addresses that the server allocated to those users.
- enable
Ip BooleanPool Management - IP pool management, enables Accounting service.
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
