1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. getManagementRadiusServer
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

    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 dictionary

    The following arguments are supported:

    Id string
    Name string
    Object name. Should be unique in the domain.
    Uid string
    Object unique identifier.
    Id string
    Name string
    Object name. Should be unique in the domain.
    Uid string
    Object unique identifier.
    id String
    name String
    Object name. Should be unique in the domain.
    uid String
    Object unique identifier.
    id string
    name string
    Object name. Should be unique in the domain.
    uid string
    Object unique identifier.
    id str
    name str
    Object name. Should be unique in the domain.
    uid str
    Object unique identifier.
    id String
    name String
    Object name. Should be unique in the domain.
    uid String
    Object unique identifier.

    getManagementRadiusServer Result

    The following output properties are available:

    Accountings List<GetManagementRadiusServerAccounting>
    Color string
    Comments string
    Id string
    Priority double
    Protocol string
    Server string
    Service string
    SharedSecret string
    Tags List<string>
    Version string
    Name string
    Uid string
    Accountings []GetManagementRadiusServerAccounting
    Color string
    Comments string
    Id string
    Priority float64
    Protocol string
    Server string
    Service string
    SharedSecret string
    Tags []string
    Version string
    Name string
    Uid string
    accountings List<GetManagementRadiusServerAccounting>
    color String
    comments String
    id String
    priority Double
    protocol String
    server String
    service String
    sharedSecret String
    tags List<String>
    version String
    name String
    uid String
    accountings GetManagementRadiusServerAccounting[]
    color string
    comments string
    id string
    priority number
    protocol string
    server string
    service string
    sharedSecret string
    tags string[]
    version string
    name string
    uid string
    accountings List<Property Map>
    color String
    comments String
    id String
    priority Number
    protocol String
    server String
    service String
    sharedSecret String
    tags List<String>
    version String
    name String
    uid String

    Supporting Types

    GetManagementRadiusServerAccounting

    AccountingService 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.
    EnableIpPoolManagement bool
    IP pool management, enables Accounting service.
    AccountingService 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.
    EnableIpPoolManagement bool
    IP pool management, enables Accounting service.
    accountingService 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.
    enableIpPoolManagement Boolean
    IP pool management, enables Accounting service.
    accountingService 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.
    enableIpPoolManagement boolean
    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_pool_management bool
    IP pool management, enables Accounting service.
    accountingService 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.
    enableIpPoolManagement Boolean
    IP pool management, enables Accounting service.

    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.