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

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

    Constructor syntax

    new ManagementCheckNetworkFeed(name: string, args: ManagementCheckNetworkFeedArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementCheckNetworkFeed(resource_name: str,
                                   args: ManagementCheckNetworkFeedArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementCheckNetworkFeed(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   network_feed: Optional[ManagementCheckNetworkFeedNetworkFeedArgs] = None,
                                   targets: Optional[Sequence[str]] = None,
                                   management_check_network_feed_id: Optional[str] = None)
    func NewManagementCheckNetworkFeed(ctx *Context, name string, args ManagementCheckNetworkFeedArgs, opts ...ResourceOption) (*ManagementCheckNetworkFeed, error)
    public ManagementCheckNetworkFeed(string name, ManagementCheckNetworkFeedArgs args, CustomResourceOptions? opts = null)
    public ManagementCheckNetworkFeed(String name, ManagementCheckNetworkFeedArgs args)
    public ManagementCheckNetworkFeed(String name, ManagementCheckNetworkFeedArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementCheckNetworkFeed
    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 ManagementCheckNetworkFeedArgs
    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 ManagementCheckNetworkFeedArgs
    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 ManagementCheckNetworkFeedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementCheckNetworkFeedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementCheckNetworkFeedArgs
    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 managementCheckNetworkFeedResource = new Checkpoint.ManagementCheckNetworkFeed("managementCheckNetworkFeedResource", new()
    {
        NetworkFeed = new Checkpoint.Inputs.ManagementCheckNetworkFeedNetworkFeedArgs
        {
            CertificateId = "string",
            CustomHeaders = new[]
            {
                new Checkpoint.Inputs.ManagementCheckNetworkFeedNetworkFeedCustomHeaderArgs
                {
                    HeaderName = "string",
                    HeaderValue = "string",
                },
            },
            DataColumn = 0,
            DomainsToProcesses = new[]
            {
                "string",
            },
            FeedFormat = "string",
            FeedType = "string",
            FeedUrl = "string",
            FieldsDelimiter = "string",
            IgnoreErrors = false,
            IgnoreLinesThatStartWith = "string",
            IgnoreWarnings = false,
            JsonQuery = "string",
            Name = "string",
            Password = "string",
            UpdateInterval = 0,
            UseGatewayProxy = false,
            Username = "string",
        },
        Targets = new[]
        {
            "string",
        },
        ManagementCheckNetworkFeedId = "string",
    });
    
    example, err := checkpoint.NewManagementCheckNetworkFeed(ctx, "managementCheckNetworkFeedResource", &checkpoint.ManagementCheckNetworkFeedArgs{
    	NetworkFeed: &checkpoint.ManagementCheckNetworkFeedNetworkFeedArgs{
    		CertificateId: pulumi.String("string"),
    		CustomHeaders: checkpoint.ManagementCheckNetworkFeedNetworkFeedCustomHeaderArray{
    			&checkpoint.ManagementCheckNetworkFeedNetworkFeedCustomHeaderArgs{
    				HeaderName:  pulumi.String("string"),
    				HeaderValue: pulumi.String("string"),
    			},
    		},
    		DataColumn: pulumi.Float64(0),
    		DomainsToProcesses: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		FeedFormat:               pulumi.String("string"),
    		FeedType:                 pulumi.String("string"),
    		FeedUrl:                  pulumi.String("string"),
    		FieldsDelimiter:          pulumi.String("string"),
    		IgnoreErrors:             pulumi.Bool(false),
    		IgnoreLinesThatStartWith: pulumi.String("string"),
    		IgnoreWarnings:           pulumi.Bool(false),
    		JsonQuery:                pulumi.String("string"),
    		Name:                     pulumi.String("string"),
    		Password:                 pulumi.String("string"),
    		UpdateInterval:           pulumi.Float64(0),
    		UseGatewayProxy:          pulumi.Bool(false),
    		Username:                 pulumi.String("string"),
    	},
    	Targets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ManagementCheckNetworkFeedId: pulumi.String("string"),
    })
    
    var managementCheckNetworkFeedResource = new ManagementCheckNetworkFeed("managementCheckNetworkFeedResource", ManagementCheckNetworkFeedArgs.builder()
        .networkFeed(ManagementCheckNetworkFeedNetworkFeedArgs.builder()
            .certificateId("string")
            .customHeaders(ManagementCheckNetworkFeedNetworkFeedCustomHeaderArgs.builder()
                .headerName("string")
                .headerValue("string")
                .build())
            .dataColumn(0.0)
            .domainsToProcesses("string")
            .feedFormat("string")
            .feedType("string")
            .feedUrl("string")
            .fieldsDelimiter("string")
            .ignoreErrors(false)
            .ignoreLinesThatStartWith("string")
            .ignoreWarnings(false)
            .jsonQuery("string")
            .name("string")
            .password("string")
            .updateInterval(0.0)
            .useGatewayProxy(false)
            .username("string")
            .build())
        .targets("string")
        .managementCheckNetworkFeedId("string")
        .build());
    
    management_check_network_feed_resource = checkpoint.ManagementCheckNetworkFeed("managementCheckNetworkFeedResource",
        network_feed={
            "certificate_id": "string",
            "custom_headers": [{
                "header_name": "string",
                "header_value": "string",
            }],
            "data_column": float(0),
            "domains_to_processes": ["string"],
            "feed_format": "string",
            "feed_type": "string",
            "feed_url": "string",
            "fields_delimiter": "string",
            "ignore_errors": False,
            "ignore_lines_that_start_with": "string",
            "ignore_warnings": False,
            "json_query": "string",
            "name": "string",
            "password": "string",
            "update_interval": float(0),
            "use_gateway_proxy": False,
            "username": "string",
        },
        targets=["string"],
        management_check_network_feed_id="string")
    
    const managementCheckNetworkFeedResource = new checkpoint.ManagementCheckNetworkFeed("managementCheckNetworkFeedResource", {
        networkFeed: {
            certificateId: "string",
            customHeaders: [{
                headerName: "string",
                headerValue: "string",
            }],
            dataColumn: 0,
            domainsToProcesses: ["string"],
            feedFormat: "string",
            feedType: "string",
            feedUrl: "string",
            fieldsDelimiter: "string",
            ignoreErrors: false,
            ignoreLinesThatStartWith: "string",
            ignoreWarnings: false,
            jsonQuery: "string",
            name: "string",
            password: "string",
            updateInterval: 0,
            useGatewayProxy: false,
            username: "string",
        },
        targets: ["string"],
        managementCheckNetworkFeedId: "string",
    });
    
    type: checkpoint:ManagementCheckNetworkFeed
    properties:
        managementCheckNetworkFeedId: string
        networkFeed:
            certificateId: string
            customHeaders:
                - headerName: string
                  headerValue: string
            dataColumn: 0
            domainsToProcesses:
                - string
            feedFormat: string
            feedType: string
            feedUrl: string
            fieldsDelimiter: string
            ignoreErrors: false
            ignoreLinesThatStartWith: string
            ignoreWarnings: false
            jsonQuery: string
            name: string
            password: string
            updateInterval: 0
            useGatewayProxy: false
            username: string
        targets:
            - string
    

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

    NetworkFeed ManagementCheckNetworkFeedNetworkFeed
    network feed parameters.network_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.
    ManagementCheckNetworkFeedId string
    NetworkFeed ManagementCheckNetworkFeedNetworkFeedArgs
    network feed parameters.network_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.
    ManagementCheckNetworkFeedId string
    networkFeed ManagementCheckNetworkFeedNetworkFeed
    network feed parameters.network_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.
    managementCheckNetworkFeedId String
    networkFeed ManagementCheckNetworkFeedNetworkFeed
    network feed parameters.network_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.
    managementCheckNetworkFeedId string
    network_feed ManagementCheckNetworkFeedNetworkFeedArgs
    network feed parameters.network_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_network_feed_id str
    networkFeed Property Map
    network feed parameters.network_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.
    managementCheckNetworkFeedId String

    Outputs

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

    Get an existing ManagementCheckNetworkFeed 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?: ManagementCheckNetworkFeedState, opts?: CustomResourceOptions): ManagementCheckNetworkFeed
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            management_check_network_feed_id: Optional[str] = None,
            network_feed: Optional[ManagementCheckNetworkFeedNetworkFeedArgs] = None,
            targets: Optional[Sequence[str]] = None,
            task_id: Optional[str] = None) -> ManagementCheckNetworkFeed
    func GetManagementCheckNetworkFeed(ctx *Context, name string, id IDInput, state *ManagementCheckNetworkFeedState, opts ...ResourceOption) (*ManagementCheckNetworkFeed, error)
    public static ManagementCheckNetworkFeed Get(string name, Input<string> id, ManagementCheckNetworkFeedState? state, CustomResourceOptions? opts = null)
    public static ManagementCheckNetworkFeed get(String name, Output<String> id, ManagementCheckNetworkFeedState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementCheckNetworkFeed    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:
    ManagementCheckNetworkFeedId string
    NetworkFeed ManagementCheckNetworkFeedNetworkFeed
    network feed parameters.network_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.
    TaskId string
    Command asynchronous task unique identifier.
    ManagementCheckNetworkFeedId string
    NetworkFeed ManagementCheckNetworkFeedNetworkFeedArgs
    network feed parameters.network_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.
    TaskId string
    Command asynchronous task unique identifier.
    managementCheckNetworkFeedId String
    networkFeed ManagementCheckNetworkFeedNetworkFeed
    network feed parameters.network_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.
    taskId String
    Command asynchronous task unique identifier.
    managementCheckNetworkFeedId string
    networkFeed ManagementCheckNetworkFeedNetworkFeed
    network feed parameters.network_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.
    taskId string
    Command asynchronous task unique identifier.
    management_check_network_feed_id str
    network_feed ManagementCheckNetworkFeedNetworkFeedArgs
    network feed parameters.network_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.
    task_id str
    Command asynchronous task unique identifier.
    managementCheckNetworkFeedId String
    networkFeed Property Map
    network feed parameters.network_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.
    taskId String
    Command asynchronous task unique identifier.

    Supporting Types

    ManagementCheckNetworkFeedNetworkFeed, ManagementCheckNetworkFeedNetworkFeedArgs

    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    CustomHeaders List<ManagementCheckNetworkFeedNetworkFeedCustomHeader>
    Headers to allow different authentication methods with the URL.custom_header blocks are documented below.
    DataColumn double
    Number of the column that contains the feed's data.
    DomainsToProcesses List<string>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.domains_to_process blocks are documented below.
    FeedFormat string
    Feed file format.
    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.
    JsonQuery string
    JQ query to be parsed.
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    UpdateInterval double
    Interval in minutes for updating the feed on the Security Gateway.
    UseGatewayProxy bool
    Use the gateway's proxy for retrieving the feed.
    Username string
    username for authenticating with the URL.
    CertificateId string
    Certificate SHA-1 fingerprint to access the feed.
    CustomHeaders []ManagementCheckNetworkFeedNetworkFeedCustomHeader
    Headers to allow different authentication methods with the URL.custom_header blocks are documented below.
    DataColumn float64
    Number of the column that contains the feed's data.
    DomainsToProcesses []string
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.domains_to_process blocks are documented below.
    FeedFormat string
    Feed file format.
    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.
    JsonQuery string
    JQ query to be parsed.
    Name string
    Object name.
    Password string
    password for authenticating with the URL.
    UpdateInterval float64
    Interval in minutes for updating the feed on the Security Gateway.
    UseGatewayProxy bool
    Use the gateway's proxy for retrieving the feed.
    Username string
    username for authenticating with the URL.
    certificateId String
    Certificate SHA-1 fingerprint to access the feed.
    customHeaders List<ManagementCheckNetworkFeedNetworkFeedCustomHeader>
    Headers to allow different authentication methods with the URL.custom_header blocks are documented below.
    dataColumn Double
    Number of the column that contains the feed's data.
    domainsToProcesses List<String>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.domains_to_process blocks are documented below.
    feedFormat String
    Feed file format.
    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.
    jsonQuery String
    JQ query to be parsed.
    name String
    Object name.
    password String
    password for authenticating with the URL.
    updateInterval Double
    Interval in minutes for updating the feed on the Security Gateway.
    useGatewayProxy Boolean
    Use the gateway's proxy for retrieving the feed.
    username String
    username for authenticating with the URL.
    certificateId string
    Certificate SHA-1 fingerprint to access the feed.
    customHeaders ManagementCheckNetworkFeedNetworkFeedCustomHeader[]
    Headers to allow different authentication methods with the URL.custom_header blocks are documented below.
    dataColumn number
    Number of the column that contains the feed's data.
    domainsToProcesses string[]
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.domains_to_process blocks are documented below.
    feedFormat string
    Feed file format.
    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.
    jsonQuery string
    JQ query to be parsed.
    name string
    Object name.
    password string
    password for authenticating with the URL.
    updateInterval number
    Interval in minutes for updating the feed on the Security Gateway.
    useGatewayProxy boolean
    Use the gateway's proxy for retrieving the feed.
    username string
    username for authenticating with the URL.
    certificate_id str
    Certificate SHA-1 fingerprint to access the feed.
    custom_headers Sequence[ManagementCheckNetworkFeedNetworkFeedCustomHeader]
    Headers to allow different authentication methods with the URL.custom_header blocks are documented below.
    data_column float
    Number of the column that contains the feed's data.
    domains_to_processes Sequence[str]
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.domains_to_process blocks are documented below.
    feed_format str
    Feed file format.
    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.
    json_query str
    JQ query to be parsed.
    name str
    Object name.
    password str
    password for authenticating with the URL.
    update_interval float
    Interval in minutes for updating the feed on the Security Gateway.
    use_gateway_proxy bool
    Use the gateway's proxy for retrieving the feed.
    username str
    username for authenticating with the URL.
    certificateId String
    Certificate SHA-1 fingerprint to access the feed.
    customHeaders List<Property Map>
    Headers to allow different authentication methods with the URL.custom_header blocks are documented below.
    dataColumn Number
    Number of the column that contains the feed's data.
    domainsToProcesses List<String>
    Indicates which domains to process the commands on. It cannot be used with the details-level full, must be run from the System Domain only and with ignore-warnings true. Valid values are: CURRENT_DOMAIN, ALL_DOMAINS_ON_THIS_SERVER.domains_to_process blocks are documented below.
    feedFormat String
    Feed file format.
    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.
    jsonQuery String
    JQ query to be parsed.
    name String
    Object name.
    password String
    password for authenticating with the URL.
    updateInterval Number
    Interval in minutes for updating the feed on the Security Gateway.
    useGatewayProxy Boolean
    Use the gateway's proxy for retrieving the feed.
    username String
    username for authenticating with the URL.

    ManagementCheckNetworkFeedNetworkFeedCustomHeader, ManagementCheckNetworkFeedNetworkFeedCustomHeaderArgs

    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.