checkpoint.ManagementServiceSctp
Explore with Pulumi AI
This resource allows you to execute Check Point Service Sctp.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementServiceSctp("example", {
keepConnectionsOpenAfterPolicyInstallation: false,
matchForAny: true,
port: "5669",
sessionTimeout: 100,
syncConnectionsOnCluster: true,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementServiceSctp("example",
keep_connections_open_after_policy_installation=False,
match_for_any=True,
port="5669",
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.NewManagementServiceSctp(ctx, "example", &checkpoint.ManagementServiceSctpArgs{
KeepConnectionsOpenAfterPolicyInstallation: pulumi.Bool(false),
MatchForAny: pulumi.Bool(true),
Port: pulumi.String("5669"),
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.ManagementServiceSctp("example", new()
{
KeepConnectionsOpenAfterPolicyInstallation = false,
MatchForAny = true,
Port = "5669",
SessionTimeout = 100,
SyncConnectionsOnCluster = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementServiceSctp;
import com.pulumi.checkpoint.ManagementServiceSctpArgs;
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 ManagementServiceSctp("example", ManagementServiceSctpArgs.builder()
.keepConnectionsOpenAfterPolicyInstallation(false)
.matchForAny(true)
.port("5669")
.sessionTimeout(100)
.syncConnectionsOnCluster(true)
.build());
}
}
resources:
example:
type: checkpoint:ManagementServiceSctp
properties:
keepConnectionsOpenAfterPolicyInstallation: false
matchForAny: true
port: '5669'
sessionTimeout: 100
syncConnectionsOnCluster: true
Create ManagementServiceSctp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementServiceSctp(name: string, args?: ManagementServiceSctpArgs, opts?: CustomResourceOptions);
@overload
def ManagementServiceSctp(resource_name: str,
args: Optional[ManagementServiceSctpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementServiceSctp(resource_name: str,
opts: Optional[ResourceOptions] = 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,
keep_connections_open_after_policy_installation: Optional[bool] = None,
management_service_sctp_id: Optional[str] = None,
match_for_any: Optional[bool] = None,
name: Optional[str] = None,
port: Optional[str] = None,
session_timeout: Optional[float] = None,
source_port: Optional[str] = None,
sync_connections_on_cluster: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
use_default_session_timeout: Optional[bool] = None)
func NewManagementServiceSctp(ctx *Context, name string, args *ManagementServiceSctpArgs, opts ...ResourceOption) (*ManagementServiceSctp, error)
public ManagementServiceSctp(string name, ManagementServiceSctpArgs? args = null, CustomResourceOptions? opts = null)
public ManagementServiceSctp(String name, ManagementServiceSctpArgs args)
public ManagementServiceSctp(String name, ManagementServiceSctpArgs args, CustomResourceOptions options)
type: checkpoint:ManagementServiceSctp
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 ManagementServiceSctpArgs
- 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 ManagementServiceSctpArgs
- 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 ManagementServiceSctpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementServiceSctpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementServiceSctpArgs
- 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 managementServiceSctpResource = new Checkpoint.ManagementServiceSctp("managementServiceSctpResource", new()
{
AggressiveAging =
{
{ "string", "string" },
},
Color = "string",
Comments = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
KeepConnectionsOpenAfterPolicyInstallation = false,
ManagementServiceSctpId = "string",
MatchForAny = false,
Name = "string",
Port = "string",
SessionTimeout = 0,
SourcePort = "string",
SyncConnectionsOnCluster = false,
Tags = new[]
{
"string",
},
UseDefaultSessionTimeout = false,
});
example, err := checkpoint.NewManagementServiceSctp(ctx, "managementServiceSctpResource", &checkpoint.ManagementServiceSctpArgs{
AggressiveAging: pulumi.StringMap{
"string": pulumi.String("string"),
},
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
KeepConnectionsOpenAfterPolicyInstallation: pulumi.Bool(false),
ManagementServiceSctpId: pulumi.String("string"),
MatchForAny: pulumi.Bool(false),
Name: pulumi.String("string"),
Port: pulumi.String("string"),
SessionTimeout: pulumi.Float64(0),
SourcePort: pulumi.String("string"),
SyncConnectionsOnCluster: pulumi.Bool(false),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UseDefaultSessionTimeout: pulumi.Bool(false),
})
var managementServiceSctpResource = new ManagementServiceSctp("managementServiceSctpResource", ManagementServiceSctpArgs.builder()
.aggressiveAging(Map.of("string", "string"))
.color("string")
.comments("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.keepConnectionsOpenAfterPolicyInstallation(false)
.managementServiceSctpId("string")
.matchForAny(false)
.name("string")
.port("string")
.sessionTimeout(0)
.sourcePort("string")
.syncConnectionsOnCluster(false)
.tags("string")
.useDefaultSessionTimeout(false)
.build());
management_service_sctp_resource = checkpoint.ManagementServiceSctp("managementServiceSctpResource",
aggressive_aging={
"string": "string",
},
color="string",
comments="string",
ignore_errors=False,
ignore_warnings=False,
keep_connections_open_after_policy_installation=False,
management_service_sctp_id="string",
match_for_any=False,
name="string",
port="string",
session_timeout=0,
source_port="string",
sync_connections_on_cluster=False,
tags=["string"],
use_default_session_timeout=False)
const managementServiceSctpResource = new checkpoint.ManagementServiceSctp("managementServiceSctpResource", {
aggressiveAging: {
string: "string",
},
color: "string",
comments: "string",
ignoreErrors: false,
ignoreWarnings: false,
keepConnectionsOpenAfterPolicyInstallation: false,
managementServiceSctpId: "string",
matchForAny: false,
name: "string",
port: "string",
sessionTimeout: 0,
sourcePort: "string",
syncConnectionsOnCluster: false,
tags: ["string"],
useDefaultSessionTimeout: false,
});
type: checkpoint:ManagementServiceSctp
properties:
aggressiveAging:
string: string
color: string
comments: string
ignoreErrors: false
ignoreWarnings: false
keepConnectionsOpenAfterPolicyInstallation: false
managementServiceSctpId: string
matchForAny: false
name: string
port: string
sessionTimeout: 0
sourcePort: string
syncConnectionsOnCluster: false
tags:
- string
useDefaultSessionTimeout: false
ManagementServiceSctp 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 ManagementServiceSctp resource accepts the following input properties:
- 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.
- 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 stringSctp Id - 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.
- Port string
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- Session
Timeout double - Time (in seconds) before the session times out.
- Source
Port string - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 stringSctp Id - 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.
- Port string
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- Session
Timeout float64 - Time (in seconds) before the session times out.
- Source
Port string - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 StringSctp Id - 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.
- port String
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session
Timeout Double - Time (in seconds) before the session times out.
- source
Port String - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 stringSctp Id - 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.
- port string
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session
Timeout number - Time (in seconds) before the session times out.
- source
Port string - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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_ strsctp_ id - 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.
- port str
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session_
timeout float - Time (in seconds) before the session times out.
- source_
port str - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 StringSctp Id - 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.
- port String
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session
Timeout Number - Time (in seconds) before the session times out.
- source
Port String - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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 ManagementServiceSctp 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 ManagementServiceSctp Resource
Get an existing ManagementServiceSctp 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?: ManagementServiceSctpState, opts?: CustomResourceOptions): ManagementServiceSctp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = 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,
keep_connections_open_after_policy_installation: Optional[bool] = None,
management_service_sctp_id: Optional[str] = None,
match_for_any: Optional[bool] = None,
name: Optional[str] = None,
port: Optional[str] = None,
session_timeout: Optional[float] = None,
source_port: Optional[str] = None,
sync_connections_on_cluster: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
use_default_session_timeout: Optional[bool] = None) -> ManagementServiceSctp
func GetManagementServiceSctp(ctx *Context, name string, id IDInput, state *ManagementServiceSctpState, opts ...ResourceOption) (*ManagementServiceSctp, error)
public static ManagementServiceSctp Get(string name, Input<string> id, ManagementServiceSctpState? state, CustomResourceOptions? opts = null)
public static ManagementServiceSctp get(String name, Output<String> id, ManagementServiceSctpState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementServiceSctp 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.
- 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.
- 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 stringSctp Id - 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.
- Port string
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- Session
Timeout double - Time (in seconds) before the session times out.
- Source
Port string - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 stringSctp Id - 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.
- Port string
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- Session
Timeout float64 - Time (in seconds) before the session times out.
- Source
Port string - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 StringSctp Id - 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.
- port String
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session
Timeout Double - Time (in seconds) before the session times out.
- source
Port String - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 stringSctp Id - 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.
- port string
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session
Timeout number - Time (in seconds) before the session times out.
- source
Port string - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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_ strsctp_ id - 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.
- port str
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session_
timeout float - Time (in seconds) before the session times out.
- source_
port str - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.
- 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.
- 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 StringSctp Id - 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.
- port String
- Port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- session
Timeout Number - Time (in seconds) before the session times out.
- source
Port String - Source port number. To specify a port range add a hyphen between the lowest and the highest port numbers, for example 44-45.
- 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.