1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementResourceTcp
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw

checkpoint.ManagementResourceTcp

Explore with Pulumi AI

checkpoint logo
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw

    This resource allows you to execute Check Point Resource Tcp.

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      example:
        type: checkpoint:ManagementResourceTcp
        properties:
          ufp-settings:
            - caching-control: security_gateway_one_request
              ignore-ufp-server-after-failure: true
              number-of-failures-before-ignore: 3
              server: ufpServer
    

    Create ManagementResourceTcp Resource

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

    Constructor syntax

    new ManagementResourceTcp(name: string, args?: ManagementResourceTcpArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementResourceTcp(resource_name: str,
                              args: Optional[ManagementResourceTcpArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementResourceTcp(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              color: Optional[str] = None,
                              comments: Optional[str] = None,
                              cvp_settings: Optional[ManagementResourceTcpCvpSettingsArgs] = None,
                              exception_track: Optional[str] = None,
                              ignore_errors: Optional[bool] = None,
                              ignore_warnings: Optional[bool] = None,
                              management_resource_tcp_id: Optional[str] = None,
                              name: Optional[str] = None,
                              resource_type: Optional[str] = None,
                              tags: Optional[Sequence[str]] = None,
                              ufp_settings: Optional[ManagementResourceTcpUfpSettingsArgs] = None)
    func NewManagementResourceTcp(ctx *Context, name string, args *ManagementResourceTcpArgs, opts ...ResourceOption) (*ManagementResourceTcp, error)
    public ManagementResourceTcp(string name, ManagementResourceTcpArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementResourceTcp(String name, ManagementResourceTcpArgs args)
    public ManagementResourceTcp(String name, ManagementResourceTcpArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementResourceTcp
    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 ManagementResourceTcpArgs
    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 ManagementResourceTcpArgs
    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 ManagementResourceTcpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementResourceTcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementResourceTcpArgs
    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 managementResourceTcpResource = new Checkpoint.ManagementResourceTcp("managementResourceTcpResource", new()
    {
        Color = "string",
        Comments = "string",
        CvpSettings = new Checkpoint.Inputs.ManagementResourceTcpCvpSettingsArgs
        {
            Server = "string",
            AllowedToModifyContent = false,
            ReplyOrder = "string",
        },
        ExceptionTrack = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementResourceTcpId = "string",
        Name = "string",
        ResourceType = "string",
        Tags = new[]
        {
            "string",
        },
        UfpSettings = new Checkpoint.Inputs.ManagementResourceTcpUfpSettingsArgs
        {
            Server = "string",
            CachingControl = "string",
            IgnoreUfpServerAfterFailure = false,
            NumberOfFailuresBeforeIgnore = 0,
            TimeoutBeforeReconnecting = 0,
        },
    });
    
    example, err := checkpoint.NewManagementResourceTcp(ctx, "managementResourceTcpResource", &checkpoint.ManagementResourceTcpArgs{
    	Color:    pulumi.String("string"),
    	Comments: pulumi.String("string"),
    	CvpSettings: &checkpoint.ManagementResourceTcpCvpSettingsArgs{
    		Server:                 pulumi.String("string"),
    		AllowedToModifyContent: pulumi.Bool(false),
    		ReplyOrder:             pulumi.String("string"),
    	},
    	ExceptionTrack:          pulumi.String("string"),
    	IgnoreErrors:            pulumi.Bool(false),
    	IgnoreWarnings:          pulumi.Bool(false),
    	ManagementResourceTcpId: pulumi.String("string"),
    	Name:                    pulumi.String("string"),
    	ResourceType:            pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UfpSettings: &checkpoint.ManagementResourceTcpUfpSettingsArgs{
    		Server:                       pulumi.String("string"),
    		CachingControl:               pulumi.String("string"),
    		IgnoreUfpServerAfterFailure:  pulumi.Bool(false),
    		NumberOfFailuresBeforeIgnore: pulumi.Float64(0),
    		TimeoutBeforeReconnecting:    pulumi.Float64(0),
    	},
    })
    
    var managementResourceTcpResource = new ManagementResourceTcp("managementResourceTcpResource", ManagementResourceTcpArgs.builder()
        .color("string")
        .comments("string")
        .cvpSettings(ManagementResourceTcpCvpSettingsArgs.builder()
            .server("string")
            .allowedToModifyContent(false)
            .replyOrder("string")
            .build())
        .exceptionTrack("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementResourceTcpId("string")
        .name("string")
        .resourceType("string")
        .tags("string")
        .ufpSettings(ManagementResourceTcpUfpSettingsArgs.builder()
            .server("string")
            .cachingControl("string")
            .ignoreUfpServerAfterFailure(false)
            .numberOfFailuresBeforeIgnore(0.0)
            .timeoutBeforeReconnecting(0.0)
            .build())
        .build());
    
    management_resource_tcp_resource = checkpoint.ManagementResourceTcp("managementResourceTcpResource",
        color="string",
        comments="string",
        cvp_settings={
            "server": "string",
            "allowed_to_modify_content": False,
            "reply_order": "string",
        },
        exception_track="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_resource_tcp_id="string",
        name="string",
        resource_type="string",
        tags=["string"],
        ufp_settings={
            "server": "string",
            "caching_control": "string",
            "ignore_ufp_server_after_failure": False,
            "number_of_failures_before_ignore": 0,
            "timeout_before_reconnecting": 0,
        })
    
    const managementResourceTcpResource = new checkpoint.ManagementResourceTcp("managementResourceTcpResource", {
        color: "string",
        comments: "string",
        cvpSettings: {
            server: "string",
            allowedToModifyContent: false,
            replyOrder: "string",
        },
        exceptionTrack: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementResourceTcpId: "string",
        name: "string",
        resourceType: "string",
        tags: ["string"],
        ufpSettings: {
            server: "string",
            cachingControl: "string",
            ignoreUfpServerAfterFailure: false,
            numberOfFailuresBeforeIgnore: 0,
            timeoutBeforeReconnecting: 0,
        },
    });
    
    type: checkpoint:ManagementResourceTcp
    properties:
        color: string
        comments: string
        cvpSettings:
            allowedToModifyContent: false
            replyOrder: string
            server: string
        exceptionTrack: string
        ignoreErrors: false
        ignoreWarnings: false
        managementResourceTcpId: string
        name: string
        resourceType: string
        tags:
            - string
        ufpSettings:
            cachingControl: string
            ignoreUfpServerAfterFailure: false
            numberOfFailuresBeforeIgnore: 0
            server: string
            timeoutBeforeReconnecting: 0
    

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

    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CvpSettings ManagementResourceTcpCvpSettings
    CVP settings. cvp_settings blocks are documented below.
    ExceptionTrack string
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementResourceTcpId string
    Name string
    Object name.
    ResourceType string
    The type of the TCP resource.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    UfpSettings ManagementResourceTcpUfpSettings
    UFP settings. ufp_settings blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CvpSettings ManagementResourceTcpCvpSettingsArgs
    CVP settings. cvp_settings blocks are documented below.
    ExceptionTrack string
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementResourceTcpId string
    Name string
    Object name.
    ResourceType string
    The type of the TCP resource.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    UfpSettings ManagementResourceTcpUfpSettingsArgs
    UFP settings. ufp_settings blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    cvpSettings ManagementResourceTcpCvpSettings
    CVP settings. cvp_settings blocks are documented below.
    exceptionTrack String
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementResourceTcpId String
    name String
    Object name.
    resourceType String
    The type of the TCP resource.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    ufpSettings ManagementResourceTcpUfpSettings
    UFP settings. ufp_settings blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    cvpSettings ManagementResourceTcpCvpSettings
    CVP settings. cvp_settings blocks are documented below.
    exceptionTrack string
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementResourceTcpId string
    name string
    Object name.
    resourceType string
    The type of the TCP resource.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    ufpSettings ManagementResourceTcpUfpSettings
    UFP settings. ufp_settings blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    cvp_settings ManagementResourceTcpCvpSettingsArgs
    CVP settings. cvp_settings blocks are documented below.
    exception_track str
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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_warnings bool
    Apply changes ignoring warnings.
    management_resource_tcp_id str
    name str
    Object name.
    resource_type str
    The type of the TCP resource.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    ufp_settings ManagementResourceTcpUfpSettingsArgs
    UFP settings. ufp_settings blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    cvpSettings Property Map
    CVP settings. cvp_settings blocks are documented below.
    exceptionTrack String
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementResourceTcpId String
    name String
    Object name.
    resourceType String
    The type of the TCP resource.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    ufpSettings Property Map
    UFP settings. ufp_settings blocks are documented below.

    Outputs

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

    Get an existing ManagementResourceTcp 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?: ManagementResourceTcpState, opts?: CustomResourceOptions): ManagementResourceTcp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            cvp_settings: Optional[ManagementResourceTcpCvpSettingsArgs] = None,
            exception_track: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_resource_tcp_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_type: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            ufp_settings: Optional[ManagementResourceTcpUfpSettingsArgs] = None) -> ManagementResourceTcp
    func GetManagementResourceTcp(ctx *Context, name string, id IDInput, state *ManagementResourceTcpState, opts ...ResourceOption) (*ManagementResourceTcp, error)
    public static ManagementResourceTcp Get(string name, Input<string> id, ManagementResourceTcpState? state, CustomResourceOptions? opts = null)
    public static ManagementResourceTcp get(String name, Output<String> id, ManagementResourceTcpState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementResourceTcp    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:
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CvpSettings ManagementResourceTcpCvpSettings
    CVP settings. cvp_settings blocks are documented below.
    ExceptionTrack string
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementResourceTcpId string
    Name string
    Object name.
    ResourceType string
    The type of the TCP resource.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    UfpSettings ManagementResourceTcpUfpSettings
    UFP settings. ufp_settings blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    CvpSettings ManagementResourceTcpCvpSettingsArgs
    CVP settings. cvp_settings blocks are documented below.
    ExceptionTrack string
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementResourceTcpId string
    Name string
    Object name.
    ResourceType string
    The type of the TCP resource.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    UfpSettings ManagementResourceTcpUfpSettingsArgs
    UFP settings. ufp_settings blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    cvpSettings ManagementResourceTcpCvpSettings
    CVP settings. cvp_settings blocks are documented below.
    exceptionTrack String
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementResourceTcpId String
    name String
    Object name.
    resourceType String
    The type of the TCP resource.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    ufpSettings ManagementResourceTcpUfpSettings
    UFP settings. ufp_settings blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    cvpSettings ManagementResourceTcpCvpSettings
    CVP settings. cvp_settings blocks are documented below.
    exceptionTrack string
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementResourceTcpId string
    name string
    Object name.
    resourceType string
    The type of the TCP resource.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    ufpSettings ManagementResourceTcpUfpSettings
    UFP settings. ufp_settings blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    cvp_settings ManagementResourceTcpCvpSettingsArgs
    CVP settings. cvp_settings blocks are documented below.
    exception_track str
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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_warnings bool
    Apply changes ignoring warnings.
    management_resource_tcp_id str
    name str
    Object name.
    resource_type str
    The type of the TCP resource.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    ufp_settings ManagementResourceTcpUfpSettingsArgs
    UFP settings. ufp_settings blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    cvpSettings Property Map
    CVP settings. cvp_settings blocks are documented below.
    exceptionTrack String
    Configures how to track connections that match this rule but fail the content security checks. An example of an exception is a connection with an unsupported scheme or method.
    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.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementResourceTcpId String
    name String
    Object name.
    resourceType String
    The type of the TCP resource.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    ufpSettings Property Map
    UFP settings. ufp_settings blocks are documented below.

    Supporting Types

    ManagementResourceTcpCvpSettings, ManagementResourceTcpCvpSettingsArgs

    Server string
    CVP server identified by name or UID. The CVP server must already be defined as an OPSEC Application.
    AllowedToModifyContent bool
    Configures the CVP server to inspect but not modify content.
    ReplyOrder string
    Designates when the CVP server returns data to the Security Gateway security server.
    Server string
    CVP server identified by name or UID. The CVP server must already be defined as an OPSEC Application.
    AllowedToModifyContent bool
    Configures the CVP server to inspect but not modify content.
    ReplyOrder string
    Designates when the CVP server returns data to the Security Gateway security server.
    server String
    CVP server identified by name or UID. The CVP server must already be defined as an OPSEC Application.
    allowedToModifyContent Boolean
    Configures the CVP server to inspect but not modify content.
    replyOrder String
    Designates when the CVP server returns data to the Security Gateway security server.
    server string
    CVP server identified by name or UID. The CVP server must already be defined as an OPSEC Application.
    allowedToModifyContent boolean
    Configures the CVP server to inspect but not modify content.
    replyOrder string
    Designates when the CVP server returns data to the Security Gateway security server.
    server str
    CVP server identified by name or UID. The CVP server must already be defined as an OPSEC Application.
    allowed_to_modify_content bool
    Configures the CVP server to inspect but not modify content.
    reply_order str
    Designates when the CVP server returns data to the Security Gateway security server.
    server String
    CVP server identified by name or UID. The CVP server must already be defined as an OPSEC Application.
    allowedToModifyContent Boolean
    Configures the CVP server to inspect but not modify content.
    replyOrder String
    Designates when the CVP server returns data to the Security Gateway security server.

    ManagementResourceTcpUfpSettings, ManagementResourceTcpUfpSettingsArgs

    Server string
    UFP server identified by name or UID. The UFP server must already be defined as an OPSEC Application.
    CachingControl string
    Specifies if and how caching is to be enabled.
    IgnoreUfpServerAfterFailure bool
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    NumberOfFailuresBeforeIgnore double
    Signifies at what point the UFP server should be ignored, Applicable only if 'ignore after fail' is enabled.
    TimeoutBeforeReconnecting double
    The amount of time, in seconds, that must pass before a UFP server connection should be attempted, Applicable only if 'ignore after fail' is enabled.
    Server string
    UFP server identified by name or UID. The UFP server must already be defined as an OPSEC Application.
    CachingControl string
    Specifies if and how caching is to be enabled.
    IgnoreUfpServerAfterFailure bool
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    NumberOfFailuresBeforeIgnore float64
    Signifies at what point the UFP server should be ignored, Applicable only if 'ignore after fail' is enabled.
    TimeoutBeforeReconnecting float64
    The amount of time, in seconds, that must pass before a UFP server connection should be attempted, Applicable only if 'ignore after fail' is enabled.
    server String
    UFP server identified by name or UID. The UFP server must already be defined as an OPSEC Application.
    cachingControl String
    Specifies if and how caching is to be enabled.
    ignoreUfpServerAfterFailure Boolean
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    numberOfFailuresBeforeIgnore Double
    Signifies at what point the UFP server should be ignored, Applicable only if 'ignore after fail' is enabled.
    timeoutBeforeReconnecting Double
    The amount of time, in seconds, that must pass before a UFP server connection should be attempted, Applicable only if 'ignore after fail' is enabled.
    server string
    UFP server identified by name or UID. The UFP server must already be defined as an OPSEC Application.
    cachingControl string
    Specifies if and how caching is to be enabled.
    ignoreUfpServerAfterFailure boolean
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    numberOfFailuresBeforeIgnore number
    Signifies at what point the UFP server should be ignored, Applicable only if 'ignore after fail' is enabled.
    timeoutBeforeReconnecting number
    The amount of time, in seconds, that must pass before a UFP server connection should be attempted, Applicable only if 'ignore after fail' is enabled.
    server str
    UFP server identified by name or UID. The UFP server must already be defined as an OPSEC Application.
    caching_control str
    Specifies if and how caching is to be enabled.
    ignore_ufp_server_after_failure bool
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    number_of_failures_before_ignore float
    Signifies at what point the UFP server should be ignored, Applicable only if 'ignore after fail' is enabled.
    timeout_before_reconnecting float
    The amount of time, in seconds, that must pass before a UFP server connection should be attempted, Applicable only if 'ignore after fail' is enabled.
    server String
    UFP server identified by name or UID. The UFP server must already be defined as an OPSEC Application.
    cachingControl String
    Specifies if and how caching is to be enabled.
    ignoreUfpServerAfterFailure Boolean
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    numberOfFailuresBeforeIgnore Number
    Signifies at what point the UFP server should be ignored, Applicable only if 'ignore after fail' is enabled.
    timeoutBeforeReconnecting Number
    The amount of time, in seconds, that must pass before a UFP server connection should be attempted, Applicable only if 'ignore after fail' is enabled.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw