checkpoint.ManagementThreatIocFeed
Explore with Pulumi AI
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.
- Certificate
Id 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.
- Custom
Comment double - Custom IOC feed - the column number of comment.
- Custom
Confidence double - Custom IOC feed - the column number of confidence.
- Custom
Headers List<ManagementThreat Ioc Feed Custom Header> - Custom HTTP headers.custom_header blocks are documented below.
- Custom
Name double - Custom IOC feed - the column number of name.
- Custom
Severity double - Custom IOC feed - the column number of severity.
- Custom
Type double - Custom IOC feed - the column number of type in case a specific type is not chosen.
- Custom
Value 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.
- Feed
Type string - Feed type to be enforced.
- Feed
Url string - URL of the feed. URL should be written as http or https.
- Fields
Delimiter string - 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 stringThat Start With - A prefix that will determine which lines to ignore.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Threat stringIoc Feed Id - Name string
- Object name.
- Password string
- password for authenticating with the URL.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Use
Custom boolFeed Settings - Set in order to configure a custom indicator feed.
- Use
Gateway boolProxy - Use the gateway's proxy for retrieving the feed.
- Username string
- username for authenticating with the URL.
- Action string
- The feed indicator's action.
- Certificate
Id 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.
- Custom
Comment float64 - Custom IOC feed - the column number of comment.
- Custom
Confidence float64 - Custom IOC feed - the column number of confidence.
- Custom
Headers []ManagementThreat Ioc Feed Custom Header Args - Custom HTTP headers.custom_header blocks are documented below.
- Custom
Name float64 - Custom IOC feed - the column number of name.
- Custom
Severity float64 - Custom IOC feed - the column number of severity.
- Custom
Type float64 - Custom IOC feed - the column number of type in case a specific type is not chosen.
- Custom
Value 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.
- Feed
Type string - Feed type to be enforced.
- Feed
Url string - URL of the feed. URL should be written as http or https.
- Fields
Delimiter string - 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 stringThat Start With - A prefix that will determine which lines to ignore.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Threat stringIoc Feed Id - Name string
- Object name.
- Password string
- password for authenticating with the URL.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Use
Custom boolFeed Settings - Set in order to configure a custom indicator feed.
- Use
Gateway boolProxy - Use the gateway's proxy for retrieving the feed.
- Username string
- username for authenticating with the URL.
- action String
- The feed indicator's action.
- certificate
Id 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.
- custom
Comment Double - Custom IOC feed - the column number of comment.
- custom
Confidence Double - Custom IOC feed - the column number of confidence.
- custom
Headers List<ManagementThreat Ioc Feed Custom Header> - Custom HTTP headers.custom_header blocks are documented below.
- custom
Name Double - Custom IOC feed - the column number of name.
- custom
Severity Double - Custom IOC feed - the column number of severity.
- custom
Type Double - Custom IOC feed - the column number of type in case a specific type is not chosen.
- custom
Value 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.
- feed
Type String - Feed type to be enforced.
- feed
Url String - URL of the feed. URL should be written as http or https.
- fields
Delimiter String - The delimiter that separates between the columns in the feed.
- ignore
Errors 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.
- ignore
Lines StringThat Start With - A prefix that will determine which lines to ignore.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Threat StringIoc Feed Id - name String
- Object name.
- password String
- password for authenticating with the URL.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Custom BooleanFeed Settings - Set in order to configure a custom indicator feed.
- use
Gateway BooleanProxy - Use the gateway's proxy for retrieving the feed.
- username String
- username for authenticating with the URL.
- action string
- The feed indicator's action.
- certificate
Id 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.
- custom
Comment number - Custom IOC feed - the column number of comment.
- custom
Confidence number - Custom IOC feed - the column number of confidence.
- custom
Headers ManagementThreat Ioc Feed Custom Header[] - Custom HTTP headers.custom_header blocks are documented below.
- custom
Name number - Custom IOC feed - the column number of name.
- custom
Severity number - Custom IOC feed - the column number of severity.
- custom
Type number - Custom IOC feed - the column number of type in case a specific type is not chosen.
- custom
Value 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.
- feed
Type string - Feed type to be enforced.
- feed
Url string - URL of the feed. URL should be written as http or https.
- fields
Delimiter string - The delimiter that separates between the columns in the feed.
- ignore
Errors 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.
- ignore
Lines stringThat Start With - A prefix that will determine which lines to ignore.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Threat stringIoc Feed Id - name string
- Object name.
- password string
- password for authenticating with the URL.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- use
Custom booleanFeed Settings - Set in order to configure a custom indicator feed.
- use
Gateway booleanProxy - 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[ManagementThreat Ioc Feed Custom Header Args] - 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_ strthat_ start_ with - A prefix that will determine which lines to ignore.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
threat_ strioc_ feed_ id - name str
- Object name.
- password str
- password for authenticating with the URL.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- use_
custom_ boolfeed_ settings - Set in order to configure a custom indicator feed.
- use_
gateway_ boolproxy - Use the gateway's proxy for retrieving the feed.
- username str
- username for authenticating with the URL.
- action String
- The feed indicator's action.
- certificate
Id 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.
- custom
Comment Number - Custom IOC feed - the column number of comment.
- custom
Confidence Number - Custom IOC feed - the column number of confidence.
- custom
Headers List<Property Map> - Custom HTTP headers.custom_header blocks are documented below.
- custom
Name Number - Custom IOC feed - the column number of name.
- custom
Severity Number - Custom IOC feed - the column number of severity.
- custom
Type Number - Custom IOC feed - the column number of type in case a specific type is not chosen.
- custom
Value 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.
- feed
Type String - Feed type to be enforced.
- feed
Url String - URL of the feed. URL should be written as http or https.
- fields
Delimiter String - The delimiter that separates between the columns in the feed.
- ignore
Errors 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.
- ignore
Lines StringThat Start With - A prefix that will determine which lines to ignore.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Threat StringIoc Feed Id - name String
- Object name.
- password String
- password for authenticating with the URL.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Custom BooleanFeed Settings - Set in order to configure a custom indicator feed.
- use
Gateway BooleanProxy - 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.
- Action string
- The feed indicator's action.
- Certificate
Id 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.
- Custom
Comment double - Custom IOC feed - the column number of comment.
- Custom
Confidence double - Custom IOC feed - the column number of confidence.
- Custom
Headers List<ManagementThreat Ioc Feed Custom Header> - Custom HTTP headers.custom_header blocks are documented below.
- Custom
Name double - Custom IOC feed - the column number of name.
- Custom
Severity double - Custom IOC feed - the column number of severity.
- Custom
Type double - Custom IOC feed - the column number of type in case a specific type is not chosen.
- Custom
Value 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.
- Feed
Type string - Feed type to be enforced.
- Feed
Url string - URL of the feed. URL should be written as http or https.
- Fields
Delimiter string - 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 stringThat Start With - A prefix that will determine which lines to ignore.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Threat stringIoc Feed Id - Name string
- Object name.
- Password string
- password for authenticating with the URL.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Use
Custom boolFeed Settings - Set in order to configure a custom indicator feed.
- Use
Gateway boolProxy - Use the gateway's proxy for retrieving the feed.
- Username string
- username for authenticating with the URL.
- Action string
- The feed indicator's action.
- Certificate
Id 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.
- Custom
Comment float64 - Custom IOC feed - the column number of comment.
- Custom
Confidence float64 - Custom IOC feed - the column number of confidence.
- Custom
Headers []ManagementThreat Ioc Feed Custom Header Args - Custom HTTP headers.custom_header blocks are documented below.
- Custom
Name float64 - Custom IOC feed - the column number of name.
- Custom
Severity float64 - Custom IOC feed - the column number of severity.
- Custom
Type float64 - Custom IOC feed - the column number of type in case a specific type is not chosen.
- Custom
Value 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.
- Feed
Type string - Feed type to be enforced.
- Feed
Url string - URL of the feed. URL should be written as http or https.
- Fields
Delimiter string - 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 stringThat Start With - A prefix that will determine which lines to ignore.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Threat stringIoc Feed Id - Name string
- Object name.
- Password string
- password for authenticating with the URL.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Use
Custom boolFeed Settings - Set in order to configure a custom indicator feed.
- Use
Gateway boolProxy - Use the gateway's proxy for retrieving the feed.
- Username string
- username for authenticating with the URL.
- action String
- The feed indicator's action.
- certificate
Id 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.
- custom
Comment Double - Custom IOC feed - the column number of comment.
- custom
Confidence Double - Custom IOC feed - the column number of confidence.
- custom
Headers List<ManagementThreat Ioc Feed Custom Header> - Custom HTTP headers.custom_header blocks are documented below.
- custom
Name Double - Custom IOC feed - the column number of name.
- custom
Severity Double - Custom IOC feed - the column number of severity.
- custom
Type Double - Custom IOC feed - the column number of type in case a specific type is not chosen.
- custom
Value 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.
- feed
Type String - Feed type to be enforced.
- feed
Url String - URL of the feed. URL should be written as http or https.
- fields
Delimiter String - The delimiter that separates between the columns in the feed.
- ignore
Errors 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.
- ignore
Lines StringThat Start With - A prefix that will determine which lines to ignore.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Threat StringIoc Feed Id - name String
- Object name.
- password String
- password for authenticating with the URL.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Custom BooleanFeed Settings - Set in order to configure a custom indicator feed.
- use
Gateway BooleanProxy - Use the gateway's proxy for retrieving the feed.
- username String
- username for authenticating with the URL.
- action string
- The feed indicator's action.
- certificate
Id 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.
- custom
Comment number - Custom IOC feed - the column number of comment.
- custom
Confidence number - Custom IOC feed - the column number of confidence.
- custom
Headers ManagementThreat Ioc Feed Custom Header[] - Custom HTTP headers.custom_header blocks are documented below.
- custom
Name number - Custom IOC feed - the column number of name.
- custom
Severity number - Custom IOC feed - the column number of severity.
- custom
Type number - Custom IOC feed - the column number of type in case a specific type is not chosen.
- custom
Value 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.
- feed
Type string - Feed type to be enforced.
- feed
Url string - URL of the feed. URL should be written as http or https.
- fields
Delimiter string - The delimiter that separates between the columns in the feed.
- ignore
Errors 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.
- ignore
Lines stringThat Start With - A prefix that will determine which lines to ignore.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Threat stringIoc Feed Id - name string
- Object name.
- password string
- password for authenticating with the URL.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- use
Custom booleanFeed Settings - Set in order to configure a custom indicator feed.
- use
Gateway booleanProxy - 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[ManagementThreat Ioc Feed Custom Header Args] - 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_ strthat_ start_ with - A prefix that will determine which lines to ignore.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
threat_ strioc_ feed_ id - name str
- Object name.
- password str
- password for authenticating with the URL.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- use_
custom_ boolfeed_ settings - Set in order to configure a custom indicator feed.
- use_
gateway_ boolproxy - Use the gateway's proxy for retrieving the feed.
- username str
- username for authenticating with the URL.
- action String
- The feed indicator's action.
- certificate
Id 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.
- custom
Comment Number - Custom IOC feed - the column number of comment.
- custom
Confidence Number - Custom IOC feed - the column number of confidence.
- custom
Headers List<Property Map> - Custom HTTP headers.custom_header blocks are documented below.
- custom
Name Number - Custom IOC feed - the column number of name.
- custom
Severity Number - Custom IOC feed - the column number of severity.
- custom
Type Number - Custom IOC feed - the column number of type in case a specific type is not chosen.
- custom
Value 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.
- feed
Type String - Feed type to be enforced.
- feed
Url String - URL of the feed. URL should be written as http or https.
- fields
Delimiter String - The delimiter that separates between the columns in the feed.
- ignore
Errors 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.
- ignore
Lines StringThat Start With - A prefix that will determine which lines to ignore.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Threat StringIoc Feed Id - name String
- Object name.
- password String
- password for authenticating with the URL.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Custom BooleanFeed Settings - Set in order to configure a custom indicator feed.
- use
Gateway BooleanProxy - Use the gateway's proxy for retrieving the feed.
- username String
- username for authenticating with the URL.
Supporting Types
ManagementThreatIocFeedCustomHeader, ManagementThreatIocFeedCustomHeaderArgs
- Header
Name string - The name of the HTTP header we wish to add.
- Header
Value string - The name of the HTTP value we wish to add.
- Header
Name string - The name of the HTTP header we wish to add.
- Header
Value string - The name of the HTTP value we wish to add.
- header
Name String - The name of the HTTP header we wish to add.
- header
Value String - The name of the HTTP value we wish to add.
- header
Name string - The name of the HTTP header we wish to add.
- header
Value 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.
- header
Name String - The name of the HTTP header we wish to add.
- header
Value 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.