published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
This resource allows you to execute Check Point Network Probe.
Create ManagementNetworkProbe Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementNetworkProbe(name: string, args: ManagementNetworkProbeArgs, opts?: CustomResourceOptions);@overload
def ManagementNetworkProbe(resource_name: str,
args: ManagementNetworkProbeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementNetworkProbe(resource_name: str,
opts: Optional[ResourceOptions] = None,
install_ons: Optional[Sequence[str]] = None,
icmp_options: Optional[ManagementNetworkProbeIcmpOptionsArgs] = None,
http_options: Optional[ManagementNetworkProbeHttpOptionsArgs] = None,
color: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
comments: Optional[str] = None,
interval: Optional[float] = None,
management_network_probe_id: Optional[str] = None,
name: Optional[str] = None,
protocol: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
timeout: Optional[float] = None)func NewManagementNetworkProbe(ctx *Context, name string, args ManagementNetworkProbeArgs, opts ...ResourceOption) (*ManagementNetworkProbe, error)public ManagementNetworkProbe(string name, ManagementNetworkProbeArgs args, CustomResourceOptions? opts = null)
public ManagementNetworkProbe(String name, ManagementNetworkProbeArgs args)
public ManagementNetworkProbe(String name, ManagementNetworkProbeArgs args, CustomResourceOptions options)
type: checkpoint:ManagementNetworkProbe
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 ManagementNetworkProbeArgs
- 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 ManagementNetworkProbeArgs
- 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 ManagementNetworkProbeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementNetworkProbeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementNetworkProbeArgs
- 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 managementNetworkProbeResource = new Checkpoint.ManagementNetworkProbe("managementNetworkProbeResource", new()
{
InstallOns = new[]
{
"string",
},
IcmpOptions = new Checkpoint.Inputs.ManagementNetworkProbeIcmpOptionsArgs
{
Destination = "string",
Source = "string",
},
HttpOptions = new Checkpoint.Inputs.ManagementNetworkProbeHttpOptionsArgs
{
Destination = "string",
},
Color = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
Comments = "string",
Interval = 0,
ManagementNetworkProbeId = "string",
Name = "string",
Protocol = "string",
Tags = new[]
{
"string",
},
Timeout = 0,
});
example, err := checkpoint.NewManagementNetworkProbe(ctx, "managementNetworkProbeResource", &checkpoint.ManagementNetworkProbeArgs{
InstallOns: pulumi.StringArray{
pulumi.String("string"),
},
IcmpOptions: &checkpoint.ManagementNetworkProbeIcmpOptionsArgs{
Destination: pulumi.String("string"),
Source: pulumi.String("string"),
},
HttpOptions: &checkpoint.ManagementNetworkProbeHttpOptionsArgs{
Destination: pulumi.String("string"),
},
Color: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
Comments: pulumi.String("string"),
Interval: pulumi.Float64(0),
ManagementNetworkProbeId: pulumi.String("string"),
Name: pulumi.String("string"),
Protocol: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Timeout: pulumi.Float64(0),
})
var managementNetworkProbeResource = new ManagementNetworkProbe("managementNetworkProbeResource", ManagementNetworkProbeArgs.builder()
.installOns("string")
.icmpOptions(ManagementNetworkProbeIcmpOptionsArgs.builder()
.destination("string")
.source("string")
.build())
.httpOptions(ManagementNetworkProbeHttpOptionsArgs.builder()
.destination("string")
.build())
.color("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.comments("string")
.interval(0.0)
.managementNetworkProbeId("string")
.name("string")
.protocol("string")
.tags("string")
.timeout(0.0)
.build());
management_network_probe_resource = checkpoint.ManagementNetworkProbe("managementNetworkProbeResource",
install_ons=["string"],
icmp_options={
"destination": "string",
"source": "string",
},
http_options={
"destination": "string",
},
color="string",
ignore_errors=False,
ignore_warnings=False,
comments="string",
interval=float(0),
management_network_probe_id="string",
name="string",
protocol="string",
tags=["string"],
timeout=float(0))
const managementNetworkProbeResource = new checkpoint.ManagementNetworkProbe("managementNetworkProbeResource", {
installOns: ["string"],
icmpOptions: {
destination: "string",
source: "string",
},
httpOptions: {
destination: "string",
},
color: "string",
ignoreErrors: false,
ignoreWarnings: false,
comments: "string",
interval: 0,
managementNetworkProbeId: "string",
name: "string",
protocol: "string",
tags: ["string"],
timeout: 0,
});
type: checkpoint:ManagementNetworkProbe
properties:
color: string
comments: string
httpOptions:
destination: string
icmpOptions:
destination: string
source: string
ignoreErrors: false
ignoreWarnings: false
installOns:
- string
interval: 0
managementNetworkProbeId: string
name: string
protocol: string
tags:
- string
timeout: 0
ManagementNetworkProbe 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 ManagementNetworkProbe resource accepts the following input properties:
- Install
Ons List<string> - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Http
Options ManagementNetwork Probe Http Options - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- Icmp
Options ManagementNetwork Probe Icmp Options - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- Interval double
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- Management
Network stringProbe Id - Name string
- Object name.
- Protocol string
- The probing protocol to use.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Timeout double
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- Install
Ons []string - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Http
Options ManagementNetwork Probe Http Options Args - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- Icmp
Options ManagementNetwork Probe Icmp Options Args - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- Interval float64
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- Management
Network stringProbe Id - Name string
- Object name.
- Protocol string
- The probing protocol to use.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Timeout float64
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- install
Ons List<String> - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- http
Options ManagementNetwork Probe Http Options - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp
Options ManagementNetwork Probe Icmp Options - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- interval Double
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management
Network StringProbe Id - name String
- Object name.
- protocol String
- The probing protocol to use.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- timeout Double
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- install
Ons string[] - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- http
Options ManagementNetwork Probe Http Options - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp
Options ManagementNetwork Probe Icmp Options - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- interval number
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management
Network stringProbe Id - name string
- Object name.
- protocol string
- The probing protocol to use.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- timeout number
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- install_
ons Sequence[str] - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- http_
options ManagementNetwork Probe Http Options Args - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp_
options ManagementNetwork Probe Icmp Options Args - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- interval float
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management_
network_ strprobe_ id - name str
- Object name.
- protocol str
- The probing protocol to use.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- timeout float
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- install
Ons List<String> - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- http
Options Property Map - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp
Options Property Map - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- interval Number
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management
Network StringProbe Id - name String
- Object name.
- protocol String
- The probing protocol to use.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- timeout Number
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementNetworkProbe 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 ManagementNetworkProbe Resource
Get an existing ManagementNetworkProbe 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?: ManagementNetworkProbeState, opts?: CustomResourceOptions): ManagementNetworkProbe@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
http_options: Optional[ManagementNetworkProbeHttpOptionsArgs] = None,
icmp_options: Optional[ManagementNetworkProbeIcmpOptionsArgs] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
install_ons: Optional[Sequence[str]] = None,
interval: Optional[float] = None,
management_network_probe_id: Optional[str] = None,
name: Optional[str] = None,
protocol: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
timeout: Optional[float] = None) -> ManagementNetworkProbefunc GetManagementNetworkProbe(ctx *Context, name string, id IDInput, state *ManagementNetworkProbeState, opts ...ResourceOption) (*ManagementNetworkProbe, error)public static ManagementNetworkProbe Get(string name, Input<string> id, ManagementNetworkProbeState? state, CustomResourceOptions? opts = null)public static ManagementNetworkProbe get(String name, Output<String> id, ManagementNetworkProbeState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementNetworkProbe 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.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Http
Options ManagementNetwork Probe Http Options - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- Icmp
Options ManagementNetwork Probe Icmp Options - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- Install
Ons List<string> - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- Interval double
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- Management
Network stringProbe Id - Name string
- Object name.
- Protocol string
- The probing protocol to use.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Timeout double
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Http
Options ManagementNetwork Probe Http Options Args - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- Icmp
Options ManagementNetwork Probe Icmp Options Args - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- Install
Ons []string - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- Interval float64
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- Management
Network stringProbe Id - Name string
- Object name.
- Protocol string
- The probing protocol to use.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Timeout float64
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- http
Options ManagementNetwork Probe Http Options - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp
Options ManagementNetwork Probe Icmp Options - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- install
Ons List<String> - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- interval Double
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management
Network StringProbe Id - name String
- Object name.
- protocol String
- The probing protocol to use.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- timeout Double
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- http
Options ManagementNetwork Probe Http Options - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp
Options ManagementNetwork Probe Icmp Options - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- install
Ons string[] - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- interval number
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management
Network stringProbe Id - name string
- Object name.
- protocol string
- The probing protocol to use.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- timeout number
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- http_
options ManagementNetwork Probe Http Options Args - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp_
options ManagementNetwork Probe Icmp Options Args - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- install_
ons Sequence[str] - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- interval float
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management_
network_ strprobe_ id - name str
- Object name.
- protocol str
- The probing protocol to use.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- timeout float
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- http
Options Property Map - Additional options when [protocol] is set to "http".http_options blocks are documented below.
- icmp
Options Property Map - Additional options when [protocol] is set to "icmp".icmp_options blocks are documented below.
- 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.
- install
Ons List<String> - Collection of Check Point Security Gateways that generate the probe, identified by name or UID.install_on blocks are documented below.
- interval Number
- The time interval (in seconds) between each probe request.Best Practice - The interval value should be lower than the timeout value.
- management
Network StringProbe Id - name String
- Object name.
- protocol String
- The probing protocol to use.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- timeout Number
- The probe expiration timeout (in seconds). If there is not a single reply within this time, the status of the probe changes to "Down".
Supporting Types
ManagementNetworkProbeHttpOptions, ManagementNetworkProbeHttpOptionsArgs
- Destination string
- The destination URL.
- Destination string
- The destination URL.
- destination String
- The destination URL.
- destination string
- The destination URL.
- destination str
- The destination URL.
- destination String
- The destination URL.
ManagementNetworkProbeIcmpOptions, ManagementNetworkProbeIcmpOptionsArgs
- Destination string
- One of these:Name or UID of an existing object with a unicast IPv4 address (Host, Security Gateway, and so on). A unicast IPv4 address string (if you do not want to create such an object).
- Source string
- One of these: The string "main-ip" (the probe uses the main IPv4 address of the Security Gateway objects you specified in the parameter [install-on]). Name or UID of an existing object of type 'Host' with a unicast IPv4 address. A unicast IPv4 address string (if you do not want to create such an object).
- Destination string
- One of these:Name or UID of an existing object with a unicast IPv4 address (Host, Security Gateway, and so on). A unicast IPv4 address string (if you do not want to create such an object).
- Source string
- One of these: The string "main-ip" (the probe uses the main IPv4 address of the Security Gateway objects you specified in the parameter [install-on]). Name or UID of an existing object of type 'Host' with a unicast IPv4 address. A unicast IPv4 address string (if you do not want to create such an object).
- destination String
- One of these:Name or UID of an existing object with a unicast IPv4 address (Host, Security Gateway, and so on). A unicast IPv4 address string (if you do not want to create such an object).
- source String
- One of these: The string "main-ip" (the probe uses the main IPv4 address of the Security Gateway objects you specified in the parameter [install-on]). Name or UID of an existing object of type 'Host' with a unicast IPv4 address. A unicast IPv4 address string (if you do not want to create such an object).
- destination string
- One of these:Name or UID of an existing object with a unicast IPv4 address (Host, Security Gateway, and so on). A unicast IPv4 address string (if you do not want to create such an object).
- source string
- One of these: The string "main-ip" (the probe uses the main IPv4 address of the Security Gateway objects you specified in the parameter [install-on]). Name or UID of an existing object of type 'Host' with a unicast IPv4 address. A unicast IPv4 address string (if you do not want to create such an object).
- destination str
- One of these:Name or UID of an existing object with a unicast IPv4 address (Host, Security Gateway, and so on). A unicast IPv4 address string (if you do not want to create such an object).
- source str
- One of these: The string "main-ip" (the probe uses the main IPv4 address of the Security Gateway objects you specified in the parameter [install-on]). Name or UID of an existing object of type 'Host' with a unicast IPv4 address. A unicast IPv4 address string (if you do not want to create such an object).
- destination String
- One of these:Name or UID of an existing object with a unicast IPv4 address (Host, Security Gateway, and so on). A unicast IPv4 address string (if you do not want to create such an object).
- source String
- One of these: The string "main-ip" (the probe uses the main IPv4 address of the Security Gateway objects you specified in the parameter [install-on]). Name or UID of an existing object of type 'Host' with a unicast IPv4 address. A unicast IPv4 address string (if you do not want to create such an object).
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Mar 30, 2026 by checkpointsw
