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

checkpoint.ManagementServiceOther

Explore with Pulumi AI

This resource allows you to execute Check Point Service Other.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";

const example = new checkpoint.ManagementServiceOther("example", {
    ipProtocol: 51,
    keepConnectionsOpenAfterPolicyInstallation: false,
    matchForAny: true,
    sessionTimeout: 100,
    syncConnectionsOnCluster: true,
});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

example = checkpoint.ManagementServiceOther("example",
    ip_protocol=51,
    keep_connections_open_after_policy_installation=False,
    match_for_any=True,
    session_timeout=100,
    sync_connections_on_cluster=True)
Copy
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.NewManagementServiceOther(ctx, "example", &checkpoint.ManagementServiceOtherArgs{
			IpProtocol: pulumi.Float64(51),
			KeepConnectionsOpenAfterPolicyInstallation: pulumi.Bool(false),
			MatchForAny:              pulumi.Bool(true),
			SessionTimeout:           pulumi.Float64(100),
			SyncConnectionsOnCluster: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var example = new Checkpoint.ManagementServiceOther("example", new()
    {
        IpProtocol = 51,
        KeepConnectionsOpenAfterPolicyInstallation = false,
        MatchForAny = true,
        SessionTimeout = 100,
        SyncConnectionsOnCluster = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementServiceOther;
import com.pulumi.checkpoint.ManagementServiceOtherArgs;
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 ManagementServiceOther("example", ManagementServiceOtherArgs.builder()
            .ipProtocol(51)
            .keepConnectionsOpenAfterPolicyInstallation(false)
            .matchForAny(true)
            .sessionTimeout(100)
            .syncConnectionsOnCluster(true)
            .build());

    }
}
Copy
resources:
  example:
    type: checkpoint:ManagementServiceOther
    properties:
      ipProtocol: 51
      keepConnectionsOpenAfterPolicyInstallation: false
      matchForAny: true
      sessionTimeout: 100
      syncConnectionsOnCluster: true
Copy

Create ManagementServiceOther Resource

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

Constructor syntax

new ManagementServiceOther(name: string, args?: ManagementServiceOtherArgs, opts?: CustomResourceOptions);
@overload
def ManagementServiceOther(resource_name: str,
                           args: Optional[ManagementServiceOtherArgs] = None,
                           opts: Optional[ResourceOptions] = None)

@overload
def ManagementServiceOther(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           accept_replies: Optional[bool] = None,
                           action: Optional[str] = None,
                           aggressive_aging: Optional[Mapping[str, str]] = None,
                           color: Optional[str] = None,
                           comments: Optional[str] = None,
                           ignore_errors: Optional[bool] = None,
                           ignore_warnings: Optional[bool] = None,
                           ip_protocol: Optional[float] = None,
                           keep_connections_open_after_policy_installation: Optional[bool] = None,
                           management_service_other_id: Optional[str] = None,
                           match: Optional[str] = None,
                           match_for_any: Optional[bool] = None,
                           name: Optional[str] = None,
                           override_default_settings: Optional[bool] = None,
                           session_timeout: Optional[float] = None,
                           sync_connections_on_cluster: Optional[bool] = None,
                           tags: Optional[Sequence[str]] = None,
                           use_default_session_timeout: Optional[bool] = None)
func NewManagementServiceOther(ctx *Context, name string, args *ManagementServiceOtherArgs, opts ...ResourceOption) (*ManagementServiceOther, error)
public ManagementServiceOther(string name, ManagementServiceOtherArgs? args = null, CustomResourceOptions? opts = null)
public ManagementServiceOther(String name, ManagementServiceOtherArgs args)
public ManagementServiceOther(String name, ManagementServiceOtherArgs args, CustomResourceOptions options)
type: checkpoint:ManagementServiceOther
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ManagementServiceOtherArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ManagementServiceOtherArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ManagementServiceOtherArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ManagementServiceOtherArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementServiceOtherArgs
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 managementServiceOtherResource = new Checkpoint.ManagementServiceOther("managementServiceOtherResource", new()
{
    AcceptReplies = false,
    Action = "string",
    AggressiveAging = 
    {
        { "string", "string" },
    },
    Color = "string",
    Comments = "string",
    IgnoreErrors = false,
    IgnoreWarnings = false,
    IpProtocol = 0,
    KeepConnectionsOpenAfterPolicyInstallation = false,
    ManagementServiceOtherId = "string",
    Match = "string",
    MatchForAny = false,
    Name = "string",
    OverrideDefaultSettings = false,
    SessionTimeout = 0,
    SyncConnectionsOnCluster = false,
    Tags = new[]
    {
        "string",
    },
    UseDefaultSessionTimeout = false,
});
Copy
example, err := checkpoint.NewManagementServiceOther(ctx, "managementServiceOtherResource", &checkpoint.ManagementServiceOtherArgs{
AcceptReplies: pulumi.Bool(false),
Action: pulumi.String("string"),
AggressiveAging: pulumi.StringMap{
"string": pulumi.String("string"),
},
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
IpProtocol: pulumi.Float64(0),
KeepConnectionsOpenAfterPolicyInstallation: pulumi.Bool(false),
ManagementServiceOtherId: pulumi.String("string"),
Match: pulumi.String("string"),
MatchForAny: pulumi.Bool(false),
Name: pulumi.String("string"),
OverrideDefaultSettings: pulumi.Bool(false),
SessionTimeout: pulumi.Float64(0),
SyncConnectionsOnCluster: pulumi.Bool(false),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UseDefaultSessionTimeout: pulumi.Bool(false),
})
Copy
var managementServiceOtherResource = new ManagementServiceOther("managementServiceOtherResource", ManagementServiceOtherArgs.builder()
    .acceptReplies(false)
    .action("string")
    .aggressiveAging(Map.of("string", "string"))
    .color("string")
    .comments("string")
    .ignoreErrors(false)
    .ignoreWarnings(false)
    .ipProtocol(0)
    .keepConnectionsOpenAfterPolicyInstallation(false)
    .managementServiceOtherId("string")
    .match("string")
    .matchForAny(false)
    .name("string")
    .overrideDefaultSettings(false)
    .sessionTimeout(0)
    .syncConnectionsOnCluster(false)
    .tags("string")
    .useDefaultSessionTimeout(false)
    .build());
Copy
management_service_other_resource = checkpoint.ManagementServiceOther("managementServiceOtherResource",
    accept_replies=False,
    action="string",
    aggressive_aging={
        "string": "string",
    },
    color="string",
    comments="string",
    ignore_errors=False,
    ignore_warnings=False,
    ip_protocol=0,
    keep_connections_open_after_policy_installation=False,
    management_service_other_id="string",
    match="string",
    match_for_any=False,
    name="string",
    override_default_settings=False,
    session_timeout=0,
    sync_connections_on_cluster=False,
    tags=["string"],
    use_default_session_timeout=False)
Copy
const managementServiceOtherResource = new checkpoint.ManagementServiceOther("managementServiceOtherResource", {
    acceptReplies: false,
    action: "string",
    aggressiveAging: {
        string: "string",
    },
    color: "string",
    comments: "string",
    ignoreErrors: false,
    ignoreWarnings: false,
    ipProtocol: 0,
    keepConnectionsOpenAfterPolicyInstallation: false,
    managementServiceOtherId: "string",
    match: "string",
    matchForAny: false,
    name: "string",
    overrideDefaultSettings: false,
    sessionTimeout: 0,
    syncConnectionsOnCluster: false,
    tags: ["string"],
    useDefaultSessionTimeout: false,
});
Copy
type: checkpoint:ManagementServiceOther
properties:
    acceptReplies: false
    action: string
    aggressiveAging:
        string: string
    color: string
    comments: string
    ignoreErrors: false
    ignoreWarnings: false
    ipProtocol: 0
    keepConnectionsOpenAfterPolicyInstallation: false
    managementServiceOtherId: string
    match: string
    matchForAny: false
    name: string
    overrideDefaultSettings: false
    sessionTimeout: 0
    syncConnectionsOnCluster: false
    tags:
        - string
    useDefaultSessionTimeout: false
Copy

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

AcceptReplies bool
Specifies whether Other Service replies are to be accepted.
Action string
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
AggressiveAging Dictionary<string, string>
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
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.
IpProtocol double
IP protocol number.
KeepConnectionsOpenAfterPolicyInstallation bool
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
ManagementServiceOtherId string
Match string
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
MatchForAny bool
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
Name string
Object name.
OverrideDefaultSettings bool
Indicates whether this service is a Data Domain service which has been overridden.
SessionTimeout double
Time (in seconds) before the session times out.
SyncConnectionsOnCluster bool
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
UseDefaultSessionTimeout bool
Use default virtual session timeout.
AcceptReplies bool
Specifies whether Other Service replies are to be accepted.
Action string
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
AggressiveAging map[string]string
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
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.
IpProtocol float64
IP protocol number.
KeepConnectionsOpenAfterPolicyInstallation bool
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
ManagementServiceOtherId string
Match string
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
MatchForAny bool
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
Name string
Object name.
OverrideDefaultSettings bool
Indicates whether this service is a Data Domain service which has been overridden.
SessionTimeout float64
Time (in seconds) before the session times out.
SyncConnectionsOnCluster bool
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
UseDefaultSessionTimeout bool
Use default virtual session timeout.
acceptReplies Boolean
Specifies whether Other Service replies are to be accepted.
action String
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressiveAging Map<String,String>
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
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.
ipProtocol Double
IP protocol number.
keepConnectionsOpenAfterPolicyInstallation Boolean
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
managementServiceOtherId String
match String
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
matchForAny Boolean
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name String
Object name.
overrideDefaultSettings Boolean
Indicates whether this service is a Data Domain service which has been overridden.
sessionTimeout Double
Time (in seconds) before the session times out.
syncConnectionsOnCluster Boolean
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
useDefaultSessionTimeout Boolean
Use default virtual session timeout.
acceptReplies boolean
Specifies whether Other Service replies are to be accepted.
action string
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressiveAging {[key: string]: string}
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
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.
ipProtocol number
IP protocol number.
keepConnectionsOpenAfterPolicyInstallation boolean
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
managementServiceOtherId string
match string
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
matchForAny boolean
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name string
Object name.
overrideDefaultSettings boolean
Indicates whether this service is a Data Domain service which has been overridden.
sessionTimeout number
Time (in seconds) before the session times out.
syncConnectionsOnCluster boolean
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
useDefaultSessionTimeout boolean
Use default virtual session timeout.
accept_replies bool
Specifies whether Other Service replies are to be accepted.
action str
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressive_aging Mapping[str, str]
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
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.
ip_protocol float
IP protocol number.
keep_connections_open_after_policy_installation bool
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
management_service_other_id str
match str
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
match_for_any bool
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name str
Object name.
override_default_settings bool
Indicates whether this service is a Data Domain service which has been overridden.
session_timeout float
Time (in seconds) before the session times out.
sync_connections_on_cluster bool
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
use_default_session_timeout bool
Use default virtual session timeout.
acceptReplies Boolean
Specifies whether Other Service replies are to be accepted.
action String
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressiveAging Map<String>
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
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.
ipProtocol Number
IP protocol number.
keepConnectionsOpenAfterPolicyInstallation Boolean
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
managementServiceOtherId String
match String
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
matchForAny Boolean
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name String
Object name.
overrideDefaultSettings Boolean
Indicates whether this service is a Data Domain service which has been overridden.
sessionTimeout Number
Time (in seconds) before the session times out.
syncConnectionsOnCluster Boolean
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
useDefaultSessionTimeout Boolean
Use default virtual session timeout.

Outputs

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

Get an existing ManagementServiceOther 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?: ManagementServiceOtherState, opts?: CustomResourceOptions): ManagementServiceOther
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        accept_replies: Optional[bool] = None,
        action: Optional[str] = None,
        aggressive_aging: Optional[Mapping[str, str]] = None,
        color: Optional[str] = None,
        comments: Optional[str] = None,
        ignore_errors: Optional[bool] = None,
        ignore_warnings: Optional[bool] = None,
        ip_protocol: Optional[float] = None,
        keep_connections_open_after_policy_installation: Optional[bool] = None,
        management_service_other_id: Optional[str] = None,
        match: Optional[str] = None,
        match_for_any: Optional[bool] = None,
        name: Optional[str] = None,
        override_default_settings: Optional[bool] = None,
        session_timeout: Optional[float] = None,
        sync_connections_on_cluster: Optional[bool] = None,
        tags: Optional[Sequence[str]] = None,
        use_default_session_timeout: Optional[bool] = None) -> ManagementServiceOther
