published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Allowed Clients.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaAllowedClients("example", {allowedAnyHost: true});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaAllowedClients("example", allowed_any_host=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.NewGaiaAllowedClients(ctx, "example", &checkpoint.GaiaAllowedClientsArgs{
AllowedAnyHost: 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.GaiaAllowedClients("example", new()
{
AllowedAnyHost = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaAllowedClients;
import com.pulumi.checkpoint.GaiaAllowedClientsArgs;
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 GaiaAllowedClients("example", GaiaAllowedClientsArgs.builder()
.allowedAnyHost(true)
.build());
}
}
resources:
example:
type: checkpoint:GaiaAllowedClients
properties:
allowedAnyHost: true
Example coming soon!
Create GaiaAllowedClients Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaAllowedClients(name: string, args?: GaiaAllowedClientsArgs, opts?: CustomResourceOptions);@overload
def GaiaAllowedClients(resource_name: str,
args: Optional[GaiaAllowedClientsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaAllowedClients(resource_name: str,
opts: Optional[ResourceOptions] = None,
allowed_any_host: Optional[bool] = None,
allowed_hosts: Optional[Sequence[str]] = None,
allowed_networks: Optional[Sequence[GaiaAllowedClientsAllowedNetworkArgs]] = None,
debug: Optional[bool] = None,
gaia_allowed_clients_id: Optional[str] = None,
member_id: Optional[str] = None)func NewGaiaAllowedClients(ctx *Context, name string, args *GaiaAllowedClientsArgs, opts ...ResourceOption) (*GaiaAllowedClients, error)public GaiaAllowedClients(string name, GaiaAllowedClientsArgs? args = null, CustomResourceOptions? opts = null)
public GaiaAllowedClients(String name, GaiaAllowedClientsArgs args)
public GaiaAllowedClients(String name, GaiaAllowedClientsArgs args, CustomResourceOptions options)
type: checkpoint:GaiaAllowedClients
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiaallowedclients" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaAllowedClientsArgs
- 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 GaiaAllowedClientsArgs
- 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 GaiaAllowedClientsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaAllowedClientsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaAllowedClientsArgs
- 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 gaiaAllowedClientsResource = new Checkpoint.GaiaAllowedClients("gaiaAllowedClientsResource", new()
{
AllowedAnyHost = false,
AllowedHosts = new[]
{
"string",
},
AllowedNetworks = new[]
{
new Checkpoint.Inputs.GaiaAllowedClientsAllowedNetworkArgs
{
MaskLength = 0,
Subnet = "string",
},
},
Debug = false,
GaiaAllowedClientsId = "string",
MemberId = "string",
});
example, err := checkpoint.NewGaiaAllowedClients(ctx, "gaiaAllowedClientsResource", &checkpoint.GaiaAllowedClientsArgs{
AllowedAnyHost: pulumi.Bool(false),
AllowedHosts: pulumi.StringArray{
pulumi.String("string"),
},
AllowedNetworks: checkpoint.GaiaAllowedClientsAllowedNetworkArray{
&checkpoint.GaiaAllowedClientsAllowedNetworkArgs{
MaskLength: pulumi.Float64(0),
Subnet: pulumi.String("string"),
},
},
Debug: pulumi.Bool(false),
GaiaAllowedClientsId: pulumi.String("string"),
MemberId: pulumi.String("string"),
})
resource "checkpoint_gaiaallowedclients" "gaiaAllowedClientsResource" {
allowed_any_host = false
allowed_hosts = ["string"]
allowed_networks {
mask_length = 0
subnet = "string"
}
debug = false
gaia_allowed_clients_id = "string"
member_id = "string"
}
var gaiaAllowedClientsResource = new GaiaAllowedClients("gaiaAllowedClientsResource", GaiaAllowedClientsArgs.builder()
.allowedAnyHost(false)
.allowedHosts("string")
.allowedNetworks(GaiaAllowedClientsAllowedNetworkArgs.builder()
.maskLength(0.0)
.subnet("string")
.build())
.debug(false)
.gaiaAllowedClientsId("string")
.memberId("string")
.build());
gaia_allowed_clients_resource = checkpoint.GaiaAllowedClients("gaiaAllowedClientsResource",
allowed_any_host=False,
allowed_hosts=["string"],
allowed_networks=[{
"mask_length": float(0),
"subnet": "string",
}],
debug=False,
gaia_allowed_clients_id="string",
member_id="string")
const gaiaAllowedClientsResource = new checkpoint.GaiaAllowedClients("gaiaAllowedClientsResource", {
allowedAnyHost: false,
allowedHosts: ["string"],
allowedNetworks: [{
maskLength: 0,
subnet: "string",
}],
debug: false,
gaiaAllowedClientsId: "string",
memberId: "string",
});
type: checkpoint:GaiaAllowedClients
properties:
allowedAnyHost: false
allowedHosts:
- string
allowedNetworks:
- maskLength: 0
subnet: string
debug: false
gaiaAllowedClientsId: string
memberId: string
GaiaAllowedClients 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 GaiaAllowedClients resource accepts the following input properties:
- Allowed
Any boolHost - N/A
- Allowed
Hosts List<string> - allowed_hosts blocks are documented below.
- Allowed
Networks List<GaiaAllowed Clients Allowed Network> - allowed_networks blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Allowed stringClients Id - 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
- Allowed
Any boolHost - N/A
- Allowed
Hosts []string - allowed_hosts blocks are documented below.
- Allowed
Networks []GaiaAllowed Clients Allowed Network Args - allowed_networks blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Allowed stringClients Id - 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
- allowed_
any_ boolhost - N/A
- allowed_
hosts list(string) - allowed_hosts blocks are documented below.
- allowed_
networks list(object) - allowed_networks blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
allowed_ stringclients_ id - 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
- allowed
Any BooleanHost - N/A
- allowed
Hosts List<String> - allowed_hosts blocks are documented below.
- allowed
Networks List<GaiaAllowed Clients Allowed Network> - allowed_networks blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Allowed StringClients Id - 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
- allowed
Any booleanHost - N/A
- allowed
Hosts string[] - allowed_hosts blocks are documented below.
- allowed
Networks GaiaAllowed Clients Allowed Network[] - allowed_networks blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Allowed stringClients Id - 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
- allowed_
any_ boolhost - N/A
- allowed_
hosts Sequence[str] - allowed_hosts blocks are documented below.
- allowed_
networks Sequence[GaiaAllowed Clients Allowed Network Args] - allowed_networks blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
allowed_ strclients_ id - 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
- allowed
Any BooleanHost - N/A
- allowed
Hosts List<String> - allowed_hosts blocks are documented below.
- allowed
Networks List<Property Map> - allowed_networks blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Allowed StringClients Id - 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
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaAllowedClients 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 GaiaAllowedClients Resource
Get an existing GaiaAllowedClients 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?: GaiaAllowedClientsState, opts?: CustomResourceOptions): GaiaAllowedClients@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allowed_any_host: Optional[bool] = None,
allowed_hosts: Optional[Sequence[str]] = None,
allowed_networks: Optional[Sequence[GaiaAllowedClientsAllowedNetworkArgs]] = None,
debug: Optional[bool] = None,
gaia_allowed_clients_id: Optional[str] = None,
member_id: Optional[str] = None) -> GaiaAllowedClientsfunc GetGaiaAllowedClients(ctx *Context, name string, id IDInput, state *GaiaAllowedClientsState, opts ...ResourceOption) (*GaiaAllowedClients, error)public static GaiaAllowedClients Get(string name, Input<string> id, GaiaAllowedClientsState? state, CustomResourceOptions? opts = null)public static GaiaAllowedClients get(String name, Output<String> id, GaiaAllowedClientsState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaAllowedClients get: id: ${id}import {
to = checkpoint_gaiaallowedclients.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.
- Allowed
Any boolHost - N/A
- Allowed
Hosts List<string> - allowed_hosts blocks are documented below.
- Allowed
Networks List<GaiaAllowed Clients Allowed Network> - allowed_networks blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Allowed stringClients Id - 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
- Allowed
Any boolHost - N/A
- Allowed
Hosts []string - allowed_hosts blocks are documented below.
- Allowed
Networks []GaiaAllowed Clients Allowed Network Args - allowed_networks blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Allowed stringClients Id - 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
- allowed_
any_ boolhost - N/A
- allowed_
hosts list(string) - allowed_hosts blocks are documented below.
- allowed_
networks list(object) - allowed_networks blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
allowed_ stringclients_ id - 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
- allowed
Any BooleanHost - N/A
- allowed
Hosts List<String> - allowed_hosts blocks are documented below.
- allowed
Networks List<GaiaAllowed Clients Allowed Network> - allowed_networks blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Allowed StringClients Id - 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
- allowed
Any booleanHost - N/A
- allowed
Hosts string[] - allowed_hosts blocks are documented below.
- allowed
Networks GaiaAllowed Clients Allowed Network[] - allowed_networks blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Allowed stringClients Id - 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
- allowed_
any_ boolhost - N/A
- allowed_
hosts Sequence[str] - allowed_hosts blocks are documented below.
- allowed_
networks Sequence[GaiaAllowed Clients Allowed Network Args] - allowed_networks blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- gaia_
allowed_ strclients_ id - 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
- allowed
Any BooleanHost - N/A
- allowed
Hosts List<String> - allowed_hosts blocks are documented below.
- allowed
Networks List<Property Map> - allowed_networks blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Allowed StringClients Id - 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
Supporting Types
GaiaAllowedClientsAllowedNetwork, GaiaAllowedClientsAllowedNetworkArgs
- Mask
Length double - The network mask length
- Subnet string
- The network subnet
- Mask
Length float64 - The network mask length
- Subnet string
- The network subnet
- mask_
length number - The network mask length
- subnet string
- The network subnet
- mask
Length Double - The network mask length
- subnet String
- The network subnet
- mask
Length number - The network mask length
- subnet string
- The network subnet
- mask_
length float - The network mask length
- subnet str
- The network subnet
- mask
Length Number - The network mask length
- subnet String
- The network subnet
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