published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Ntp.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaNtp("example", {
enabled: true,
preferred: "2.2.2.2",
servers: [
{
address: "4.4.4.4",
type: "pool",
version: 4,
},
{
address: "2.2.2.2",
type: "server",
version: 4,
},
],
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaNtp("example",
enabled=True,
preferred="2.2.2.2",
servers=[
{
"address": "4.4.4.4",
"type": "pool",
"version": 4,
},
{
"address": "2.2.2.2",
"type": "server",
"version": 4,
},
])
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.NewGaiaNtp(ctx, "example", &checkpoint.GaiaNtpArgs{
Enabled: pulumi.Bool(true),
Preferred: pulumi.String("2.2.2.2"),
Servers: checkpoint.GaiaNtpServerArray{
&checkpoint.GaiaNtpServerArgs{
Address: pulumi.String("4.4.4.4"),
Type: pulumi.String("pool"),
Version: pulumi.Float64(4),
},
&checkpoint.GaiaNtpServerArgs{
Address: pulumi.String("2.2.2.2"),
Type: pulumi.String("server"),
Version: pulumi.Float64(4),
},
},
})
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.GaiaNtp("example", new()
{
Enabled = true,
Preferred = "2.2.2.2",
Servers = new[]
{
new Checkpoint.Inputs.GaiaNtpServerArgs
{
Address = "4.4.4.4",
Type = "pool",
Version = 4,
},
new Checkpoint.Inputs.GaiaNtpServerArgs
{
Address = "2.2.2.2",
Type = "server",
Version = 4,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaNtp;
import com.pulumi.checkpoint.GaiaNtpArgs;
import com.pulumi.checkpoint.inputs.GaiaNtpServerArgs;
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 GaiaNtp("example", GaiaNtpArgs.builder()
.enabled(true)
.preferred("2.2.2.2")
.servers(
GaiaNtpServerArgs.builder()
.address("4.4.4.4")
.type("pool")
.version(4.0)
.build(),
GaiaNtpServerArgs.builder()
.address("2.2.2.2")
.type("server")
.version(4.0)
.build())
.build());
}
}
resources:
example:
type: checkpoint:GaiaNtp
properties:
enabled: true
preferred: 2.2.2.2
servers:
- address: 4.4.4.4
type: pool
version: 4
- address: 2.2.2.2
type: server
version: 4
Example coming soon!
Create GaiaNtp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaNtp(name: string, args?: GaiaNtpArgs, opts?: CustomResourceOptions);@overload
def GaiaNtp(resource_name: str,
args: Optional[GaiaNtpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaNtp(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
enabled: Optional[bool] = None,
gaia_ntp_id: Optional[str] = None,
member_id: Optional[str] = None,
preferred: Optional[str] = None,
servers: Optional[Sequence[GaiaNtpServerArgs]] = None)func NewGaiaNtp(ctx *Context, name string, args *GaiaNtpArgs, opts ...ResourceOption) (*GaiaNtp, error)public GaiaNtp(string name, GaiaNtpArgs? args = null, CustomResourceOptions? opts = null)
public GaiaNtp(String name, GaiaNtpArgs args)
public GaiaNtp(String name, GaiaNtpArgs args, CustomResourceOptions options)
type: checkpoint:GaiaNtp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiantp" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaNtpArgs
- 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 GaiaNtpArgs
- 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 GaiaNtpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaNtpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaNtpArgs
- 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 gaiaNtpResource = new Checkpoint.GaiaNtp("gaiaNtpResource", new()
{
Debug = false,
Enabled = false,
GaiaNtpId = "string",
MemberId = "string",
Preferred = "string",
Servers = new[]
{
new Checkpoint.Inputs.GaiaNtpServerArgs
{
Address = "string",
Type = "string",
Version = 0,
},
},
});
example, err := checkpoint.NewGaiaNtp(ctx, "gaiaNtpResource", &checkpoint.GaiaNtpArgs{
Debug: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
GaiaNtpId: pulumi.String("string"),
MemberId: pulumi.String("string"),
Preferred: pulumi.String("string"),
Servers: checkpoint.GaiaNtpServerArray{
&checkpoint.GaiaNtpServerArgs{
Address: pulumi.String("string"),
Type: pulumi.String("string"),
Version: pulumi.Float64(0),
},
},
})
resource "checkpoint_gaiantp" "gaiaNtpResource" {
debug = false
enabled = false
gaia_ntp_id = "string"
member_id = "string"
preferred = "string"
servers {
address = "string"
type = "string"
version = 0
}
}
var gaiaNtpResource = new GaiaNtp("gaiaNtpResource", GaiaNtpArgs.builder()
.debug(false)
.enabled(false)
.gaiaNtpId("string")
.memberId("string")
.preferred("string")
.servers(GaiaNtpServerArgs.builder()
.address("string")
.type("string")
.version(0.0)
.build())
.build());
gaia_ntp_resource = checkpoint.GaiaNtp("gaiaNtpResource",
debug=False,
enabled=False,
gaia_ntp_id="string",
member_id="string",
preferred="string",
servers=[{
"address": "string",
"type": "string",
"version": float(0),
}])
const gaiaNtpResource = new checkpoint.GaiaNtp("gaiaNtpResource", {
debug: false,
enabled: false,
gaiaNtpId: "string",
memberId: "string",
preferred: "string",
servers: [{
address: "string",
type: "string",
version: 0,
}],
});
type: checkpoint:GaiaNtp
properties:
debug: false
enabled: false
gaiaNtpId: string
memberId: string
preferred: string
servers:
- address: string
type: string
version: 0
GaiaNtp 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 GaiaNtp resource accepts the following input properties:
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- NTP status
- Gaia
Ntp 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
- Preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- Servers
List<Gaia
Ntp Server> - Add, set or remove NTP server/pool servers blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- NTP status
- Gaia
Ntp 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
- Preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- Servers
[]Gaia
Ntp Server Args - Add, set or remove NTP server/pool servers blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- enabled bool
- NTP status
- gaia_
ntp_ 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
- preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers list(object)
- Add, set or remove NTP server/pool servers blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- NTP status
- gaia
Ntp 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
- preferred String
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers
List<Gaia
Ntp Server> - Add, set or remove NTP server/pool servers blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- NTP status
- gaia
Ntp 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
- preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers
Gaia
Ntp Server[] - Add, set or remove NTP server/pool servers blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- enabled bool
- NTP status
- gaia_
ntp_ 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
- preferred str
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers
Sequence[Gaia
Ntp Server Args] - Add, set or remove NTP server/pool servers blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- NTP status
- gaia
Ntp 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
- preferred String
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers List<Property Map>
- Add, set or remove NTP server/pool servers blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaNtp 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 GaiaNtp Resource
Get an existing GaiaNtp 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?: GaiaNtpState, opts?: CustomResourceOptions): GaiaNtp@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug: Optional[bool] = None,
enabled: Optional[bool] = None,
gaia_ntp_id: Optional[str] = None,
member_id: Optional[str] = None,
preferred: Optional[str] = None,
servers: Optional[Sequence[GaiaNtpServerArgs]] = None) -> GaiaNtpfunc GetGaiaNtp(ctx *Context, name string, id IDInput, state *GaiaNtpState, opts ...ResourceOption) (*GaiaNtp, error)public static GaiaNtp Get(string name, Input<string> id, GaiaNtpState? state, CustomResourceOptions? opts = null)public static GaiaNtp get(String name, Output<String> id, GaiaNtpState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaNtp get: id: ${id}import {
to = checkpoint_gaiantp.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.
- Enabled bool
- NTP status
- Gaia
Ntp 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
- Preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- Servers
List<Gaia
Ntp Server> - Add, set or remove NTP server/pool servers blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- NTP status
- Gaia
Ntp 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
- Preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- Servers
[]Gaia
Ntp Server Args - Add, set or remove NTP server/pool servers blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- enabled bool
- NTP status
- gaia_
ntp_ 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
- preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers list(object)
- Add, set or remove NTP server/pool servers blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- NTP status
- gaia
Ntp 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
- preferred String
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers
List<Gaia
Ntp Server> - Add, set or remove NTP server/pool servers blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- NTP status
- gaia
Ntp 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
- preferred string
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers
Gaia
Ntp Server[] - Add, set or remove NTP server/pool servers blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- enabled bool
- NTP status
- gaia_
ntp_ 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
- preferred str
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers
Sequence[Gaia
Ntp Server Args] - Add, set or remove NTP server/pool servers blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- NTP status
- gaia
Ntp 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
- preferred String
- Preferred address. Specify a particular server as preferred above others of similar statistical quality
- servers List<Property Map>
- Add, set or remove NTP server/pool servers blocks are documented below.
Supporting Types
GaiaNtpServer, GaiaNtpServerArgs
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