published on Monday, Jun 15, 2026 by checkpointsw
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
- Account
Name string - N/A
- Account
Password string - N/A
- Action string
- Set feed action
- Custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings - 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 stringIntelligence Feed Id - Https
Sha256Fingerprint 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
- Account
Name string - N/A
- Account
Password string - N/A
- Action string
- Set feed action
- Custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings Args - 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 stringIntelligence Feed Id - Https
Sha256Fingerprint 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
- account_
name string - N/A
- account_
password string - N/A
- action string
- Set feed action
- custom_
csv_ objectsettings - 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_ stringintelligence_ feed_ id - https_
sha256_ stringfingerprint - 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
- account
Name String - N/A
- account
Password String - N/A
- action String
- Set feed action
- custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings - 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
- gaia
Custom StringIntelligence Feed Id - https
Sha256Fingerprint 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
- account
Name string - N/A
- account
Password string - N/A
- action string
- Set feed action
- custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings - 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
- gaia
Custom stringIntelligence Feed Id - https
Sha256Fingerprint 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 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_ Gaiasettings Custom Intelligence Feed Custom Csv Settings Args - 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_ strintelligence_ feed_ id - https_
sha256_ strfingerprint - 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
- account
Name String - N/A
- account
Password String - N/A
- action String
- Set feed action
- custom
Csv Property MapSettings - 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
- gaia
Custom StringIntelligence Feed Id - https
Sha256Fingerprint 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
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) -> GaiaCustomIntelligenceFeedfunc 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.
- Account
Name string - N/A
- Account
Password string - N/A
- Action string
- Set feed action
- Custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings - 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 stringIntelligence Feed Id - Https
Sha256Fingerprint 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
- Account
Name string - N/A
- Account
Password string - N/A
- Action string
- Set feed action
- Custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings Args - 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 stringIntelligence Feed Id - Https
Sha256Fingerprint 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
- account_
name string - N/A
- account_
password string - N/A
- action string
- Set feed action
- custom_
csv_ objectsettings - 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_ stringintelligence_ feed_ id - https_
sha256_ stringfingerprint - 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
- account
Name String - N/A
- account
Password String - N/A
- action String
- Set feed action
- custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings - 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
- gaia
Custom StringIntelligence Feed Id - https
Sha256Fingerprint 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
- account
Name string - N/A
- account
Password string - N/A
- action string
- Set feed action
- custom
Csv GaiaSettings Custom Intelligence Feed Custom Csv Settings - 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
- gaia
Custom stringIntelligence Feed Id - https
Sha256Fingerprint 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
- account_
name str - N/A
- account_
password str - N/A
- action str
- Set feed action
- custom_
csv_ Gaiasettings Custom Intelligence Feed Custom Csv Settings Args - 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_ strintelligence_ feed_ id - https_
sha256_ strfingerprint - 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
- account
Name String - N/A
- account
Password String - N/A
- action String
- Set feed action
- custom
Csv Property MapSettings - 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
- gaia
Custom StringIntelligence Feed Id - https
Sha256Fingerprint 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
Supporting Types
GaiaCustomIntelligenceFeedCustomCsvSettings, GaiaCustomIntelligenceFeedCustomCsvSettingsArgs
- Csv
Delimiter string - N/A
- Csv
Lines stringTo Be Skipped - N/A
- Csv
Observable stringConfidence - N/A
- Csv
Observable stringDescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- Csv
Observable stringName - Set integer for index location in CSV file, or fixed value for the entire feed.
- Csv
Observable stringProduct - N/A
- Csv
Observable stringSeverity - N/A
- Csv
Observable stringType - Set integer for index location in CSV file, or fixed value for the entire feed.
- Csv
Observable doubleValue - N/A
- Csv
Delimiter string - N/A
- Csv
Lines stringTo Be Skipped - N/A
- Csv
Observable stringConfidence - N/A
- Csv
Observable stringDescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- Csv
Observable stringName - Set integer for index location in CSV file, or fixed value for the entire feed.
- Csv
Observable stringProduct - N/A
- Csv
Observable stringSeverity - N/A
- Csv
Observable stringType - Set integer for index location in CSV file, or fixed value for the entire feed.
- Csv
Observable float64Value - N/A
- csv_
delimiter string - N/A
- csv_
lines_ stringto_ be_ skipped - N/A
- csv_
observable_ stringconfidence - N/A
- csv_
observable_ stringdescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv_
observable_ stringname - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv_
observable_ stringproduct - N/A
- csv_
observable_ stringseverity - N/A
- csv_
observable_ stringtype - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv_
observable_ numbervalue - N/A
- csv
Delimiter String - N/A
- csv
Lines StringTo Be Skipped - N/A
- csv
Observable StringConfidence - N/A
- csv
Observable StringDescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable StringName - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable StringProduct - N/A
- csv
Observable StringSeverity - N/A
- csv
Observable StringType - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable DoubleValue - N/A
- csv
Delimiter string - N/A
- csv
Lines stringTo Be Skipped - N/A
- csv
Observable stringConfidence - N/A
- csv
Observable stringDescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable stringName - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable stringProduct - N/A
- csv
Observable stringSeverity - N/A
- csv
Observable stringType - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable numberValue - N/A
- csv_
delimiter str - N/A
- csv_
lines_ strto_ be_ skipped - N/A
- csv_
observable_ strconfidence - N/A
- csv_
observable_ strdescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv_
observable_ strname - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv_
observable_ strproduct - N/A
- csv_
observable_ strseverity - N/A
- csv_
observable_ strtype - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv_
observable_ floatvalue - N/A
- csv
Delimiter String - N/A
- csv
Lines StringTo Be Skipped - N/A
- csv
Observable StringConfidence - N/A
- csv
Observable StringDescription - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable StringName - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable StringProduct - N/A
- csv
Observable StringSeverity - N/A
- csv
Observable StringType - Set integer for index location in CSV file, or fixed value for the entire feed.
- csv
Observable NumberValue - N/A
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