1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaTimeAndDate
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 Time And Date.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaTimeAndDate("example", {timezone: "Asia / Jerusalem"});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaTimeAndDate("example", timezone="Asia / Jerusalem")
    
    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.NewGaiaTimeAndDate(ctx, "example", &checkpoint.GaiaTimeAndDateArgs{
    			Timezone: pulumi.String("Asia / Jerusalem"),
    		})
    		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.GaiaTimeAndDate("example", new()
        {
            Timezone = "Asia / Jerusalem",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaTimeAndDate;
    import com.pulumi.checkpoint.GaiaTimeAndDateArgs;
    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 GaiaTimeAndDate("example", GaiaTimeAndDateArgs.builder()
                .timezone("Asia / Jerusalem")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaTimeAndDate
        properties:
          timezone: Asia / Jerusalem
    
    Example coming soon!
    

    Create GaiaTimeAndDate Resource

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

    Constructor syntax

    new GaiaTimeAndDate(name: string, args?: GaiaTimeAndDateArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaTimeAndDate(resource_name: str,
                        args: Optional[GaiaTimeAndDateArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaTimeAndDate(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        date: Optional[str] = None,
                        debug: Optional[bool] = None,
                        gaia_time_and_date_id: Optional[str] = None,
                        member_id: Optional[str] = None,
                        time: Optional[str] = None,
                        timezone: Optional[str] = None)
    func NewGaiaTimeAndDate(ctx *Context, name string, args *GaiaTimeAndDateArgs, opts ...ResourceOption) (*GaiaTimeAndDate, error)
    public GaiaTimeAndDate(string name, GaiaTimeAndDateArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaTimeAndDate(String name, GaiaTimeAndDateArgs args)
    public GaiaTimeAndDate(String name, GaiaTimeAndDateArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaTimeAndDate
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiatimeanddate" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaTimeAndDateArgs
    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 GaiaTimeAndDateArgs
    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 GaiaTimeAndDateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaTimeAndDateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaTimeAndDateArgs
    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 gaiaTimeAndDateResource = new Checkpoint.GaiaTimeAndDate("gaiaTimeAndDateResource", new()
    {
        Date = "string",
        Debug = false,
        GaiaTimeAndDateId = "string",
        MemberId = "string",
        Time = "string",
        Timezone = "string",
    });
    
    example, err := checkpoint.NewGaiaTimeAndDate(ctx, "gaiaTimeAndDateResource", &checkpoint.GaiaTimeAndDateArgs{
    	Date:              pulumi.String("string"),
    	Debug:             pulumi.Bool(false),
    	GaiaTimeAndDateId: pulumi.String("string"),
    	MemberId:          pulumi.String("string"),
    	Time:              pulumi.String("string"),
    	Timezone:          pulumi.String("string"),
    })
    
    resource "checkpoint_gaiatimeanddate" "gaiaTimeAndDateResource" {
      date                  = "string"
      debug                 = false
      gaia_time_and_date_id = "string"
      member_id             = "string"
      time                  = "string"
      timezone              = "string"
    }
    
    var gaiaTimeAndDateResource = new GaiaTimeAndDate("gaiaTimeAndDateResource", GaiaTimeAndDateArgs.builder()
        .date("string")
        .debug(false)
        .gaiaTimeAndDateId("string")
        .memberId("string")
        .time("string")
        .timezone("string")
        .build());
    
    gaia_time_and_date_resource = checkpoint.GaiaTimeAndDate("gaiaTimeAndDateResource",
        date="string",
        debug=False,
        gaia_time_and_date_id="string",
        member_id="string",
        time="string",
        timezone="string")
    
    const gaiaTimeAndDateResource = new checkpoint.GaiaTimeAndDate("gaiaTimeAndDateResource", {
        date: "string",
        debug: false,
        gaiaTimeAndDateId: "string",
        memberId: "string",
        time: "string",
        timezone: "string",
    });
    
    type: checkpoint:GaiaTimeAndDate
    properties:
        date: string
        debug: false
        gaiaTimeAndDateId: string
        memberId: string
        time: string
        timezone: string
    

    GaiaTimeAndDate 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 GaiaTimeAndDate resource accepts the following input properties:

    Date string
    Date to set, in YYYY-MM-DD format
    Debug bool
    Enable debug logging for this resource.
    GaiaTimeAndDateId 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
    Time string
    Time to set, in HH:MM[:SS] format
    Timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    Date string
    Date to set, in YYYY-MM-DD format
    Debug bool
    Enable debug logging for this resource.
    GaiaTimeAndDateId 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
    Time string
    Time to set, in HH:MM[:SS] format
    Timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date string
    Date to set, in YYYY-MM-DD format
    debug bool
    Enable debug logging for this resource.
    gaia_time_and_date_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
    time string
    Time to set, in HH:MM[:SS] format
    timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date String
    Date to set, in YYYY-MM-DD format
    debug Boolean
    Enable debug logging for this resource.
    gaiaTimeAndDateId 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
    time String
    Time to set, in HH:MM[:SS] format
    timezone String
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date string
    Date to set, in YYYY-MM-DD format
    debug boolean
    Enable debug logging for this resource.
    gaiaTimeAndDateId 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
    time string
    Time to set, in HH:MM[:SS] format
    timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date str
    Date to set, in YYYY-MM-DD format
    debug bool
    Enable debug logging for this resource.
    gaia_time_and_date_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
    time str
    Time to set, in HH:MM[:SS] format
    timezone str
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date String
    Date to set, in YYYY-MM-DD format
    debug Boolean
    Enable debug logging for this resource.
    gaiaTimeAndDateId 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
    time String
    Time to set, in HH:MM[:SS] format
    timezone String
    Timezone in Area / Region format. See timezones list via 'show-timezones'

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaTimeAndDate 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 GaiaTimeAndDate Resource

    Get an existing GaiaTimeAndDate 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?: GaiaTimeAndDateState, opts?: CustomResourceOptions): GaiaTimeAndDate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            date: Optional[str] = None,
            debug: Optional[bool] = None,
            gaia_time_and_date_id: Optional[str] = None,
            member_id: Optional[str] = None,
            time: Optional[str] = None,
            timezone: Optional[str] = None) -> GaiaTimeAndDate
    func GetGaiaTimeAndDate(ctx *Context, name string, id IDInput, state *GaiaTimeAndDateState, opts ...ResourceOption) (*GaiaTimeAndDate, error)
    public static GaiaTimeAndDate Get(string name, Input<string> id, GaiaTimeAndDateState? state, CustomResourceOptions? opts = null)
    public static GaiaTimeAndDate get(String name, Output<String> id, GaiaTimeAndDateState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaTimeAndDate    get:      id: ${id}
    import {
      to = checkpoint_gaiatimeanddate.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:
    Date string
    Date to set, in YYYY-MM-DD format
    Debug bool
    Enable debug logging for this resource.
    GaiaTimeAndDateId 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
    Time string
    Time to set, in HH:MM[:SS] format
    Timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    Date string
    Date to set, in YYYY-MM-DD format
    Debug bool
    Enable debug logging for this resource.
    GaiaTimeAndDateId 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
    Time string
    Time to set, in HH:MM[:SS] format
    Timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date string
    Date to set, in YYYY-MM-DD format
    debug bool
    Enable debug logging for this resource.
    gaia_time_and_date_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
    time string
    Time to set, in HH:MM[:SS] format
    timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date String
    Date to set, in YYYY-MM-DD format
    debug Boolean
    Enable debug logging for this resource.
    gaiaTimeAndDateId 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
    time String
    Time to set, in HH:MM[:SS] format
    timezone String
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date string
    Date to set, in YYYY-MM-DD format
    debug boolean
    Enable debug logging for this resource.
    gaiaTimeAndDateId 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
    time string
    Time to set, in HH:MM[:SS] format
    timezone string
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date str
    Date to set, in YYYY-MM-DD format
    debug bool
    Enable debug logging for this resource.
    gaia_time_and_date_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
    time str
    Time to set, in HH:MM[:SS] format
    timezone str
    Timezone in Area / Region format. See timezones list via 'show-timezones'
    date String
    Date to set, in YYYY-MM-DD format
    debug Boolean
    Enable debug logging for this resource.
    gaiaTimeAndDateId 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
    time String
    Time to set, in HH:MM[:SS] format
    timezone String
    Timezone in Area / Region format. See timezones list via 'show-timezones'

    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