1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementThreatIocFeed
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementThreatIocFeed

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    This resource allows you to execute Check Point Threat Ioc Feed.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementThreatIocFeed("example", {
        action: "Prevent",
        feedUrl: "https://www.feedsresource.com/resource",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementThreatIocFeed("example",
        action="Prevent",
        feed_url="https://www.feedsresource.com/resource")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementThreatIocFeed(ctx, "example", &checkpoint.ManagementThreatIocFeedArgs{
    			Action:  pulumi.String("Prevent"),
    			FeedUrl: pulumi.String("https://www.feedsresource.com/resource"),
    		})
    		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.ManagementThreatIocFeed("example", new()
        {
            Action = "Prevent",
            FeedUrl = "https://www.feedsresource.com/resource",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementThreatIocFeed;
    import com.pulumi.checkpoint.ManagementThreatIocFeedArgs;
    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 ManagementThreatIocFeed("example", ManagementThreatIocFeedArgs.builder()
                .action("Prevent")
                .feedUrl("https://www.feedsresource.com/resource")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementThreatIocFeed
        properties:
          action: Prevent
          feedUrl: https://www.feedsresource.com/resource
    

    Create ManagementThreatIocFeed Resource

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

    Constructor syntax

    new ManagementThreatIocFeed(name: string, args?: ManagementThreatIocFeedArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementThreatIocFeed(resource_name: str,
                                args: Optional[ManagementThreatIocFeedArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementThreatIocFeed(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                action: Optional[str] = None,
                                certificate_id: Optional[str] = None,
                                color: Optional[str] = None,
                                comments: Optional[str] = None,
                                custom_comment: Optional[float] = None,
                                custom_confidence: Optional[float] = None,
                                custom_headers: Optional[Sequence[ManagementThreatIocFeedCustomHeaderArgs]] = None,
                                custom_name: Optional[float] = None,
                                custom_severity: Optional[float] = None,
                                custom_type: Optional[float] = None,
                                custom_value: Optional[float] = None,
                                enabled: Optional[bool] = None,
                                feed_type: Optional[str] = None,
                                feed_url: Optional[str] = None,
                                fields_delimiter: Optional[str] = None,
                                ignore_errors: Optional[bool] = None,
                                ignore_lines_that_start_with: Optional[str] = None,
                                ignore_warnings: Optional[bool] = None,
                                management_threat_ioc_feed_id: Optional[str] = None,
                                name: Optional[str] = None,
                                password: Optional[str] = None,
                                tags: Optional[Sequence[str]] = None,
                                use_custom_feed_settings: Optional[bool] = None,
                                use_gateway_proxy: Optional[bool] = None,
                                username: Optional[str] = None)
    func NewManagementThreatIocFeed(ctx *Context, name string, args *ManagementThreatIocFeedArgs, opts ...ResourceOption) (*ManagementThreatIocFeed, error)
    public ManagementThreatIocFeed(string name, ManagementThreatIocFeedArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementThreatIocFeed(String name, ManagementThreatIocFeedArgs args)
    public ManagementThreatIocFeed(String name, ManagementThreatIocFeedArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementThreatIocFeed
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ManagementThreatIocFeedArgs
    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 ManagementThreatIocFeedArgs
    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 ManagementThreatIocFeedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementThreatIocFeedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementThreatIocFeedArgs
    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 managementThreatIocFeedResource = new Checkpoint.ManagementThreatIocFeed("managementThreatIocFeedResource", new()
    {
        Action = "string",
        CertificateId = "string",
        Color = "string",
        Comments = "string",
        CustomComment = 0,
        CustomConfidence = 0,
        CustomHeaders = new[]
        {
            new Checkpoint.Inputs.ManagementThreatIocFeedCustomHeaderArgs
            {
                HeaderName = "string",
                HeaderValue = "string",
            },
        },
        CustomName = 0,
        CustomSeverity = 0,
        CustomType = 0,
        CustomValue = 0,
        Enabled = false,
        FeedType = "string",
        FeedUrl = "string",
        FieldsDelimiter = "string",
        IgnoreErrors = false,
        IgnoreLinesThatStartWith = "string",
        IgnoreWarnings = false,
        ManagementThreatIocFeedId = "string",
        Name = "string",
        Password = "string",
        Tags = new[]
        {
            "string",
        },
        UseCustomFeedSettings = false,
        UseGatewayProxy = false,
        Username = "string",
    });
    
    example, err := checkpoint.NewManagementThreatIocFeed(ctx, "managementThreatIocFeedResource", &checkpoint.ManagementThreatIocFeedArgs{
    	Action:           pulumi.String("string"),
    	CertificateId:    pulumi.String("string"),
    	Color:            pulumi.String("string"),
    	Comments:         pulumi.String("string"),
    	CustomComment:    pulumi.Float64(0),
    	CustomConfidence: pulumi.Float64(0),
    	CustomHeaders: checkpoint.ManagementThreatIocFeedCustomHeaderArray{
    		&checkpoint.ManagementThreatIocFeedCustomHeaderArgs{
    			HeaderName:  pulumi.String("string"),
    			HeaderValue: pulumi.String("string"),
    		},
    	},
    	CustomName:                pulumi.Float64(0),
    	CustomSeverity:            pulumi.Float64(0),
    	CustomType:                pulumi.Float64(0),
    	CustomValue:               pulumi.Float64(0),
    	Enabled:                   pulumi.Bool(false),
    	FeedType:                  pulumi.String("string"),
    	FeedUrl:                   pulumi.String("string"),
    	FieldsDelimiter:           pulumi.String("string"),
    	IgnoreErrors:              pulumi.Bool(false),
    	IgnoreLinesThatStartWith:  pulumi.String("string"),
    	IgnoreWarnings:            pulumi.Bool(false),
    	ManagementThreatIocFeedId: pulumi.String("string"),
    	Name:                      pulumi.String("string"),
    	Password:                  pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UseCustomFeedSettings: pulumi.Bool(false),
    	UseGatewayProxy:       pulumi.Bool(false),
    	Username:              pulumi.String("string"),
    })
    
    var managementThreatIocFeedResource = new ManagementThreatIocFeed("managementThreatIocFeedResource", ManagementThreatIocFeedArgs.builder()
        .action("string")
        .certificateId("string")
        .color("string")
        .comments("string")
        .customComment(0)
        .customConfidence(0)
        .customHeaders(ManagementThreatIocFeedCustomHeaderArgs.builder()
            .headerName("string")
            .headerValue("string")
            .build())
        .customName(0)
        .customSeverity(0)
        .customType(0)
        .customValue(0)
        .enabled(false)
        .feedType("string")
        .feedUrl("string")
        .fieldsDelimiter("string")
        .ignoreErrors(false)
        .ignoreLinesThatStartWith("string")
        .ignoreWarnings(false)
        .managementThreatIocFeedId("string")
        .name("string")
        .password("string")
        .tags("string")
        .useCustomFeedSettings(false)
        .useGatewayProxy(false)
        .username("string")
        .build());
    
    management_threat_ioc_feed_resource = checkpoint.ManagementThreatIocFeed("managementThreatIocFeedResource",
        action="string",
        certificate_id="string",
        color="string",
        comments="string",
        custom_comment=0,
        custom_confidence=0,
        custom_headers=[{
            "header_name": "string",
            "header_value": "string",
        }],
        custom_name=0,
        custom_severity=0,
        custom_type=0,
        custom_value=0,
        enabled=False,
        feed_type="string",
        feed_url="string",
        fields_delimiter="string",
        ignore_errors=False,
        ignore_lines_that_start_with="string",
        ignore_warnings=False,
        management_threat_ioc_feed_id="string",
        name="string",
        password="string",
        tags=["string"],
        use_custom_feed_settings=False,
        use_gateway_proxy=False,
        username="string")
    
    const managementThreatIocFeedResource = new checkpoint.ManagementThreatIocFeed("managementThreatIocFeedResource", {
        action: "string",
        certificateId: "string",
        color: "string",
        comments: "string",
        customComment: 0,
        customConfidence: 0,
        customHeaders: [{
            headerName: "string",
            headerValue: "string",
        }],
        customName: 0,
        customSeverity: 0,
        customType: 0,
        customValue: 0,
        enabled: false,
        feedType: "string",
        feedUrl: "string",
        fieldsDelimiter: "string",
        ignoreErrors: false,
        ignoreLinesThatStartWith: "string",
        ignoreWarnings: false,
        managementThreatIocFeedId: "string",
        name: "string",
        password: "string",
        tags: ["string"],
        useCustomFeedSettings: false,
        useGatewayProxy: false,
        username: "string",
    });
    
    type: checkpoint:ManagementThreatIocFeed
    properties:
        action: string
        certificateId: string
        color: string
        comments: string
        customComment: 0
        customConfidence: 0
        customHeaders:
            - headerName: string
              headerValue: string
        customName: 0
        customSeverity: 0
        customType: 0
        customValue: 0
        enabled: false
        feedType: string
        feedUrl: string
        fieldsDelimiter: string
        ignoreErrors: false
        ignoreLinesThatStartWith: string
        ignoreWarnings: false
        managementThreatIocFeedId: string
        name: string
        password: string
        tags:
            - string
        useCustomFeedSettings: false
        useGatewayProxy: false
        username: string
    

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

    Action string
    The feed indicator's action.
    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CustomComment double
    Custom IOC feed - the column number of comment.
    CustomConfidence double
    Custom IOC feed - the column number of confidence.
    CustomHeaders List<ManagementThreatIocFeedCustomHeader>
    Custom HTTP headers.custom_header blocks are documented below.
    CustomName double
    Custom IOC feed - the column number of name.
    CustomSeverity double
    Custom IOC feed - the column number of severity.
    CustomType double
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    CustomValue double
    Custom IOC feed - the column number of value in case a specific type is chosen.
    Enabled bool
    Sets whether this indicator feed is enabled.
    FeedType string
    Feed type to be enforced.
    FeedUrl string
    URL of the feed. URL should be written as http or https.
    FieldsDelimiter string
    The delimiter that separates between the columns in the feed.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreLinesThatStartWith string
    A prefix that will determine which lines to ignore.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementThreatIocFeedId string
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    UseCustomFeedSettings bool
    Set in order to configure a custom indicator feed.
    UseGatewayProxy bool
    Use the gateway's proxy for retrieving the feed.
    Username string
    username for authenticating with the URL.
    Action string
    The feed indicator's action.
    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CustomComment float64
    Custom IOC feed - the column number of comment.
    CustomConfidence float64
    Custom IOC feed - the column number of confidence.
    CustomHeaders []ManagementThreatIocFeedCustomHeaderArgs
    Custom HTTP headers.custom_header blocks are documented below.
    CustomName float64
    Custom IOC feed - the column number of name.
    CustomSeverity float64
    Custom IOC feed - the column number of severity.
    CustomType float64
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    CustomValue float64
    Custom IOC feed - the column number of value in case a specific type is chosen.
    Enabled bool
    Sets whether this indicator feed is enabled.
    FeedType string
    Feed type to be enforced.
    FeedUrl string
    URL of the feed. URL should be written as http or https.
    FieldsDelimiter string
    The delimiter that separates between the columns in the feed.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreLinesThatStartWith string
    A prefix that will determine which lines to ignore.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementThreatIocFeedId string
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    UseCustomFeedSettings bool
    Set in order to configure a custom indicator feed.
    UseGatewayProxy bool
    Use the gateway's proxy for retrieving the feed.
    Username string
    username for authenticating with the URL.
    action String
    The feed indicator's action.
    certificateId String
    Certificate SHA-1 fingerprint to access the feed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    customComment Double
    Custom IOC feed - the column number of comment.
    customConfidence Double
    Custom IOC feed - the column number of confidence.
    customHeaders List<ManagementThreatIocFeedCustomHeader>
    Custom HTTP headers.custom_header blocks are documented below.
    customName Double
    Custom IOC feed - the column number of name.
    customSeverity Double
    Custom IOC feed - the column number of severity.
    customType Double
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    customValue Double
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled Boolean
    Sets whether this indicator feed is enabled.
    feedType String
    Feed type to be enforced.
    feedUrl String
    URL of the feed. URL should be written as http or https.
    fieldsDelimiter String
    The delimiter that separates between the columns in the feed.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreLinesThatStartWith String
    A prefix that will determine which lines to ignore.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementThreatIocFeedId String
    name String
    Object name.
    password String
    password for authenticating with the URL.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    useCustomFeedSettings Boolean
    Set in order to configure a custom indicator feed.
    useGatewayProxy Boolean
    Use the gateway's proxy for retrieving the feed.
    username String
    username for authenticating with the URL.
    action string
    The feed indicator's action.
    certificateId string
    Certificate SHA-1 fingerprint to access the feed.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    customComment number
    Custom IOC feed - the column number of comment.
    customConfidence number
    Custom IOC feed - the column number of confidence.
    customHeaders ManagementThreatIocFeedCustomHeader[]
    Custom HTTP headers.custom_header blocks are documented below.
    customName number
    Custom IOC feed - the column number of name.
    customSeverity number
    Custom IOC feed - the column number of severity.
    customType number
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    customValue number
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled boolean
    Sets whether this indicator feed is enabled.
    feedType string
    Feed type to be enforced.
    feedUrl string
    URL of the feed. URL should be written as http or https.
    fieldsDelimiter string
    The delimiter that separates between the columns in the feed.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreLinesThatStartWith string
    A prefix that will determine which lines to ignore.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementThreatIocFeedId string
    name string
    Object name.
    password string
    password for authenticating with the URL.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    useCustomFeedSettings boolean
    Set in order to configure a custom indicator feed.
    useGatewayProxy boolean
    Use the gateway's proxy for retrieving the feed.
    username string
    username for authenticating with the URL.
    action str
    The feed indicator's action.
    certificate_id str
    Certificate SHA-1 fingerprint to access the feed.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    custom_comment float
    Custom IOC feed - the column number of comment.
    custom_confidence float
    Custom IOC feed - the column number of confidence.
    custom_headers Sequence[ManagementThreatIocFeedCustomHeaderArgs]
    Custom HTTP headers.custom_header blocks are documented below.
    custom_name float
    Custom IOC feed - the column number of name.
    custom_severity float
    Custom IOC feed - the column number of severity.
    custom_type float
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    custom_value float
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled bool
    Sets whether this indicator feed is enabled.
    feed_type str
    Feed type to be enforced.
    feed_url str
    URL of the feed. URL should be written as http or https.
    fields_delimiter str
    The delimiter that separates between the columns in the feed.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_lines_that_start_with str
    A prefix that will determine which lines to ignore.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_threat_ioc_feed_id str
    name str
    Object name.
    password str
    password for authenticating with the URL.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    use_custom_feed_settings bool
    Set in order to configure a custom indicator feed.
    use_gateway_proxy bool
    Use the gateway's proxy for retrieving the feed.
    username str
    username for authenticating with the URL.
    action String
    The feed indicator's action.
    certificateId String
    Certificate SHA-1 fingerprint to access the feed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    customComment Number
    Custom IOC feed - the column number of comment.
    customConfidence Number
    Custom IOC feed - the column number of confidence.
    customHeaders List<Property Map>
    Custom HTTP headers.custom_header blocks are documented below.
    customName Number
    Custom IOC feed - the column number of name.
    customSeverity Number
    Custom IOC feed - the column number of severity.
    customType Number
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    customValue Number
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled Boolean
    Sets whether this indicator feed is enabled.
    feedType String
    Feed type to be enforced.
    feedUrl String
    URL of the feed. URL should be written as http or https.
    fieldsDelimiter String
    The delimiter that separates between the columns in the feed.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreLinesThatStartWith String
    A prefix that will determine which lines to ignore.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementThreatIocFeedId String
    name String
    Object name.
    password String
    password for authenticating with the URL.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    useCustomFeedSettings Boolean
    Set in order to configure a custom indicator feed.
    useGatewayProxy Boolean
    Use the gateway's proxy for retrieving the feed.
    username String
    username for authenticating with the URL.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementThreatIocFeed 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ManagementThreatIocFeed Resource

    Get an existing ManagementThreatIocFeed 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?: ManagementThreatIocFeedState, opts?: CustomResourceOptions): ManagementThreatIocFeed
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            certificate_id: Optional[str] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            custom_comment: Optional[float] = None,
            custom_confidence: Optional[float] = None,
            custom_headers: Optional[Sequence[ManagementThreatIocFeedCustomHeaderArgs]] = None,
            custom_name: Optional[float] = None,
            custom_severity: Optional[float] = None,
            custom_type: Optional[float] = None,
            custom_value: Optional[float] = None,
            enabled: Optional[bool] = None,
            feed_type: Optional[str] = None,
            feed_url: Optional[str] = None,
            fields_delimiter: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_lines_that_start_with: Optional[str] = None,
            ignore_warnings: Optional[bool] = None,
            management_threat_ioc_feed_id: Optional[str] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            use_custom_feed_settings: Optional[bool] = None,
            use_gateway_proxy: Optional[bool] = None,
            username: Optional[str] = None) -> ManagementThreatIocFeed
    func GetManagementThreatIocFeed(ctx *Context, name string, id IDInput, state *ManagementThreatIocFeedState, opts ...ResourceOption) (*ManagementThreatIocFeed, error)
    public static ManagementThreatIocFeed Get(string name, Input<string> id, ManagementThreatIocFeedState? state, CustomResourceOptions? opts = null)
    public static ManagementThreatIocFeed get(String name, Output<String> id, ManagementThreatIocFeedState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementThreatIocFeed    get:      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:
    Action string
    The feed indicator's action.
    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CustomComment double
    Custom IOC feed - the column number of comment.
    CustomConfidence double
    Custom IOC feed - the column number of confidence.
    CustomHeaders List<ManagementThreatIocFeedCustomHeader>
    Custom HTTP headers.custom_header blocks are documented below.
    CustomName double
    Custom IOC feed - the column number of name.
    CustomSeverity double
    Custom IOC feed - the column number of severity.
    CustomType double
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    CustomValue double
    Custom IOC feed - the column number of value in case a specific type is chosen.
    Enabled bool
    Sets whether this indicator feed is enabled.
    FeedType string
    Feed type to be enforced.
    FeedUrl string
    URL of the feed. URL should be written as http or https.
    FieldsDelimiter string
    The delimiter that separates between the columns in the feed.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreLinesThatStartWith string
    A prefix that will determine which lines to ignore.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementThreatIocFeedId string
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    UseCustomFeedSettings bool
    Set in order to configure a custom indicator feed.
    UseGatewayProxy bool
    Use the gateway's proxy for retrieving the feed.
    Username string
    username for authenticating with the URL.
    Action string
    The feed indicator's action.
    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CustomComment float64
    Custom IOC feed - the column number of comment.
    CustomConfidence float64
    Custom IOC feed - the column number of confidence.
    CustomHeaders []ManagementThreatIocFeedCustomHeaderArgs
    Custom HTTP headers.custom_header blocks are documented below.
    CustomName float64
    Custom IOC feed - the column number of name.
    CustomSeverity float64
    Custom IOC feed - the column number of severity.
    CustomType float64
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    CustomValue float64
    Custom IOC feed - the column number of value in case a specific type is chosen.
    Enabled bool
    Sets whether this indicator feed is enabled.
    FeedType string
    Feed type to be enforced.
    FeedUrl string
    URL of the feed. URL should be written as http or https.
    FieldsDelimiter string
    The delimiter that separates between the columns in the feed.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreLinesThatStartWith string
    A prefix that will determine which lines to ignore.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementThreatIocFeedId string
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    UseCustomFeedSettings bool
    Set in order to configure a custom indicator feed.
    UseGatewayProxy bool
    Use the gateway's proxy for retrieving the feed.
    Username string
    username for authenticating with the URL.
    action String
    The feed indicator's action.
    certificateId String
    Certificate SHA-1 fingerprint to access the feed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    customComment Double
    Custom IOC feed - the column number of comment.
    customConfidence Double
    Custom IOC feed - the column number of confidence.
    customHeaders List<ManagementThreatIocFeedCustomHeader>
    Custom HTTP headers.custom_header blocks are documented below.
    customName Double
    Custom IOC feed - the column number of name.
    customSeverity Double
    Custom IOC feed - the column number of severity.
    customType Double
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    customValue Double
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled Boolean
    Sets whether this indicator feed is enabled.
    feedType String
    Feed type to be enforced.
    feedUrl String
    URL of the feed. URL should be written as http or https.
    fieldsDelimiter String
    The delimiter that separates between the columns in the feed.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreLinesThatStartWith String
    A prefix that will determine which lines to ignore.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementThreatIocFeedId String
    name String
    Object name.
    password String
    password for authenticating with the URL.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    useCustomFeedSettings Boolean
    Set in order to configure a custom indicator feed.
    useGatewayProxy Boolean
    Use the gateway's proxy for retrieving the feed.
    username String
    username for authenticating with the URL.
    action string
    The feed indicator's action.
    certificateId string
    Certificate SHA-1 fingerprint to access the feed.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    customComment number
    Custom IOC feed - the column number of comment.
    customConfidence number
    Custom IOC feed - the column number of confidence.
    customHeaders ManagementThreatIocFeedCustomHeader[]
    Custom HTTP headers.custom_header blocks are documented below.
    customName number
    Custom IOC feed - the column number of name.
    customSeverity number
    Custom IOC feed - the column number of severity.
    customType number
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    customValue number
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled boolean
    Sets whether this indicator feed is enabled.
    feedType string
    Feed type to be enforced.
    feedUrl string
    URL of the feed. URL should be written as http or https.
    fieldsDelimiter string
    The delimiter that separates between the columns in the feed.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreLinesThatStartWith string
    A prefix that will determine which lines to ignore.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementThreatIocFeedId string
    name string
    Object name.
    password string
    password for authenticating with the URL.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    useCustomFeedSettings boolean
    Set in order to configure a custom indicator feed.
    useGatewayProxy boolean
    Use the gateway's proxy for retrieving the feed.
    username string
    username for authenticating with the URL.
    action str
    The feed indicator's action.
    certificate_id str
    Certificate SHA-1 fingerprint to access the feed.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    custom_comment float
    Custom IOC feed - the column number of comment.
    custom_confidence float
    Custom IOC feed - the column number of confidence.
    custom_headers Sequence[ManagementThreatIocFeedCustomHeaderArgs]
    Custom HTTP headers.custom_header blocks are documented below.
    custom_name float
    Custom IOC feed - the column number of name.
    custom_severity float
    Custom IOC feed - the column number of severity.
    custom_type float
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    custom_value float
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled bool
    Sets whether this indicator feed is enabled.
    feed_type str
    Feed type to be enforced.
    feed_url str
    URL of the feed. URL should be written as http or https.
    fields_delimiter str
    The delimiter that separates between the columns in the feed.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_lines_that_start_with str
    A prefix that will determine which lines to ignore.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_threat_ioc_feed_id str
    name str
    Object name.
    password str
    password for authenticating with the URL.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    use_custom_feed_settings bool
    Set in order to configure a custom indicator feed.
    use_gateway_proxy bool
    Use the gateway's proxy for retrieving the feed.
    username str
    username for authenticating with the URL.
    action String
    The feed indicator's action.
    certificateId String
    Certificate SHA-1 fingerprint to access the feed.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    customComment Number
    Custom IOC feed - the column number of comment.
    customConfidence Number
    Custom IOC feed - the column number of confidence.
    customHeaders List<Property Map>
    Custom HTTP headers.custom_header blocks are documented below.
    customName Number
    Custom IOC feed - the column number of name.
    customSeverity Number
    Custom IOC feed - the column number of severity.
    customType Number
    Custom IOC feed - the column number of type in case a specific type is not chosen.
    customValue Number
    Custom IOC feed - the column number of value in case a specific type is chosen.
    enabled Boolean
    Sets whether this indicator feed is enabled.
    feedType String
    Feed type to be enforced.
    feedUrl String
    URL of the feed. URL should be written as http or https.
    fieldsDelimiter String
    The delimiter that separates between the columns in the feed.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreLinesThatStartWith String
    A prefix that will determine which lines to ignore.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementThreatIocFeedId String
    name String
    Object name.
    password String
    password for authenticating with the URL.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    useCustomFeedSettings Boolean
    Set in order to configure a custom indicator feed.
    useGatewayProxy Boolean
    Use the gateway's proxy for retrieving the feed.
    username String
    username for authenticating with the URL.

    Supporting Types

    ManagementThreatIocFeedCustomHeader, ManagementThreatIocFeedCustomHeaderArgs

    HeaderName string
    The name of the HTTP header we wish to add.
    HeaderValue string
    The name of the HTTP value we wish to add.
    HeaderName string
    The name of the HTTP header we wish to add.
    HeaderValue string
    The name of the HTTP value we wish to add.
    headerName String
    The name of the HTTP header we wish to add.
    headerValue String
    The name of the HTTP value we wish to add.
    headerName string
    The name of the HTTP header we wish to add.
    headerValue string
    The name of the HTTP value we wish to add.
    header_name str
    The name of the HTTP header we wish to add.
    header_value str
    The name of the HTTP value we wish to add.
    headerName String
    The name of the HTTP header we wish to add.
    headerValue String
    The name of the HTTP value we wish to add.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw