1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaCustomIntelligenceFeed
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 Feed.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaCustomIntelligenceFeed("example", {
        name: "tf-example-feed",
        protocol: "http",
        url: "http://example.com/feeds/iocs.txt",
        action: "detect",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaCustomIntelligenceFeed("example",
        name="tf-example-feed",
        protocol="http",
        url="http://example.com/feeds/iocs.txt",
        action="detect")
    
    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.NewGaiaCustomIntelligenceFeed(ctx, "example", &checkpoint.GaiaCustomIntelligenceFeedArgs{
    			Name:     pulumi.String("tf-example-feed"),
    			Protocol: pulumi.String("http"),
    			Url:      pulumi.String("http://example.com/feeds/iocs.txt"),
    			Action:   pulumi.String("detect"),
    		})
    		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.GaiaCustomIntelligenceFeed("example", new()
        {
            Name = "tf-example-feed",
            Protocol = "http",
            Url = "http://example.com/feeds/iocs.txt",
            Action = "detect",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaCustomIntelligenceFeed;
    import com.pulumi.checkpoint.GaiaCustomIntelligenceFeedArgs;
    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 GaiaCustomIntelligenceFeed("example", GaiaCustomIntelligenceFeedArgs.builder()
                .name("tf-example-feed")
                .protocol("http")
                .url("http://example.com/feeds/iocs.txt")
                .action("detect")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaCustomIntelligenceFeed
        properties:
          name: tf-example-feed
          protocol: http
          url: http://example.com/feeds/iocs.txt
          action: detect
    
    Example coming soon!
    

    Create GaiaCustomIntelligenceFeed Resource

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

    Constructor syntax

    new GaiaCustomIntelligenceFeed(name: string, args: GaiaCustomIntelligenceFeedArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaCustomIntelligenceFeed(resource_name: str,
                                   args: GaiaCustomIntelligenceFeedArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaCustomIntelligenceFeed(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   protocol: Optional[str] = None,
                                   url: Optional[str] = None,
                                   format: Optional[str] = None,
                                   custom_csv_settings: Optional[GaiaCustomIntelligenceFeedCustomCsvSettingsArgs] = None,
                                   debug: Optional[bool] = None,
                                   enabled: Optional[bool] = None,
                                   account_name: Optional[str] = None,
                                   gaia_custom_intelligence_feed_id: Optional[str] = None,
                                   https_sha256_fingerprint: Optional[str] = None,
                                   member_id: Optional[str] = None,
                                   name: Optional[str] = None,
                                   action: Optional[str] = None,
                                   account_password: Optional[str] = None)
    func NewGaiaCustomIntelligenceFeed(ctx *Context, name string, args GaiaCustomIntelligenceFeedArgs, opts ...ResourceOption) (*GaiaCustomIntelligenceFeed, error)
    public GaiaCustomIntelligenceFeed(string name, GaiaCustomIntelligenceFeedArgs args, CustomResourceOptions? opts = null)
    public GaiaCustomIntelligenceFeed(String name, GaiaCustomIntelligenceFeedArgs args)
    public GaiaCustomIntelligenceFeed(String name, GaiaCustomIntelligenceFeedArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaCustomIntelligenceFeed
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiacustomintelligencefeed" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaCustomIntelligenceFeedArgs
    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 GaiaCustomIntelligenceFeedArgs
    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 GaiaCustomIntelligenceFeedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaCustomIntelligenceFeedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaCustomIntelligenceFeedArgs
    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 gaiaCustomIntelligenceFeedResource = new Checkpoint.GaiaCustomIntelligenceFeed("gaiaCustomIntelligenceFeedResource", new()
    {
        Protocol = "string",
        Url = "string",
        Format = "string",
        CustomCsvSettings = new Checkpoint.Inputs.GaiaCustomIntelligenceFeedCustomCsvSettingsArgs
        {
            CsvDelimiter = "string",
            CsvLinesToBeSkipped = "string",
            CsvObservableConfidence = "string",
            CsvObservableDescription = "string",
            CsvObservableName = "string",
            CsvObservableProduct = "string",
            CsvObservableSeverity = "string",
            CsvObservableType = "string",
            CsvObservableValue = 0,
        },
        Debug = false,
        Enabled = false,
        AccountName = "string",
        GaiaCustomIntelligenceFeedId = "string",
        HttpsSha256Fingerprint = "string",
        MemberId = "string",
        Name = "string",
        Action = "string",
        AccountPassword = "string",
    });
    
    example, err := checkpoint.NewGaiaCustomIntelligenceFeed(ctx, "gaiaCustomIntelligenceFeedResource", &checkpoint.GaiaCustomIntelligenceFeedArgs{
    	Protocol: pulumi.String("string"),
    	Url:      pulumi.String("string"),
    	Format:   pulumi.String("string"),
    	CustomCsvSettings: &checkpoint.GaiaCustomIntelligenceFeedCustomCsvSettingsArgs{
    		CsvDelimiter:             pulumi.String("string"),
    		CsvLinesToBeSkipped:      pulumi.String("string"),
    		CsvObservableConfidence:  pulumi.String("string"),
    		CsvObservableDescription: pulumi.String("string"),
    		CsvObservableName:        pulumi.String("string"),
    		CsvObservableProduct:     pulumi.String("string"),
    		CsvObservableSeverity:    pulumi.String("string"),
    		CsvObservableType:        pulumi.String("string"),
    		CsvObservableValue:       pulumi.Float64(0),
    	},
    	Debug:                        pulumi.Bool(false),
    	Enabled:                      pulumi.Bool(false),
    	AccountName:                  pulumi.String("string"),
    	GaiaCustomIntelligenceFeedId: pulumi.String("string"),
    	HttpsSha256Fingerprint:       pulumi.String("string"),
    	MemberId:                     pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	Action:                       pulumi.String("string"),
    	AccountPassword:              pulumi.String("string"),
    })
    
    resource "checkpoint_gaiacustomintelligencefeed" "gaiaCustomIntelligenceFeedResource" {
      protocol = "string"
      url      = "string"
      format   = "string"
      custom_csv_settings = {
        csv_delimiter              = "string"
        csv_lines_to_be_skipped    = "string"
        csv_observable_confidence  = "string"
        csv_observable_description = "string"
        csv_observable_name        = "string"
        csv_observable_product     = "string"
        csv_observable_severity    = "string"
        csv_observable_type        = "string"
        csv_observable_value       = 0
      }
      debug                            = false
      enabled                          = false
      account_name                     = "string"
      gaia_custom_intelligence_feed_id = "string"
      https_sha256_fingerprint         = "string"
      member_id                        = "string"
      name                             = "string"
      action                           = "string"
      account_password                 = "string"
    }
    
    var gaiaCustomIntelligenceFeedResource = new GaiaCustomIntelligenceFeed("gaiaCustomIntelligenceFeedResource", GaiaCustomIntelligenceFeedArgs.builder()
        .protocol("string")
        .url("string")
        .format("string")
        .customCsvSettings(GaiaCustomIntelligenceFeedCustomCsvSettingsArgs.builder()
            .csvDelimiter("string")
            .csvLinesToBeSkipped("string")
            .csvObservableConfidence("string")
            .csvObservableDescription("string")
            .csvObservableName("string")
            .csvObservableProduct("string")
            .csvObservableSeverity("string")
            .csvObservableType("string")
            .csvObservableValue(0.0)
            .build())
        .debug(false)
        .enabled(false)
        .accountName("string")
        .gaiaCustomIntelligenceFeedId("string")
        .httpsSha256Fingerprint("string")
        .memberId("string")
        .name("string")
        .action("string")
        .accountPassword("string")
        .build());
    
    gaia_custom_intelligence_feed_resource = checkpoint.GaiaCustomIntelligenceFeed("gaiaCustomIntelligenceFeedResource",
        protocol="string",
        url="string",
        format="string",
        custom_csv_settings={
            "csv_delimiter": "string",
            "csv_lines_to_be_skipped": "string",
            "csv_observable_confidence": "string",
            "csv_observable_description": "string",
            "csv_observable_name": "string",
            "csv_observable_product": "string",
            "csv_observable_severity": "string",
            "csv_observable_type": "string",
            "csv_observable_value": float(0),
        },
        debug=False,
        enabled=False,
        account_name="string",
        gaia_custom_intelligence_feed_id="string",
        https_sha256_fingerprint="string",
        member_id="string",
        name="string",
        action="string",
        account_password="string")
    
    const gaiaCustomIntelligenceFeedResource = new checkpoint.GaiaCustomIntelligenceFeed("gaiaCustomIntelligenceFeedResource", {
        protocol: "string",
        url: "string",
        format: "string",
        customCsvSettings: {
            csvDelimiter: "string",
            csvLinesToBeSkipped: "string",
            csvObservableConfidence: "string",
            csvObservableDescription: "string",
            csvObservableName: "string",
            csvObservableProduct: "string",
            csvObservableSeverity: "string",
            csvObservableType: "string",
            csvObservableValue: 0,
        },
        debug: false,
        enabled: false,
        accountName: "string",
        gaiaCustomIntelligenceFeedId: "string",
        httpsSha256Fingerprint: "string",
        memberId: "string",
        name: "string",
        action: "string",
        accountPassword: "string",
    });
    
    type: checkpoint:GaiaCustomIntelligenceFeed
    properties:
        accountName: string
        accountPassword: string
        action: string
        customCsvSettings:
            csvDelimiter: string
            csvLinesToBeSkipped: string
            csvObservableConfidence: string
            csvObservableDescription: string
            csvObservableName: string
            csvObservableProduct: string
            csvObservableSeverity: string
            csvObservableType: string
            csvObservableValue: 0
        debug: false
        enabled: false
        format: string
        gaiaCustomIntelligenceFeedId: string
        httpsSha256Fingerprint: string
        memberId: string
        name: string
        protocol: string
        url: string
    

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

    Protocol string
    N/A
    Url string
    Set the feed URL
    AccountName string
    N/A
    AccountPassword string
    N/A
    Action string
    Set feed action
    CustomCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettings
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    N/A
    Format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    GaiaCustomIntelligenceFeedId string
    HttpsSha256Fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    Name string
    N/A
    Protocol string
    N/A
    Url string
    Set the feed URL
    AccountName string
    N/A
    AccountPassword string
    N/A
    Action string
    Set feed action
    CustomCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettingsArgs
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    N/A
    Format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    GaiaCustomIntelligenceFeedId string
    HttpsSha256Fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    Name string
    N/A
    protocol string
    N/A
    url string
    Set the feed URL
    account_name string
    N/A
    account_password string
    N/A
    action string
    Set feed action
    custom_csv_settings object
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    N/A
    format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaia_custom_intelligence_feed_id string
    https_sha256_fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    name string
    N/A
    protocol String
    N/A
    url String
    Set the feed URL
    accountName String
    N/A
    accountPassword String
    N/A
    action String
    Set feed action
    customCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettings
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    N/A
    format String
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaiaCustomIntelligenceFeedId String
    httpsSha256Fingerprint String
    Specify HTTPS SHA-256 fingerprint
    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
    name String
    N/A
    protocol string
    N/A
    url string
    Set the feed URL
    accountName string
    N/A
    accountPassword string
    N/A
    action string
    Set feed action
    customCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettings
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    N/A
    format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaiaCustomIntelligenceFeedId string
    httpsSha256Fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    name string
    N/A
    protocol str
    N/A
    url str
    Set the feed URL
    account_name str
    N/A
    account_password str
    N/A
    action str
    Set feed action
    custom_csv_settings GaiaCustomIntelligenceFeedCustomCsvSettingsArgs
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    N/A
    format str
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaia_custom_intelligence_feed_id str
    https_sha256_fingerprint str
    Specify HTTPS SHA-256 fingerprint
    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
    name str
    N/A
    protocol String
    N/A
    url String
    Set the feed URL
    accountName String
    N/A
    accountPassword String
    N/A
    action String
    Set feed action
    customCsvSettings Property Map
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    N/A
    format String
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaiaCustomIntelligenceFeedId String
    httpsSha256Fingerprint String
    Specify HTTPS SHA-256 fingerprint
    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
    name String
    N/A

    Outputs

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

    Get an existing GaiaCustomIntelligenceFeed 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?: GaiaCustomIntelligenceFeedState, opts?: CustomResourceOptions): GaiaCustomIntelligenceFeed
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_name: Optional[str] = None,
            account_password: Optional[str] = None,
            action: Optional[str] = None,
            custom_csv_settings: Optional[GaiaCustomIntelligenceFeedCustomCsvSettingsArgs] = None,
            debug: Optional[bool] = None,
            enabled: Optional[bool] = None,
            format: Optional[str] = None,
            gaia_custom_intelligence_feed_id: Optional[str] = None,
            https_sha256_fingerprint: Optional[str] = None,
            member_id: Optional[str] = None,
            name: Optional[str] = None,
            protocol: Optional[str] = None,
            url: Optional[str] = None) -> GaiaCustomIntelligenceFeed
    func GetGaiaCustomIntelligenceFeed(ctx *Context, name string, id IDInput, state *GaiaCustomIntelligenceFeedState, opts ...ResourceOption) (*GaiaCustomIntelligenceFeed, error)
    public static GaiaCustomIntelligenceFeed Get(string name, Input<string> id, GaiaCustomIntelligenceFeedState? state, CustomResourceOptions? opts = null)
    public static GaiaCustomIntelligenceFeed get(String name, Output<String> id, GaiaCustomIntelligenceFeedState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaCustomIntelligenceFeed    get:      id: ${id}
    import {
      to = checkpoint_gaiacustomintelligencefeed.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:
    AccountName string
    N/A
    AccountPassword string
    N/A
    Action string
    Set feed action
    CustomCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettings
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    N/A
    Format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    GaiaCustomIntelligenceFeedId string
    HttpsSha256Fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    Name string
    N/A
    Protocol string
    N/A
    Url string
    Set the feed URL
    AccountName string
    N/A
    AccountPassword string
    N/A
    Action string
    Set feed action
    CustomCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettingsArgs
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    Enabled bool
    N/A
    Format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    GaiaCustomIntelligenceFeedId string
    HttpsSha256Fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    Name string
    N/A
    Protocol string
    N/A
    Url string
    Set the feed URL
    account_name string
    N/A
    account_password string
    N/A
    action string
    Set feed action
    custom_csv_settings object
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    N/A
    format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaia_custom_intelligence_feed_id string
    https_sha256_fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    name string
    N/A
    protocol string
    N/A
    url string
    Set the feed URL
    accountName String
    N/A
    accountPassword String
    N/A
    action String
    Set feed action
    customCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettings
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    N/A
    format String
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaiaCustomIntelligenceFeedId String
    httpsSha256Fingerprint String
    Specify HTTPS SHA-256 fingerprint
    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
    name String
    N/A
    protocol String
    N/A
    url String
    Set the feed URL
    accountName string
    N/A
    accountPassword string
    N/A
    action string
    Set feed action
    customCsvSettings GaiaCustomIntelligenceFeedCustomCsvSettings
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    enabled boolean
    N/A
    format string
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaiaCustomIntelligenceFeedId string
    httpsSha256Fingerprint string
    Specify HTTPS SHA-256 fingerprint
    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
    name string
    N/A
    protocol string
    N/A
    url string
    Set the feed URL
    account_name str
    N/A
    account_password str
    N/A
    action str
    Set feed action
    custom_csv_settings GaiaCustomIntelligenceFeedCustomCsvSettingsArgs
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    enabled bool
    N/A
    format str
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaia_custom_intelligence_feed_id str
    https_sha256_fingerprint str
    Specify HTTPS SHA-256 fingerprint
    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
    name str
    N/A
    protocol str
    N/A
    url str
    Set the feed URL
    accountName String
    N/A
    accountPassword String
    N/A
    action String
    Set feed action
    customCsvSettings Property Map
    Define custom csv settings - CSV structure, Delimiter and rows to skip custom_csv_settings blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    enabled Boolean
    N/A
    format String
    STIX: https://stixproject.github.io/. For more info see sk132193
    gaiaCustomIntelligenceFeedId String
    httpsSha256Fingerprint String
    Specify HTTPS SHA-256 fingerprint
    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
    name String
    N/A
    protocol String
    N/A
    url String
    Set the feed URL

    Supporting Types

    GaiaCustomIntelligenceFeedCustomCsvSettings, GaiaCustomIntelligenceFeedCustomCsvSettingsArgs

    CsvDelimiter string
    N/A
    CsvLinesToBeSkipped string
    N/A
    CsvObservableConfidence string
    N/A
    CsvObservableDescription string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    CsvObservableName string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    CsvObservableProduct string
    N/A
    CsvObservableSeverity string
    N/A
    CsvObservableType string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    CsvObservableValue double
    N/A
    CsvDelimiter string
    N/A
    CsvLinesToBeSkipped string
    N/A
    CsvObservableConfidence string
    N/A
    CsvObservableDescription string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    CsvObservableName string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    CsvObservableProduct string
    N/A
    CsvObservableSeverity string
    N/A
    CsvObservableType string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    CsvObservableValue float64
    N/A
    csv_delimiter string
    N/A
    csv_lines_to_be_skipped string
    N/A
    csv_observable_confidence string
    N/A
    csv_observable_description string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csv_observable_name string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csv_observable_product string
    N/A
    csv_observable_severity string
    N/A
    csv_observable_type string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csv_observable_value number
    N/A
    csvDelimiter String
    N/A
    csvLinesToBeSkipped String
    N/A
    csvObservableConfidence String
    N/A
    csvObservableDescription String
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableName String
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableProduct String
    N/A
    csvObservableSeverity String
    N/A
    csvObservableType String
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableValue Double
    N/A
    csvDelimiter string
    N/A
    csvLinesToBeSkipped string
    N/A
    csvObservableConfidence string
    N/A
    csvObservableDescription string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableName string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableProduct string
    N/A
    csvObservableSeverity string
    N/A
    csvObservableType string
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableValue number
    N/A
    csv_delimiter str
    N/A
    csv_lines_to_be_skipped str
    N/A
    csv_observable_confidence str
    N/A
    csv_observable_description str
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csv_observable_name str
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csv_observable_product str
    N/A
    csv_observable_severity str
    N/A
    csv_observable_type str
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csv_observable_value float
    N/A
    csvDelimiter String
    N/A
    csvLinesToBeSkipped String
    N/A
    csvObservableConfidence String
    N/A
    csvObservableDescription String
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableName String
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableProduct String
    N/A
    csvObservableSeverity String
    N/A
    csvObservableType String
    Set integer for index location in CSV file, or fixed value for the entire feed.
    csvObservableValue Number
    N/A

    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