1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaRadius
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Radius.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaRadius("example", {
        enabled: true,
        defaultShell: "cli",
        superUserUid: "96",
        servers: [{
            priority: 3,
            address: "1.2.1.2",
            port: 1812,
            timeout: 3,
            secret: "mySecret",
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaRadius("example",
        enabled=True,
        default_shell="cli",
        super_user_uid="96",
        servers=[{
            "priority": 3,
            "address": "1.2.1.2",
            "port": 1812,
            "timeout": 3,
            "secret": "mySecret",
        }])
    
    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 {
    		_, err := checkpoint.NewGaiaRadius(ctx, "example", &checkpoint.GaiaRadiusArgs{
    			Enabled:      pulumi.Bool(true),
    			DefaultShell: pulumi.String("cli"),
    			SuperUserUid: pulumi.String("96"),
    			Servers: checkpoint.GaiaRadiusServerArray{
    				&checkpoint.GaiaRadiusServerArgs{
    					Priority: pulumi.Float64(3),
    					Address:  pulumi.String("1.2.1.2"),
    					Port:     pulumi.Float64(1812),
    					Timeout:  pulumi.Float64(3),
    					Secret:   pulumi.String("mySecret"),
    				},
    			},
    		})
    		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 example = new Checkpoint.GaiaRadius("example", new()
        {
            Enabled = true,
            DefaultShell = "cli",
            SuperUserUid = "96",
            Servers = new[]
            {
                new Checkpoint.Inputs.GaiaRadiusServerArgs
                {
                    Priority = 3,
                    Address = "1.2.1.2",
                    Port = 1812,
                    Timeout = 3,
                    Secret = "mySecret",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaRadius;
    import com.pulumi.checkpoint.GaiaRadiusArgs;
    import com.pulumi.checkpoint.inputs.GaiaRadiusServerArgs;
    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 example = new GaiaRadius("example", GaiaRadiusArgs.builder()
                .enabled(true)
                .defaultShell("cli")
                .superUserUid("96")
                .servers(GaiaRadiusServerArgs.builder()
                    .priority(3.0)
                    .address("1.2.1.2")
                    .port(1812.0)
                    .timeout(3.0)
                    .secret("mySecret")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaRadius
        properties:
          enabled: true
          defaultShell: cli
          superUserUid: '96'
          servers:
            - priority: 3
              address: 1.2.1.2
              port: 1812
              timeout: 3
              secret: mySecret
    
    Example coming soon!
    

    Create GaiaRadius Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GaiaRadius(name: string, args?: GaiaRadiusArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaRadius(resource_name: str,
                   args: Optional[GaiaRadiusArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaRadius(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   debug: Optional[bool] = None,
                   default_shell: Optional[str] = None,
                   enabled: Optional[bool] = None,
                   gaia_radius_id: Optional[str] = None,
                   member_id: Optional[str] = None,
                   nas_ip: Optional[str] = None,
                   servers: Optional[Sequence[GaiaRadiusServerArgs]] = None,
                   super_user_uid: Optional[str] = None)
    func NewGaiaRadius(ctx *Context, name string, args *GaiaRadiusArgs, opts ...ResourceOption) (*GaiaRadius, error)
    public GaiaRadius(string name, GaiaRadiusArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaRadius(String name, GaiaRadiusArgs args)
    public GaiaRadius(String name, GaiaRadiusArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaRadius
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiaradius" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaRadiusArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GaiaRadiusArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GaiaRadiusArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaRadiusArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaRadiusArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var gaiaRadiusResource = new Checkpoint.GaiaRadius("gaiaRadiusResource", new()
    {
        Debug = false,
        DefaultShell = "string",
        Enabled = false,
        GaiaRadiusId = "string",
        MemberId = "string",
        NasIp = "string",
        Servers = new[]
        {
            new Checkpoint.Inputs.GaiaRadiusServerArgs
            {
                Address = "string",
                Port = 0,
                Priority = 0,
                Secret = "string",
                Timeout = 0,
            },
        },
        SuperUserUid = "string",
    });
    
    example, err := checkpoint.NewGaiaRadius(ctx, "gaiaRadiusResource", &checkpoint.GaiaRadiusArgs{
    	Debug:        pulumi.Bool(false),
    	DefaultShell: pulumi.String("string"),
    	Enabled:      pulumi.Bool(false),
    	GaiaRadiusId: pulumi.String("string"),
    	MemberId:     pulumi.String("string"),
    	NasIp:        pulumi.String("string"),
    	Servers: checkpoint.GaiaRadiusServerArray{
    		&checkpoint.GaiaRadiusServerArgs{
    			Address:  pulumi.String("string"),
    			Port:     pulumi.Float64(0),
    			Priority: pulumi.Float64(0),
    			Secret:   pulumi.String("string"),
    			Timeout:  pulumi.Float64(0),
    		},
    	},
    	SuperUserUid: pulumi.String("string"),
    })
    
    resource "checkpoint_gaiaradius" "gaiaRadiusResource" {
      debug          = false
      default_shell  = "string"
      enabled        = false
      gaia_radius_id = "string"
      member_id      = "string"
      nas_ip         = "string"
      servers {
        address  = "string"
        port     = 0
        priority = 0
        secret   = "string"
        timeout  = 0
      }
      super_user_uid = "string"
    }
    
    var gaiaRadiusResource = new GaiaRadius("gaiaRadiusResource", GaiaRadiusArgs.builder()
        .debug(false)
        .defaultShell("string")
        .enabled(false)
        .gaiaRadiusId("string")
        .memberId("string")
        .nasIp("string")
        .servers(GaiaRadiusServerArgs.builder()
            .address("string")
            .port(0.0)
            .priority(0.0)
            .secret("string")
            .timeout(0.0)
            .build())
        .superUserUid("string")
        .build());
    
    gaia_radius_resource = checkpoint.GaiaRadius("gaiaRadiusResource",
        debug=False,
        default_shell="string",
        enabled=False,
        gaia_radius_id="string",
        member_id="string",
        nas_ip="string",
        servers=[{
            "address": "string",
            "port": float(0),
            "priority": float(0),
            "secret": "string",
            "timeout": float(0),
        }],
        super_user_uid="string")
    
    const gaiaRadiusResource = new checkpoint.GaiaRadius("gaiaRadiusResource", {
        debug: false,
        defaultShell: "string",
        enabled: false,
        gaiaRadiusId: "string",
        memberId: "string",
        nasIp: "string",
        servers: [{
            address: "string",
            port: 0,
            priority: 0,
            secret: "string",
            timeout: 0,
        }],
        superUserUid: "string",
    });
    
    type: checkpoint:GaiaRadius
    properties:
        debug: false
        defaultShell: string
        enabled: false
        gaiaRadiusId: string
        memberId: string
        nasIp: string
        servers:
            - address: string
              port: 0
              priority: 0
              secret: string
              timeout: 0
        superUserUid: string
    

    GaiaRadius Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The GaiaRadius resource accepts the following input properties:

    Debug bool
    Enable debug logging for this resource.
    DefaultShell string
    Default shell when login
    Enabled bool
    RADIUS authentication state
    GaiaRadiusId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    NasIp string
    The NAS-IP for the RADIUS client
    Servers List<GaiaRadiusServer>
    RADIUS servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a super user
    Debug bool
    Enable debug logging for this resource.
    DefaultShell string
    Default shell when login
    Enabled bool
    RADIUS authentication state
    GaiaRadiusId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    NasIp string
    The NAS-IP for the RADIUS client
    Servers []GaiaRadiusServerArgs
    RADIUS servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a super user
    debug bool
    Enable debug logging for this resource.
    default_shell string
    Default shell when login
    enabled bool
    RADIUS authentication state
    gaia_radius_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nas_ip string
    The NAS-IP for the RADIUS client
    servers list(object)
    RADIUS servers list servers blocks are documented below.
    super_user_uid string
    The UID that will be given to a super user
    debug Boolean
    Enable debug logging for this resource.
    defaultShell String
    Default shell when login
    enabled Boolean
    RADIUS authentication state
    gaiaRadiusId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nasIp String
    The NAS-IP for the RADIUS client
    servers List<GaiaRadiusServer>
    RADIUS servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a super user
    debug boolean
    Enable debug logging for this resource.
    defaultShell string
    Default shell when login
    enabled boolean
    RADIUS authentication state
    gaiaRadiusId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nasIp string
    The NAS-IP for the RADIUS client
    servers GaiaRadiusServer[]
    RADIUS servers list servers blocks are documented below.
    superUserUid string
    The UID that will be given to a super user
    debug bool
    Enable debug logging for this resource.
    default_shell str
    Default shell when login
    enabled bool
    RADIUS authentication state
    gaia_radius_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nas_ip str
    The NAS-IP for the RADIUS client
    servers Sequence[GaiaRadiusServerArgs]
    RADIUS servers list servers blocks are documented below.
    super_user_uid str
    The UID that will be given to a super user
    debug Boolean
    Enable debug logging for this resource.
    defaultShell String
    Default shell when login
    enabled Boolean
    RADIUS authentication state
    gaiaRadiusId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nasIp String
    The NAS-IP for the RADIUS client
    servers List<Property Map>
    RADIUS servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a super user

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaRadius resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GaiaRadius Resource

    Get an existing GaiaRadius resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: GaiaRadiusState, opts?: CustomResourceOptions): GaiaRadius
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            default_shell: Optional[str] = None,
            enabled: Optional[bool] = None,
            gaia_radius_id: Optional[str] = None,
            member_id: Optional[str] = None,
            nas_ip: Optional[str] = None,
            servers: Optional[Sequence[GaiaRadiusServerArgs]] = None,
            super_user_uid: Optional[str] = None) -> GaiaRadius
    func GetGaiaRadius(ctx *Context, name string, id IDInput, state *GaiaRadiusState, opts ...ResourceOption) (*GaiaRadius, error)
    public static GaiaRadius Get(string name, Input<string> id, GaiaRadiusState? state, CustomResourceOptions? opts = null)
    public static GaiaRadius get(String name, Output<String> id, GaiaRadiusState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaRadius    get:      id: ${id}
    import {
      to = checkpoint_gaiaradius.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Debug bool
    Enable debug logging for this resource.
    DefaultShell string
    Default shell when login
    Enabled bool
    RADIUS authentication state
    GaiaRadiusId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    NasIp string
    The NAS-IP for the RADIUS client
    Servers List<GaiaRadiusServer>
    RADIUS servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a super user
    Debug bool
    Enable debug logging for this resource.
    DefaultShell string
    Default shell when login
    Enabled bool
    RADIUS authentication state
    GaiaRadiusId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    NasIp string
    The NAS-IP for the RADIUS client
    Servers []GaiaRadiusServerArgs
    RADIUS servers list servers blocks are documented below.
    SuperUserUid string
    The UID that will be given to a super user
    debug bool
    Enable debug logging for this resource.
    default_shell string
    Default shell when login
    enabled bool
    RADIUS authentication state
    gaia_radius_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nas_ip string
    The NAS-IP for the RADIUS client
    servers list(object)
    RADIUS servers list servers blocks are documented below.
    super_user_uid string
    The UID that will be given to a super user
    debug Boolean
    Enable debug logging for this resource.
    defaultShell String
    Default shell when login
    enabled Boolean
    RADIUS authentication state
    gaiaRadiusId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nasIp String
    The NAS-IP for the RADIUS client
    servers List<GaiaRadiusServer>
    RADIUS servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a super user
    debug boolean
    Enable debug logging for this resource.
    defaultShell string
    Default shell when login
    enabled boolean
    RADIUS authentication state
    gaiaRadiusId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nasIp string
    The NAS-IP for the RADIUS client
    servers GaiaRadiusServer[]
    RADIUS servers list servers blocks are documented below.
    superUserUid string
    The UID that will be given to a super user
    debug bool
    Enable debug logging for this resource.
    default_shell str
    Default shell when login
    enabled bool
    RADIUS authentication state
    gaia_radius_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nas_ip str
    The NAS-IP for the RADIUS client
    servers Sequence[GaiaRadiusServerArgs]
    RADIUS servers list servers blocks are documented below.
    super_user_uid str
    The UID that will be given to a super user
    debug Boolean
    Enable debug logging for this resource.
    defaultShell String
    Default shell when login
    enabled Boolean
    RADIUS authentication state
    gaiaRadiusId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    nasIp String
    The NAS-IP for the RADIUS client
    servers List<Property Map>
    RADIUS servers list servers blocks are documented below.
    superUserUid String
    The UID that will be given to a super user

    Supporting Types

    GaiaRadiusServer, GaiaRadiusServerArgs

    Address string
    Server address
    Port double
    UDP port to contact on the RADIUS server
    Priority double
    Server priority (lower values comes first)
    Secret string
    N/A
    Timeout double
    N/A
    Address string
    Server address
    Port float64
    UDP port to contact on the RADIUS server
    Priority float64
    Server priority (lower values comes first)
    Secret string
    N/A
    Timeout float64
    N/A
    address string
    Server address
    port number
    UDP port to contact on the RADIUS server
    priority number
    Server priority (lower values comes first)
    secret string
    N/A
    timeout number
    N/A
    address String
    Server address
    port Double
    UDP port to contact on the RADIUS server
    priority Double
    Server priority (lower values comes first)
    secret String
    N/A
    timeout Double
    N/A
    address string
    Server address
    port number
    UDP port to contact on the RADIUS server
    priority number
    Server priority (lower values comes first)
    secret string
    N/A
    timeout number
    N/A
    address str
    Server address
    port float
    UDP port to contact on the RADIUS server
    priority float
    Server priority (lower values comes first)
    secret str
    N/A
    timeout float
    N/A
    address String
    Server address
    port Number
    UDP port to contact on the RADIUS server
    priority Number
    Server priority (lower values comes first)
    secret String
    N/A
    timeout Number
    N/A

    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.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial