1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementCheckThreatIocFeed
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw

    Create ManagementCheckThreatIocFeed Resource

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

    Constructor syntax

    new ManagementCheckThreatIocFeed(name: string, args: ManagementCheckThreatIocFeedArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementCheckThreatIocFeed(resource_name: str,
                                     args: ManagementCheckThreatIocFeedArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementCheckThreatIocFeed(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     ioc_feed: Optional[ManagementCheckThreatIocFeedIocFeedArgs] = None,
                                     targets: Optional[Sequence[str]] = None,
                                     management_check_threat_ioc_feed_id: Optional[str] = None)
    func NewManagementCheckThreatIocFeed(ctx *Context, name string, args ManagementCheckThreatIocFeedArgs, opts ...ResourceOption) (*ManagementCheckThreatIocFeed, error)
    public ManagementCheckThreatIocFeed(string name, ManagementCheckThreatIocFeedArgs args, CustomResourceOptions? opts = null)
    public ManagementCheckThreatIocFeed(String name, ManagementCheckThreatIocFeedArgs args)
    public ManagementCheckThreatIocFeed(String name, ManagementCheckThreatIocFeedArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementCheckThreatIocFeed
    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 ManagementCheckThreatIocFeedArgs
    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 ManagementCheckThreatIocFeedArgs
    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 ManagementCheckThreatIocFeedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementCheckThreatIocFeedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementCheckThreatIocFeedArgs
    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 managementCheckThreatIocFeedResource = new Checkpoint.ManagementCheckThreatIocFeed("managementCheckThreatIocFeedResource", new()
    {
        IocFeed = new Checkpoint.Inputs.ManagementCheckThreatIocFeedIocFeedArgs
        {
            Action = "string",
            CertificateId = "string",
            CustomComment = 0,
            CustomConfidence = 0,
            CustomHeaders = new[]
            {
                new Checkpoint.Inputs.ManagementCheckThreatIocFeedIocFeedCustomHeaderArgs
                {
                    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,
            Name = "string",
            Password = "string",
            UseCustomFeedSettings = false,
            UseGatewayProxy = false,
            Username = "string",
        },
        Targets = new[]
        {
            "string",
        },
        ManagementCheckThreatIocFeedId = "string",
    });
    
    example, err := checkpoint.NewManagementCheckThreatIocFeed(ctx, "managementCheckThreatIocFeedResource", &checkpoint.ManagementCheckThreatIocFeedArgs{
    	IocFeed: &checkpoint.ManagementCheckThreatIocFeedIocFeedArgs{
    		Action:           pulumi.String("string"),
    		CertificateId:    pulumi.String("string"),
    		CustomComment:    pulumi.Float64(0),
    		CustomConfidence: pulumi.Float64(0),
    		CustomHeaders: checkpoint.ManagementCheckThreatIocFeedIocFeedCustomHeaderArray{
    			&checkpoint.ManagementCheckThreatIocFeedIocFeedCustomHeaderArgs{
    				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),
    		Name:                     pulumi.String("string"),
    		Password:                 pulumi.String("string"),
    		UseCustomFeedSettings:    pulumi.Bool(false),
    		UseGatewayProxy:          pulumi.Bool(false),
    		Username:                 pulumi.String("string"),
    	},
    	Targets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ManagementCheckThreatIocFeedId: pulumi.String("string"),
    })
    
    var managementCheckThreatIocFeedResource = new ManagementCheckThreatIocFeed("managementCheckThreatIocFeedResource", ManagementCheckThreatIocFeedArgs.builder()
        .iocFeed(ManagementCheckThreatIocFeedIocFeedArgs.builder()
            .action("string")
            .certificateId("string")
            .customComment(0.0)
            .customConfidence(0.0)
            .customHeaders(ManagementCheckThreatIocFeedIocFeedCustomHeaderArgs.builder()
                .headerName("string")
                .headerValue("string")
                .build())
            .customName(0.0)
            .customSeverity(0.0)
            .customType(0.0)
            .customValue(0.0)
            .enabled(false)
            .feedType("string")
            .feedUrl("string")
            .fieldsDelimiter("string")
            .ignoreErrors(false)
            .ignoreLinesThatStartWith("string")
            .ignoreWarnings(false)
            .name("string")
            .password("string")
            .useCustomFeedSettings(false)
            .useGatewayProxy(false)
            .username("string")
            .build())
        .targets("string")
        .managementCheckThreatIocFeedId("string")
        .build());
    
    management_check_threat_ioc_feed_resource = checkpoint.ManagementCheckThreatIocFeed("managementCheckThreatIocFeedResource",
        ioc_feed={
            "action": "string",
            "certificate_id": "string",
            "custom_comment": float(0),
            "custom_confidence": float(0),
            "custom_headers": [{
                "header_name": "string",
                "header_value": "string",
            }],
            "custom_name": float(0),
            "custom_severity": float(0),
            "custom_type": float(0),
            "custom_value": float(0),
            "enabled": False,
            "feed_type": "string",
            "feed_url": "string",
            "fields_delimiter": "string",
            "ignore_errors": False,
            "ignore_lines_that_start_with": "string",
            "ignore_warnings": False,
            "name": "string",
            "password": "string",
            "use_custom_feed_settings": False,
            "use_gateway_proxy": False,
            "username": "string",
        },
        targets=["string"],
        management_check_threat_ioc_feed_id="string")
    
    const managementCheckThreatIocFeedResource = new checkpoint.ManagementCheckThreatIocFeed("managementCheckThreatIocFeedResource", {
        iocFeed: {
            action: "string",
            certificateId: "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,
            name: "string",
            password: "string",
            useCustomFeedSettings: false,
            useGatewayProxy: false,
            username: "string",
        },
        targets: ["string"],
        managementCheckThreatIocFeedId: "string",
    });
    
    type: checkpoint:ManagementCheckThreatIocFeed
    properties:
        iocFeed:
            action: string
            certificateId: 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
            name: string
            password: string
            useCustomFeedSettings: false
            useGatewayProxy: false
            username: string
        managementCheckThreatIocFeedId: string
        targets:
            - string
    

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

    IocFeed ManagementCheckThreatIocFeedIocFeed
    threat ioc feed parameters.ioc_feed blocks are documented below.
    Targets List<string>
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    ManagementCheckThreatIocFeedId string
    IocFeed ManagementCheckThreatIocFeedIocFeedArgs
    threat ioc feed parameters.ioc_feed blocks are documented below.
    Targets []string
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    ManagementCheckThreatIocFeedId string
    iocFeed ManagementCheckThreatIocFeedIocFeed
    threat ioc feed parameters.ioc_feed blocks are documented below.
    targets List<String>
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    managementCheckThreatIocFeedId String
    iocFeed ManagementCheckThreatIocFeedIocFeed
    threat ioc feed parameters.ioc_feed blocks are documented below.
    targets string[]
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    managementCheckThreatIocFeedId string
    ioc_feed ManagementCheckThreatIocFeedIocFeedArgs
    threat ioc feed parameters.ioc_feed blocks are documented below.
    targets Sequence[str]
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    management_check_threat_ioc_feed_id str
    iocFeed Property Map
    threat ioc feed parameters.ioc_feed blocks are documented below.
    targets List<String>
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    managementCheckThreatIocFeedId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementCheckThreatIocFeed resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    Command asynchronous task unique identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    Command asynchronous task unique identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    Command asynchronous task unique identifier.
    id string
    The provider-assigned unique ID for this managed resource.
    taskId string
    Command asynchronous task unique identifier.
    id str
    The provider-assigned unique ID for this managed resource.
    task_id str
    Command asynchronous task unique identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    Command asynchronous task unique identifier.

    Look up Existing ManagementCheckThreatIocFeed Resource

    Get an existing ManagementCheckThreatIocFeed 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?: ManagementCheckThreatIocFeedState, opts?: CustomResourceOptions): ManagementCheckThreatIocFeed
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ioc_feed: Optional[ManagementCheckThreatIocFeedIocFeedArgs] = None,
            management_check_threat_ioc_feed_id: Optional[str] = None,
            targets: Optional[Sequence[str]] = None,
            task_id: Optional[str] = None) -> ManagementCheckThreatIocFeed
    func GetManagementCheckThreatIocFeed(ctx *Context, name string, id IDInput, state *ManagementCheckThreatIocFeedState, opts ...ResourceOption) (*ManagementCheckThreatIocFeed, error)
    public static ManagementCheckThreatIocFeed Get(string name, Input<string> id, ManagementCheckThreatIocFeedState? state, CustomResourceOptions? opts = null)
    public static ManagementCheckThreatIocFeed get(String name, Output<String> id, ManagementCheckThreatIocFeedState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementCheckThreatIocFeed    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:
    IocFeed ManagementCheckThreatIocFeedIocFeed
    threat ioc feed parameters.ioc_feed blocks are documented below.
    ManagementCheckThreatIocFeedId string
    Targets List<string>
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    TaskId string
    Command asynchronous task unique identifier.
    IocFeed ManagementCheckThreatIocFeedIocFeedArgs
    threat ioc feed parameters.ioc_feed blocks are documented below.
    ManagementCheckThreatIocFeedId string
    Targets []string
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    TaskId string
    Command asynchronous task unique identifier.
    iocFeed ManagementCheckThreatIocFeedIocFeed
    threat ioc feed parameters.ioc_feed blocks are documented below.
    managementCheckThreatIocFeedId String
    targets List<String>
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    taskId String
    Command asynchronous task unique identifier.
    iocFeed ManagementCheckThreatIocFeedIocFeed
    threat ioc feed parameters.ioc_feed blocks are documented below.
    managementCheckThreatIocFeedId string
    targets string[]
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    taskId string
    Command asynchronous task unique identifier.
    ioc_feed ManagementCheckThreatIocFeedIocFeedArgs
    threat ioc feed parameters.ioc_feed blocks are documented below.
    management_check_threat_ioc_feed_id str
    targets Sequence[str]
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    task_id str
    Command asynchronous task unique identifier.
    iocFeed Property Map
    threat ioc feed parameters.ioc_feed blocks are documented below.
    managementCheckThreatIocFeedId String
    targets List<String>
    On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
    taskId String
    Command asynchronous task unique identifier.

    Supporting Types

    ManagementCheckThreatIocFeedIocFeed, ManagementCheckThreatIocFeedIocFeedArgs

    Action string
    The feed indicator's action.
    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    CustomComment double
    Custom IOC feed - the column number of comment.
    CustomConfidence double
    Custom IOC feed - the column number of confidence.
    CustomHeaders List<ManagementCheckThreatIocFeedIocFeedCustomHeader>
    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.
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    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.
    CustomComment float64
    Custom IOC feed - the column number of comment.
    CustomConfidence float64
    Custom IOC feed - the column number of confidence.
    CustomHeaders []ManagementCheckThreatIocFeedIocFeedCustomHeader
    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.
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    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.
    customComment Double
    Custom IOC feed - the column number of comment.
    customConfidence Double
    Custom IOC feed - the column number of confidence.
    customHeaders List<ManagementCheckThreatIocFeedIocFeedCustomHeader>
    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.
    name String
    Object name.
    password String
    password for authenticating with the URL.
    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.
    customComment number
    Custom IOC feed - the column number of comment.
    customConfidence number
    Custom IOC feed - the column number of confidence.
    customHeaders ManagementCheckThreatIocFeedIocFeedCustomHeader[]
    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.
    name string
    Object name.
    password string
    password for authenticating with the URL.
    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.
    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[ManagementCheckThreatIocFeedIocFeedCustomHeader]
    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.
    name str
    Object name.
    password str
    password for authenticating with the URL.
    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.
    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.
    name String
    Object name.
    password String
    password for authenticating with the URL.
    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.

    ManagementCheckThreatIocFeedIocFeedCustomHeader, ManagementCheckThreatIocFeedIocFeedCustomHeaderArgs

    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.
    Viewing docs for checkpoint 3.0.0
    published on Monday, Mar 30, 2026 by checkpointsw
      Try Pulumi Cloud free. Your team will thank you.