func GetManagementServiceOther(ctx *Context, name string, id IDInput, state *ManagementServiceOtherState, opts ...ResourceOption) (*ManagementServiceOther, error)
public static ManagementServiceOther Get(string name, Input<string> id, ManagementServiceOtherState? state, CustomResourceOptions? opts = null)
public static ManagementServiceOther get(String name, Output<String> id, ManagementServiceOtherState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementServiceOther    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AcceptReplies bool
Specifies whether Other Service replies are to be accepted.
Action string
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
AggressiveAging Dictionary<string, string>
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
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.
IpProtocol double
IP protocol number.
KeepConnectionsOpenAfterPolicyInstallation bool
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
ManagementServiceOtherId string
Match string
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
MatchForAny bool
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
Name string
Object name.
OverrideDefaultSettings bool
Indicates whether this service is a Data Domain service which has been overridden.
SessionTimeout double
Time (in seconds) before the session times out.
SyncConnectionsOnCluster bool
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
UseDefaultSessionTimeout bool
Use default virtual session timeout.
AcceptReplies bool
Specifies whether Other Service replies are to be accepted.
Action string
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
AggressiveAging map[string]string
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
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.
IpProtocol float64
IP protocol number.
KeepConnectionsOpenAfterPolicyInstallation bool
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
ManagementServiceOtherId string
Match string
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
MatchForAny bool
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
Name string
Object name.
OverrideDefaultSettings bool
Indicates whether this service is a Data Domain service which has been overridden.
SessionTimeout float64
Time (in seconds) before the session times out.
SyncConnectionsOnCluster bool
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
UseDefaultSessionTimeout bool
Use default virtual session timeout.
acceptReplies Boolean
Specifies whether Other Service replies are to be accepted.
action String
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressiveAging Map<String,String>
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
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.
ipProtocol Double
IP protocol number.
keepConnectionsOpenAfterPolicyInstallation Boolean
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
managementServiceOtherId String
match String
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
matchForAny Boolean
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name String
Object name.
overrideDefaultSettings Boolean
Indicates whether this service is a Data Domain service which has been overridden.
sessionTimeout Double
Time (in seconds) before the session times out.
syncConnectionsOnCluster Boolean
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
useDefaultSessionTimeout Boolean
Use default virtual session timeout.
acceptReplies boolean
Specifies whether Other Service replies are to be accepted.
action string
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressiveAging {[key: string]: string}
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
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.
ipProtocol number
IP protocol number.
keepConnectionsOpenAfterPolicyInstallation boolean
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
managementServiceOtherId string
match string
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
matchForAny boolean
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name string
Object name.
overrideDefaultSettings boolean
Indicates whether this service is a Data Domain service which has been overridden.
sessionTimeout number
Time (in seconds) before the session times out.
syncConnectionsOnCluster boolean
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
useDefaultSessionTimeout boolean
Use default virtual session timeout.
accept_replies bool
Specifies whether Other Service replies are to be accepted.
action str
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressive_aging Mapping[str, str]
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
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.
ip_protocol float
IP protocol number.
keep_connections_open_after_policy_installation bool
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
management_service_other_id str
match str
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
match_for_any bool
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name str
Object name.
override_default_settings bool
Indicates whether this service is a Data Domain service which has been overridden.
session_timeout float
Time (in seconds) before the session times out.
sync_connections_on_cluster bool
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
use_default_session_timeout bool
Use default virtual session timeout.
acceptReplies Boolean
Specifies whether Other Service replies are to be accepted.
action String
Contains an INSPECT expression that defines the action to take if a rule containing this service is matched. Example: set r_mhandler &open_ssl_handler sets a handler on the connection.
aggressiveAging Map<String>
Sets short (aggressive) timeouts for idle connections.aggressive_aging blocks are documented below.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
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.
ipProtocol Number
IP protocol number.
keepConnectionsOpenAfterPolicyInstallation Boolean
Keep connections open after policy has been installed even if they are not allowed under the new policy. This overrides the settings in the Connection Persistence page. If you change this property, the change will not affect open connections, but only future connections.
managementServiceOtherId String
match String
Contains an INSPECT expression that defines the matching criteria. The connection is examined against the expression during the first packet. Example: tcp, dport = 21, direction = 0 matches incoming FTP control connections.
matchForAny Boolean
Indicates whether this service is used when 'Any' is set as the rule's service and there are several service objects with the same source port and protocol.
name String
Object name.
overrideDefaultSettings Boolean
Indicates whether this service is a Data Domain service which has been overridden.
sessionTimeout Number
Time (in seconds) before the session times out.
syncConnectionsOnCluster Boolean
Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
useDefaultSessionTimeout Boolean
Use default virtual session timeout.

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.