published on Monday, Jun 15, 2026 by checkpointsw
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.
- Default
Shell string - Default shell when login
- Enabled bool
- RADIUS authentication state
- Gaia
Radius stringId - 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<Gaia
Radius Server> - RADIUS servers list servers blocks are documented below.
- Super
User stringUid - 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 stringId - 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
[]Gaia
Radius Server Args - RADIUS servers list servers blocks are documented below.
- Super
User stringUid - 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_ stringid - 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_ stringuid - The UID that will be given to a super user
- debug Boolean
- Enable debug logging for this resource.
- default
Shell String - Default shell when login
- enabled Boolean
- RADIUS authentication state
- gaia
Radius StringId - 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<Gaia
Radius Server> - RADIUS servers list servers blocks are documented below.
- super
User StringUid - The UID that will be given to a super user
- debug boolean
- Enable debug logging for this resource.
- default
Shell string - Default shell when login
- enabled boolean
- RADIUS authentication state
- gaia
Radius stringId - 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
Gaia
Radius Server[] - RADIUS servers list servers blocks are documented below.
- super
User stringUid - 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_ strid - 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[Gaia
Radius Server Args] - RADIUS servers list servers blocks are documented below.
- super_
user_ struid - The UID that will be given to a super user
- debug Boolean
- Enable debug logging for this resource.
- default
Shell String - Default shell when login
- enabled Boolean
- RADIUS authentication state
- gaia
Radius StringId - 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<Property Map>
- RADIUS servers list servers blocks are documented below.
- super
User StringUid - 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) -> GaiaRadiusfunc 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.
- Debug bool
- Enable debug logging for this resource.
- Default
Shell string - Default shell when login
- Enabled bool
- RADIUS authentication state
- Gaia
Radius stringId - 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<Gaia
Radius Server> - RADIUS servers list servers blocks are documented below.
- Super
User stringUid - 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 stringId - 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
[]Gaia
Radius Server Args - RADIUS servers list servers blocks are documented below.
- Super
User stringUid - 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_ stringid - 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_ stringuid - The UID that will be given to a super user
- debug Boolean
- Enable debug logging for this resource.
- default
Shell String - Default shell when login
- enabled Boolean
- RADIUS authentication state
- gaia
Radius StringId - 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<Gaia
Radius Server> - RADIUS servers list servers blocks are documented below.
- super
User StringUid - The UID that will be given to a super user
- debug boolean
- Enable debug logging for this resource.
- default
Shell string - Default shell when login
- enabled boolean
- RADIUS authentication state
- gaia
Radius stringId - 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
Gaia
Radius Server[] - RADIUS servers list servers blocks are documented below.
- super
User stringUid - 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_ strid - 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[Gaia
Radius Server Args] - RADIUS servers list servers blocks are documented below.
- super_
user_ struid - The UID that will be given to a super user
- debug Boolean
- Enable debug logging for this resource.
- default
Shell String - Default shell when login
- enabled Boolean
- RADIUS authentication state
- gaia
Radius StringId - 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<Property Map>
- RADIUS servers list servers blocks are documented below.
- super
User StringUid - The UID that will be given to a super user
Supporting Types
GaiaRadiusServer, GaiaRadiusServerArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw