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,
});
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)
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
})
}
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,
});
});
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());
}
}
resources:
example:
type: checkpoint:ManagementServiceOther
properties:
ipProtocol: 51
keepConnectionsOpenAfterPolicyInstallation: false
matchForAny: true
sessionTimeout: 100
syncConnectionsOnCluster: true
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 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 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 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 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 String
- The unique name of the resource.
- args 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,
});
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),
})
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());
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)
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,
});
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
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:
- Accept
Replies 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.
- Aggressive
Aging 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.
- 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 double - IP protocol number.
- Keep
Connections boolOpen After Policy Installation - 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 stringOther Id - 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.
- Match
For boolAny - 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.
- Override
Default boolSettings - Indicates whether this service is a Data Domain service which has been overridden.
- Session
Timeout double - Time (in seconds) before the session times out.
- Sync
Connections boolOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Use
Default boolSession Timeout - Use default virtual session timeout.
- Accept
Replies 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.
- Aggressive
Aging 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.
- 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 float64 - IP protocol number.
- Keep
Connections boolOpen After Policy Installation - 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 stringOther Id - 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.
- Match
For boolAny - 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.
- Override
Default boolSettings - Indicates whether this service is a Data Domain service which has been overridden.
- Session
Timeout float64 - Time (in seconds) before the session times out.
- Sync
Connections boolOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Use
Default boolSession Timeout - Use default virtual session timeout.
- accept
Replies 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.
- aggressive
Aging 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.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ip
Protocol Double - IP protocol number.
- keep
Connections BooleanOpen After Policy Installation - 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 StringOther Id - 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.
- match
For BooleanAny - 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.
- override
Default BooleanSettings - Indicates whether this service is a Data Domain service which has been overridden.
- session
Timeout Double - Time (in seconds) before the session times out.
- sync
Connections BooleanOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Default BooleanSession Timeout - Use default virtual session timeout.
- accept
Replies 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.
- aggressive
Aging {[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.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- ip
Protocol number - IP protocol number.
- keep
Connections booleanOpen After Policy Installation - 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 stringOther Id - 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.
- match
For booleanAny - 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.
- override
Default booleanSettings - Indicates whether this service is a Data Domain service which has been overridden.
- session
Timeout number - Time (in seconds) before the session times out.
- sync
Connections booleanOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- use
Default booleanSession Timeout - 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_ boolopen_ after_ policy_ installation - 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_ strother_ id - 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_ boolany - 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_ boolsettings - 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_ boolon_ cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- use_
default_ boolsession_ timeout - Use default virtual session timeout.
- accept
Replies 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.
- aggressive
Aging 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.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ip
Protocol Number - IP protocol number.
- keep
Connections BooleanOpen After Policy Installation - 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 StringOther Id - 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.
- match
For BooleanAny - 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.
- override
Default BooleanSettings - Indicates whether this service is a Data Domain service which has been overridden.
- session
Timeout Number - Time (in seconds) before the session times out.
- sync
Connections BooleanOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Default BooleanSession Timeout - 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
- 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.
- Accept
Replies 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.
- Aggressive
Aging 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.
- 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 double - IP protocol number.
- Keep
Connections boolOpen After Policy Installation - 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 stringOther Id - 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.
- Match
For boolAny - 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.
- Override
Default boolSettings - Indicates whether this service is a Data Domain service which has been overridden.
- Session
Timeout double - Time (in seconds) before the session times out.
- Sync
Connections boolOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Use
Default boolSession Timeout - Use default virtual session timeout.
- Accept
Replies 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.
- Aggressive
Aging 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.
- 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 float64 - IP protocol number.
- Keep
Connections boolOpen After Policy Installation - 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 stringOther Id - 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.
- Match
For boolAny - 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.
- Override
Default boolSettings - Indicates whether this service is a Data Domain service which has been overridden.
- Session
Timeout float64 - Time (in seconds) before the session times out.
- Sync
Connections boolOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Use
Default boolSession Timeout - Use default virtual session timeout.
- accept
Replies 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.
- aggressive
Aging 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.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ip
Protocol Double - IP protocol number.
- keep
Connections BooleanOpen After Policy Installation - 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 StringOther Id - 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.
- match
For BooleanAny - 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.
- override
Default BooleanSettings - Indicates whether this service is a Data Domain service which has been overridden.
- session
Timeout Double - Time (in seconds) before the session times out.
- sync
Connections BooleanOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Default BooleanSession Timeout - Use default virtual session timeout.
- accept
Replies 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.
- aggressive
Aging {[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.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- ip
Protocol number - IP protocol number.
- keep
Connections booleanOpen After Policy Installation - 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 stringOther Id - 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.
- match
For booleanAny - 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.
- override
Default booleanSettings - Indicates whether this service is a Data Domain service which has been overridden.
- session
Timeout number - Time (in seconds) before the session times out.
- sync
Connections booleanOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- use
Default booleanSession Timeout - 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_ boolopen_ after_ policy_ installation - 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_ strother_ id - 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_ boolany - 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_ boolsettings - 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_ boolon_ cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- use_
default_ boolsession_ timeout - Use default virtual session timeout.
- accept
Replies 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.
- aggressive
Aging 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.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- ip
Protocol Number - IP protocol number.
- keep
Connections BooleanOpen After Policy Installation - 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 StringOther Id - 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.
- match
For BooleanAny - 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.
- override
Default BooleanSettings - Indicates whether this service is a Data Domain service which has been overridden.
- session
Timeout Number - Time (in seconds) before the session times out.
- sync
Connections BooleanOn Cluster - Enables state-synchronized High Availability or Load Sharing on a ClusterXL or OPSEC-certified cluster.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- use
Default BooleanSession Timeout - 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.