published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Authentication Order.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaAuthenticationOrder("example", {
local: {
priority: 1,
},
radius: {
priority: 2,
enabled: true,
},
tacacs: {
priority: 3,
enabled: true,
},
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaAuthenticationOrder("example",
local={
"priority": 1,
},
radius={
"priority": 2,
"enabled": True,
},
tacacs={
"priority": 3,
"enabled": True,
})
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.NewGaiaAuthenticationOrder(ctx, "example", &checkpoint.GaiaAuthenticationOrderArgs{
Local: &checkpoint.GaiaAuthenticationOrderLocalArgs{
Priority: pulumi.Float64(1),
},
Radius: &checkpoint.GaiaAuthenticationOrderRadiusArgs{
Priority: pulumi.Float64(2),
Enabled: pulumi.Bool(true),
},
Tacacs: &checkpoint.GaiaAuthenticationOrderTacacsArgs{
Priority: pulumi.Float64(3),
Enabled: pulumi.Bool(true),
},
})
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.GaiaAuthenticationOrder("example", new()
{
Local = new Checkpoint.Inputs.GaiaAuthenticationOrderLocalArgs
{
Priority = 1,
},
Radius = new Checkpoint.Inputs.GaiaAuthenticationOrderRadiusArgs
{
Priority = 2,
Enabled = true,
},
Tacacs = new Checkpoint.Inputs.GaiaAuthenticationOrderTacacsArgs
{
Priority = 3,
Enabled = true,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaAuthenticationOrder;
import com.pulumi.checkpoint.GaiaAuthenticationOrderArgs;
import com.pulumi.checkpoint.inputs.GaiaAuthenticationOrderLocalArgs;
import com.pulumi.checkpoint.inputs.GaiaAuthenticationOrderRadiusArgs;
import com.pulumi.checkpoint.inputs.GaiaAuthenticationOrderTacacsArgs;
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 GaiaAuthenticationOrder("example", GaiaAuthenticationOrderArgs.builder()
.local(GaiaAuthenticationOrderLocalArgs.builder()
.priority(1.0)
.build())
.radius(GaiaAuthenticationOrderRadiusArgs.builder()
.priority(2.0)
.enabled(true)
.build())
.tacacs(GaiaAuthenticationOrderTacacsArgs.builder()
.priority(3.0)
.enabled(true)
.build())
.build());
}
}
resources:
example:
type: checkpoint:GaiaAuthenticationOrder
properties:
local:
priority: 1
radius:
priority: 2
enabled: true
tacacs:
priority: 3
enabled: true
Example coming soon!
Create GaiaAuthenticationOrder Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaAuthenticationOrder(name: string, args?: GaiaAuthenticationOrderArgs, opts?: CustomResourceOptions);@overload
def GaiaAuthenticationOrder(resource_name: str,
args: Optional[GaiaAuthenticationOrderArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaAuthenticationOrder(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_authentication_order_id: Optional[str] = None,
local: Optional[GaiaAuthenticationOrderLocalArgs] = None,
member_id: Optional[str] = None,
radius: Optional[GaiaAuthenticationOrderRadiusArgs] = None,
tacacs: Optional[GaiaAuthenticationOrderTacacsArgs] = None)func NewGaiaAuthenticationOrder(ctx *Context, name string, args *GaiaAuthenticationOrderArgs, opts ...ResourceOption) (*GaiaAuthenticationOrder, error)public GaiaAuthenticationOrder(string name, GaiaAuthenticationOrderArgs? args = null, CustomResourceOptions? opts = null)
public GaiaAuthenticationOrder(String name, GaiaAuthenticationOrderArgs args)
public GaiaAuthenticationOrder(String name, GaiaAuthenticationOrderArgs args, CustomResourceOptions options)
type: checkpoint:GaiaAuthenticationOrder
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiaauthenticationorder" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaAuthenticationOrderArgs
- 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 GaiaAuthenticationOrderArgs
- 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 GaiaAuthenticationOrderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaAuthenticationOrderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaAuthenticationOrderArgs
- 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 gaiaAuthenticationOrderResource = new Checkpoint.GaiaAuthenticationOrder("gaiaAuthenticationOrderResource", new()
{
Debug = false,
GaiaAuthenticationOrderId = "string",
Local = new Checkpoint.Inputs.GaiaAuthenticationOrderLocalArgs
{
Priority = 0,
},
MemberId = "string",
Radius = new Checkpoint.Inputs.GaiaAuthenticationOrderRadiusArgs
{
Enabled = false,
Priority = 0,
},
Tacacs = new Checkpoint.Inputs.GaiaAuthenticationOrderTacacsArgs
{
Enabled = false,
Priority = 0,
},
});
example, err := checkpoint.NewGaiaAuthenticationOrder(ctx, "gaiaAuthenticationOrderResource", &checkpoint.GaiaAuthenticationOrderArgs{
Debug: pulumi.Bool(false),
GaiaAuthenticationOrderId: pulumi.String("string"),
Local: &checkpoint.GaiaAuthenticationOrderLocalArgs{
Priority: pulumi.Float64(0),
},
MemberId: pulumi.String("string"),
Radius: &checkpoint.GaiaAuthenticationOrderRadiusArgs{
Enabled: pulumi.Bool(false),
Priority: pulumi.Float64(0),
},
Tacacs: &checkpoint.GaiaAuthenticationOrderTacacsArgs{
Enabled: pulumi.Bool(false),
Priority: pulumi.Float64(0),
},
})
resource "checkpoint_gaiaauthenticationorder" "gaiaAuthenticationOrderResource" {
debug = false
gaia_authentication_order_id = "string"
local = {
priority = 0
}
member_id = "string"
radius = {
enabled = false
priority = 0
}
tacacs = {
enabled = false
priority = 0
}
}
var gaiaAuthenticationOrderResource = new GaiaAuthenticationOrder("gaiaAuthenticationOrderResource", GaiaAuthenticationOrderArgs.builder()
.debug(false)
.gaiaAuthenticationOrderId("string")
.local(GaiaAuthenticationOrderLocalArgs.builder()
.priority(0.0)
.build())
.memberId("string")
.radius(GaiaAuthenticationOrderRadiusArgs.builder()
.enabled(false)
.priority(0.0)
.build())
.tacacs(GaiaAuthenticationOrderTacacsArgs.builder()
.enabled(false)
.priority(0.0)
.build())
.build());
gaia_authentication_order_resource = checkpoint.GaiaAuthenticationOrder("gaiaAuthenticationOrderResource",
debug=False,
gaia_authentication_order_id="string",
local={
"priority": float(0),
},
member_id="string",
radius={
"enabled": False,
"priority": float(0),
},
tacacs={
"enabled": False,
"priority": float(0),
})
const gaiaAuthenticationOrderResource = new checkpoint.GaiaAuthenticationOrder("gaiaAuthenticationOrderResource", {
debug: false,
gaiaAuthenticationOrderId: "string",
local: {
priority: 0,
},
memberId: "string",
radius: {
enabled: false,
priority: 0,
},
tacacs: {
enabled: false,
priority: 0,
},
});
type: checkpoint:GaiaAuthenticationOrder
properties:
debug: false
gaiaAuthenticationOrderId: string
local:
priority: 0
memberId: string
radius:
enabled: false
priority: 0
tacacs:
enabled: false
priority: 0
GaiaAuthenticationOrder 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 GaiaAuthenticationOrder resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Gaia
Authentication stringOrder Id - Local
Gaia
Authentication Order Local - Server type local blocks are documented below.
- 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
- Radius
Gaia
Authentication Order Radius - Server type radius blocks are documented below.
- Tacacs
Gaia
Authentication Order Tacacs - Server type tacacs blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Authentication stringOrder Id - Local
Gaia
Authentication Order Local Args - Server type local blocks are documented below.
- 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
- Radius
Gaia
Authentication Order Radius Args - Server type radius blocks are documented below.
- Tacacs
Gaia
Authentication Order Tacacs Args - Server type tacacs blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
authentication_ stringorder_ id - local object
- Server type local blocks are documented below.
- 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
- radius object
- Server type radius blocks are documented below.
- tacacs object
- Server type tacacs blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Authentication StringOrder Id - local
Gaia
Authentication Order Local - Server type local blocks are documented below.
- 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
- radius
Gaia
Authentication Order Radius - Server type radius blocks are documented below.
- tacacs
Gaia
Authentication Order Tacacs - Server type tacacs blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Authentication stringOrder Id - local
Gaia
Authentication Order Local - Server type local blocks are documented below.
- 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
- radius
Gaia
Authentication Order Radius - Server type radius blocks are documented below.
- tacacs
Gaia
Authentication Order Tacacs - Server type tacacs blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
authentication_ strorder_ id - local
Gaia
Authentication Order Local Args - Server type local blocks are documented below.
- 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
- radius
Gaia
Authentication Order Radius Args - Server type radius blocks are documented below.
- tacacs
Gaia
Authentication Order Tacacs Args - Server type tacacs blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Authentication StringOrder Id - local Property Map
- Server type local blocks are documented below.
- 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
- radius Property Map
- Server type radius blocks are documented below.
- tacacs Property Map
- Server type tacacs blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaAuthenticationOrder 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 GaiaAuthenticationOrder Resource
Get an existing GaiaAuthenticationOrder 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?: GaiaAuthenticationOrderState, opts?: CustomResourceOptions): GaiaAuthenticationOrder@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
gaia_authentication_order_id: Optional[str] = None,
local: Optional[GaiaAuthenticationOrderLocalArgs] = None,
member_id: Optional[str] = None,
radius: Optional[GaiaAuthenticationOrderRadiusArgs] = None,
tacacs: Optional[GaiaAuthenticationOrderTacacsArgs] = None) -> GaiaAuthenticationOrderfunc GetGaiaAuthenticationOrder(ctx *Context, name string, id IDInput, state *GaiaAuthenticationOrderState, opts ...ResourceOption) (*GaiaAuthenticationOrder, error)public static GaiaAuthenticationOrder Get(string name, Input<string> id, GaiaAuthenticationOrderState? state, CustomResourceOptions? opts = null)public static GaiaAuthenticationOrder get(String name, Output<String> id, GaiaAuthenticationOrderState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaAuthenticationOrder get: id: ${id}import {
to = checkpoint_gaiaauthenticationorder.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.
- Gaia
Authentication stringOrder Id - Local
Gaia
Authentication Order Local - Server type local blocks are documented below.
- 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
- Radius
Gaia
Authentication Order Radius - Server type radius blocks are documented below.
- Tacacs
Gaia
Authentication Order Tacacs - Server type tacacs blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Authentication stringOrder Id - Local
Gaia
Authentication Order Local Args - Server type local blocks are documented below.
- 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
- Radius
Gaia
Authentication Order Radius Args - Server type radius blocks are documented below.
- Tacacs
Gaia
Authentication Order Tacacs Args - Server type tacacs blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
authentication_ stringorder_ id - local object
- Server type local blocks are documented below.
- 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
- radius object
- Server type radius blocks are documented below.
- tacacs object
- Server type tacacs blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Authentication StringOrder Id - local
Gaia
Authentication Order Local - Server type local blocks are documented below.
- 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
- radius
Gaia
Authentication Order Radius - Server type radius blocks are documented below.
- tacacs
Gaia
Authentication Order Tacacs - Server type tacacs blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Authentication stringOrder Id - local
Gaia
Authentication Order Local - Server type local blocks are documented below.
- 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
- radius
Gaia
Authentication Order Radius - Server type radius blocks are documented below.
- tacacs
Gaia
Authentication Order Tacacs - Server type tacacs blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
authentication_ strorder_ id - local
Gaia
Authentication Order Local Args - Server type local blocks are documented below.
- 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
- radius
Gaia
Authentication Order Radius Args - Server type radius blocks are documented below.
- tacacs
Gaia
Authentication Order Tacacs Args - Server type tacacs blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Authentication StringOrder Id - local Property Map
- Server type local blocks are documented below.
- 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
- radius Property Map
- Server type radius blocks are documented below.
- tacacs Property Map
- Server type tacacs blocks are documented below.
Supporting Types
GaiaAuthenticationOrderLocal, GaiaAuthenticationOrderLocalArgs
- Priority double
- Authentication priority
- Priority float64
- Authentication priority
- priority number
- Authentication priority
- priority Double
- Authentication priority
- priority number
- Authentication priority
- priority float
- Authentication priority
- priority Number
- Authentication priority
GaiaAuthenticationOrderRadius, GaiaAuthenticationOrderRadiusArgs
GaiaAuthenticationOrderTacacs, GaiaAuthenticationOrderTacacsArgs
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