1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaCustomIntelligenceInterval
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 Custom Intelligence Interval.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaCustomIntelligenceInterval("example", {interval: 900});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaCustomIntelligenceInterval("example", interval=900)
    
    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.NewGaiaCustomIntelligenceInterval(ctx, "example", &checkpoint.GaiaCustomIntelligenceIntervalArgs{
    			Interval: pulumi.Float64(900),
    		})
    		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.GaiaCustomIntelligenceInterval("example", new()
        {
            Interval = 900,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaCustomIntelligenceInterval;
    import com.pulumi.checkpoint.GaiaCustomIntelligenceIntervalArgs;
    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 GaiaCustomIntelligenceInterval("example", GaiaCustomIntelligenceIntervalArgs.builder()
                .interval(900.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaCustomIntelligenceInterval
        properties:
          interval: 900
    
    Example coming soon!
    

    Create GaiaCustomIntelligenceInterval Resource

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

    Constructor syntax

    new GaiaCustomIntelligenceInterval(name: string, args: GaiaCustomIntelligenceIntervalArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaCustomIntelligenceInterval(resource_name: str,
                                       args: GaiaCustomIntelligenceIntervalArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaCustomIntelligenceInterval(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       interval: Optional[float] = None,
                                       debug: Optional[bool] = None,
                                       gaia_custom_intelligence_interval_id: Optional[str] = None,
                                       member_id: Optional[str] = None)
    func NewGaiaCustomIntelligenceInterval(ctx *Context, name string, args GaiaCustomIntelligenceIntervalArgs, opts ...ResourceOption) (*GaiaCustomIntelligenceInterval, error)
    public GaiaCustomIntelligenceInterval(string name, GaiaCustomIntelligenceIntervalArgs args, CustomResourceOptions? opts = null)
    public GaiaCustomIntelligenceInterval(String name, GaiaCustomIntelligenceIntervalArgs args)
    public GaiaCustomIntelligenceInterval(String name, GaiaCustomIntelligenceIntervalArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaCustomIntelligenceInterval
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiacustomintelligenceinterval" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaCustomIntelligenceIntervalArgs
    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 GaiaCustomIntelligenceIntervalArgs
    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 GaiaCustomIntelligenceIntervalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaCustomIntelligenceIntervalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaCustomIntelligenceIntervalArgs
    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 gaiaCustomIntelligenceIntervalResource = new Checkpoint.GaiaCustomIntelligenceInterval("gaiaCustomIntelligenceIntervalResource", new()
    {
        Interval = 0,
        Debug = false,
        GaiaCustomIntelligenceIntervalId = "string",
        MemberId = "string",
    });
    
    example, err := checkpoint.NewGaiaCustomIntelligenceInterval(ctx, "gaiaCustomIntelligenceIntervalResource", &checkpoint.GaiaCustomIntelligenceIntervalArgs{
    	Interval:                         pulumi.Float64(0),
    	Debug:                            pulumi.Bool(false),
    	GaiaCustomIntelligenceIntervalId: pulumi.String("string"),
    	MemberId:                         pulumi.String("string"),
    })
    
    resource "checkpoint_gaiacustomintelligenceinterval" "gaiaCustomIntelligenceIntervalResource" {
      interval                             = 0
      debug                                = false
      gaia_custom_intelligence_interval_id = "string"
      member_id                            = "string"
    }
    
    var gaiaCustomIntelligenceIntervalResource = new GaiaCustomIntelligenceInterval("gaiaCustomIntelligenceIntervalResource", GaiaCustomIntelligenceIntervalArgs.builder()
        .interval(0.0)
        .debug(false)
        .gaiaCustomIntelligenceIntervalId("string")
        .memberId("string")
        .build());
    
    gaia_custom_intelligence_interval_resource = checkpoint.GaiaCustomIntelligenceInterval("gaiaCustomIntelligenceIntervalResource",
        interval=float(0),
        debug=False,
        gaia_custom_intelligence_interval_id="string",
        member_id="string")
    
    const gaiaCustomIntelligenceIntervalResource = new checkpoint.GaiaCustomIntelligenceInterval("gaiaCustomIntelligenceIntervalResource", {
        interval: 0,
        debug: false,
        gaiaCustomIntelligenceIntervalId: "string",
        memberId: "string",
    });
    
    type: checkpoint:GaiaCustomIntelligenceInterval
    properties:
        debug: false
        gaiaCustomIntelligenceIntervalId: string
        interval: 0
        memberId: string
    

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

    Interval double
    Check for updates frequency
    Debug bool
    Enable debug logging for this resource.
    GaiaCustomIntelligenceIntervalId 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
    Interval float64
    Check for updates frequency
    Debug bool
    Enable debug logging for this resource.
    GaiaCustomIntelligenceIntervalId 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
    interval number
    Check for updates frequency
    debug bool
    Enable debug logging for this resource.
    gaia_custom_intelligence_interval_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
    interval Double
    Check for updates frequency
    debug Boolean
    Enable debug logging for this resource.
    gaiaCustomIntelligenceIntervalId 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
    interval number
    Check for updates frequency
    debug boolean
    Enable debug logging for this resource.
    gaiaCustomIntelligenceIntervalId 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
    interval float
    Check for updates frequency
    debug bool
    Enable debug logging for this resource.
    gaia_custom_intelligence_interval_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
    interval Number
    Check for updates frequency
    debug Boolean
    Enable debug logging for this resource.
    gaiaCustomIntelligenceIntervalId 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

    Outputs

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

    Get an existing GaiaCustomIntelligenceInterval 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?: GaiaCustomIntelligenceIntervalState, opts?: CustomResourceOptions): GaiaCustomIntelligenceInterval
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_custom_intelligence_interval_id: Optional[str] = None,
            interval: Optional[float] = None,
            member_id: Optional[str] = None) -> GaiaCustomIntelligenceInterval
    func GetGaiaCustomIntelligenceInterval(ctx *Context, name string, id IDInput, state *GaiaCustomIntelligenceIntervalState, opts ...ResourceOption) (*GaiaCustomIntelligenceInterval, error)
    public static GaiaCustomIntelligenceInterval Get(string name, Input<string> id, GaiaCustomIntelligenceIntervalState? state, CustomResourceOptions? opts = null)
    public static GaiaCustomIntelligenceInterval get(String name, Output<String> id, GaiaCustomIntelligenceIntervalState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaCustomIntelligenceInterval    get:      id: ${id}
    import {
      to = checkpoint_gaiacustomintelligenceinterval.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:
    Debug bool
    Enable debug logging for this resource.
    GaiaCustomIntelligenceIntervalId string
    Interval double
    Check for updates frequency
    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
    Debug bool
    Enable debug logging for this resource.
    GaiaCustomIntelligenceIntervalId string
    Interval float64
    Check for updates frequency
    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
    debug bool
    Enable debug logging for this resource.
    gaia_custom_intelligence_interval_id string
    interval number
    Check for updates frequency
    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
    debug Boolean
    Enable debug logging for this resource.
    gaiaCustomIntelligenceIntervalId String
    interval Double
    Check for updates frequency
    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
    debug boolean
    Enable debug logging for this resource.
    gaiaCustomIntelligenceIntervalId string
    interval number
    Check for updates frequency
    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
    debug bool
    Enable debug logging for this resource.
    gaia_custom_intelligence_interval_id str
    interval float
    Check for updates frequency
    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
    debug Boolean
    Enable debug logging for this resource.
    gaiaCustomIntelligenceIntervalId String
    interval Number
    Check for updates frequency
    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

    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