published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Create ManagementSetHttpsAdvancedSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetHttpsAdvancedSettings(name: string, args?: ManagementSetHttpsAdvancedSettingsArgs, opts?: CustomResourceOptions);@overload
def ManagementSetHttpsAdvancedSettings(resource_name: str,
args: Optional[ManagementSetHttpsAdvancedSettingsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetHttpsAdvancedSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
blocked_certificate_tracking: Optional[str] = None,
blocked_certificates: Optional[Sequence[ManagementSetHttpsAdvancedSettingsBlockedCertificateArgs]] = None,
bypass_on_client_failure: Optional[bool] = None,
bypass_on_failure: Optional[bool] = None,
bypass_under_load: Optional[ManagementSetHttpsAdvancedSettingsBypassUnderLoadArgs] = None,
bypass_update_services: Optional[bool] = None,
certificate_pinned_apps_action: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
log_sessions: Optional[bool] = None,
management_set_https_advanced_settings_id: Optional[str] = None,
retrieve_intermediate_ca_certificates: Optional[bool] = None,
server_certificate_validation_actions: Optional[ManagementSetHttpsAdvancedSettingsServerCertificateValidationActionsArgs] = None,
site_categorization_allow_mode: Optional[str] = None)func NewManagementSetHttpsAdvancedSettings(ctx *Context, name string, args *ManagementSetHttpsAdvancedSettingsArgs, opts ...ResourceOption) (*ManagementSetHttpsAdvancedSettings, error)public ManagementSetHttpsAdvancedSettings(string name, ManagementSetHttpsAdvancedSettingsArgs? args = null, CustomResourceOptions? opts = null)
public ManagementSetHttpsAdvancedSettings(String name, ManagementSetHttpsAdvancedSettingsArgs args)
public ManagementSetHttpsAdvancedSettings(String name, ManagementSetHttpsAdvancedSettingsArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetHttpsAdvancedSettings
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 ManagementSetHttpsAdvancedSettingsArgs
- 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 ManagementSetHttpsAdvancedSettingsArgs
- 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 ManagementSetHttpsAdvancedSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetHttpsAdvancedSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetHttpsAdvancedSettingsArgs
- 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 managementSetHttpsAdvancedSettingsResource = new Checkpoint.ManagementSetHttpsAdvancedSettings("managementSetHttpsAdvancedSettingsResource", new()
{
BlockedCertificateTracking = "string",
BlockedCertificates = new[]
{
new Checkpoint.Inputs.ManagementSetHttpsAdvancedSettingsBlockedCertificateArgs
{
CertSerialNumber = "string",
Comments = "string",
Name = "string",
},
},
BypassOnClientFailure = false,
BypassOnFailure = false,
BypassUnderLoad = new Checkpoint.Inputs.ManagementSetHttpsAdvancedSettingsBypassUnderLoadArgs
{
Track = "string",
},
BypassUpdateServices = false,
CertificatePinnedAppsAction = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
LogSessions = false,
ManagementSetHttpsAdvancedSettingsId = "string",
RetrieveIntermediateCaCertificates = false,
ServerCertificateValidationActions = new Checkpoint.Inputs.ManagementSetHttpsAdvancedSettingsServerCertificateValidationActionsArgs
{
BlockExpired = false,
BlockRevoked = false,
BlockUntrusted = false,
TrackErrors = "string",
},
SiteCategorizationAllowMode = "string",
});
example, err := checkpoint.NewManagementSetHttpsAdvancedSettings(ctx, "managementSetHttpsAdvancedSettingsResource", &checkpoint.ManagementSetHttpsAdvancedSettingsArgs{
BlockedCertificateTracking: pulumi.String("string"),
BlockedCertificates: checkpoint.ManagementSetHttpsAdvancedSettingsBlockedCertificateArray{
&checkpoint.ManagementSetHttpsAdvancedSettingsBlockedCertificateArgs{
CertSerialNumber: pulumi.String("string"),
Comments: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
BypassOnClientFailure: pulumi.Bool(false),
BypassOnFailure: pulumi.Bool(false),
BypassUnderLoad: &checkpoint.ManagementSetHttpsAdvancedSettingsBypassUnderLoadArgs{
Track: pulumi.String("string"),
},
BypassUpdateServices: pulumi.Bool(false),
CertificatePinnedAppsAction: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
LogSessions: pulumi.Bool(false),
ManagementSetHttpsAdvancedSettingsId: pulumi.String("string"),
RetrieveIntermediateCaCertificates: pulumi.Bool(false),
ServerCertificateValidationActions: &checkpoint.ManagementSetHttpsAdvancedSettingsServerCertificateValidationActionsArgs{
BlockExpired: pulumi.Bool(false),
BlockRevoked: pulumi.Bool(false),
BlockUntrusted: pulumi.Bool(false),
TrackErrors: pulumi.String("string"),
},
SiteCategorizationAllowMode: pulumi.String("string"),
})
var managementSetHttpsAdvancedSettingsResource = new ManagementSetHttpsAdvancedSettings("managementSetHttpsAdvancedSettingsResource", ManagementSetHttpsAdvancedSettingsArgs.builder()
.blockedCertificateTracking("string")
.blockedCertificates(ManagementSetHttpsAdvancedSettingsBlockedCertificateArgs.builder()
.certSerialNumber("string")
.comments("string")
.name("string")
.build())
.bypassOnClientFailure(false)
.bypassOnFailure(false)
.bypassUnderLoad(ManagementSetHttpsAdvancedSettingsBypassUnderLoadArgs.builder()
.track("string")
.build())
.bypassUpdateServices(false)
.certificatePinnedAppsAction("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.logSessions(false)
.managementSetHttpsAdvancedSettingsId("string")
.retrieveIntermediateCaCertificates(false)
.serverCertificateValidationActions(ManagementSetHttpsAdvancedSettingsServerCertificateValidationActionsArgs.builder()
.blockExpired(false)
.blockRevoked(false)
.blockUntrusted(false)
.trackErrors("string")
.build())
.siteCategorizationAllowMode("string")
.build());
management_set_https_advanced_settings_resource = checkpoint.ManagementSetHttpsAdvancedSettings("managementSetHttpsAdvancedSettingsResource",
blocked_certificate_tracking="string",
blocked_certificates=[{
"cert_serial_number": "string",
"comments": "string",
"name": "string",
}],
bypass_on_client_failure=False,
bypass_on_failure=False,
bypass_under_load={
"track": "string",
},
bypass_update_services=False,
certificate_pinned_apps_action="string",
ignore_errors=False,
ignore_warnings=False,
log_sessions=False,
management_set_https_advanced_settings_id="string",
retrieve_intermediate_ca_certificates=False,
server_certificate_validation_actions={
"block_expired": False,
"block_revoked": False,
"block_untrusted": False,
"track_errors": "string",
},
site_categorization_allow_mode="string")
const managementSetHttpsAdvancedSettingsResource = new checkpoint.ManagementSetHttpsAdvancedSettings("managementSetHttpsAdvancedSettingsResource", {
blockedCertificateTracking: "string",
blockedCertificates: [{
certSerialNumber: "string",
comments: "string",
name: "string",
}],
bypassOnClientFailure: false,
bypassOnFailure: false,
bypassUnderLoad: {
track: "string",
},
bypassUpdateServices: false,
certificatePinnedAppsAction: "string",
ignoreErrors: false,
ignoreWarnings: false,
logSessions: false,
managementSetHttpsAdvancedSettingsId: "string",
retrieveIntermediateCaCertificates: false,
serverCertificateValidationActions: {
blockExpired: false,
blockRevoked: false,
blockUntrusted: false,
trackErrors: "string",
},
siteCategorizationAllowMode: "string",
});
type: checkpoint:ManagementSetHttpsAdvancedSettings
properties:
blockedCertificateTracking: string
blockedCertificates:
- certSerialNumber: string
comments: string
name: string
bypassOnClientFailure: false
bypassOnFailure: false
bypassUnderLoad:
track: string
bypassUpdateServices: false
certificatePinnedAppsAction: string
ignoreErrors: false
ignoreWarnings: false
logSessions: false
managementSetHttpsAdvancedSettingsId: string
retrieveIntermediateCaCertificates: false
serverCertificateValidationActions:
blockExpired: false
blockRevoked: false
blockUntrusted: false
trackErrors: string
siteCategorizationAllowMode: string
ManagementSetHttpsAdvancedSettings 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 ManagementSetHttpsAdvancedSettings resource accepts the following input properties:
- Blocked
Certificate stringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- Blocked
Certificates List<ManagementSet Https Advanced Settings Blocked Certificate> - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- Bypass
On boolClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
On boolFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- Bypass
Update boolServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- Certificate
Pinned stringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- Log
Sessions bool - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- Management
Set stringHttps Advanced Settings Id - Retrieve
Intermediate boolCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- Server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- Site
Categorization stringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- Blocked
Certificate stringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- Blocked
Certificates []ManagementSet Https Advanced Settings Blocked Certificate Args - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- Bypass
On boolClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
On boolFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load Args - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- Bypass
Update boolServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- Certificate
Pinned stringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- Log
Sessions bool - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- Management
Set stringHttps Advanced Settings Id - Retrieve
Intermediate boolCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- Server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions Args - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- Site
Categorization stringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- blocked
Certificate StringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked
Certificates List<ManagementSet Https Advanced Settings Blocked Certificate> - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass
On BooleanClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
On BooleanFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass
Update BooleanServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate
Pinned StringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log
Sessions Boolean - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management
Set StringHttps Advanced Settings Id - retrieve
Intermediate BooleanCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site
Categorization StringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- blocked
Certificate stringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked
Certificates ManagementSet Https Advanced Settings Blocked Certificate[] - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass
On booleanClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
On booleanFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass
Update booleanServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate
Pinned stringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log
Sessions boolean - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management
Set stringHttps Advanced Settings Id - retrieve
Intermediate booleanCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site
Categorization stringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- blocked_
certificate_ strtracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked_
certificates Sequence[ManagementSet Https Advanced Settings Blocked Certificate Args] - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass_
on_ boolclient_ failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass_
on_ boolfailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass_
under_ Managementload Set Https Advanced Settings Bypass Under Load Args - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass_
update_ boolservices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate_
pinned_ strapps_ action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log_
sessions bool - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management_
set_ strhttps_ advanced_ settings_ id - retrieve_
intermediate_ boolca_ certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server_
certificate_ Managementvalidation_ actions Set Https Advanced Settings Server Certificate Validation Actions Args - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site_
categorization_ strallow_ mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- blocked
Certificate StringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked
Certificates List<Property Map> - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass
On BooleanClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
On BooleanFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
Under Property MapLoad - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass
Update BooleanServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate
Pinned StringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log
Sessions Boolean - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management
Set StringHttps Advanced Settings Id - retrieve
Intermediate BooleanCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server
Certificate Property MapValidation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site
Categorization StringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetHttpsAdvancedSettings resource produces the following output properties:
Look up Existing ManagementSetHttpsAdvancedSettings Resource
Get an existing ManagementSetHttpsAdvancedSettings 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?: ManagementSetHttpsAdvancedSettingsState, opts?: CustomResourceOptions): ManagementSetHttpsAdvancedSettings@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
blocked_certificate_tracking: Optional[str] = None,
blocked_certificates: Optional[Sequence[ManagementSetHttpsAdvancedSettingsBlockedCertificateArgs]] = None,
bypass_on_client_failure: Optional[bool] = None,
bypass_on_failure: Optional[bool] = None,
bypass_under_load: Optional[ManagementSetHttpsAdvancedSettingsBypassUnderLoadArgs] = None,
bypass_update_services: Optional[bool] = None,
certificate_pinned_apps_action: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
log_sessions: Optional[bool] = None,
management_set_https_advanced_settings_id: Optional[str] = None,
retrieve_intermediate_ca_certificates: Optional[bool] = None,
server_certificate_validation_actions: Optional[ManagementSetHttpsAdvancedSettingsServerCertificateValidationActionsArgs] = None,
site_categorization_allow_mode: Optional[str] = None,
uid: Optional[str] = None) -> ManagementSetHttpsAdvancedSettingsfunc GetManagementSetHttpsAdvancedSettings(ctx *Context, name string, id IDInput, state *ManagementSetHttpsAdvancedSettingsState, opts ...ResourceOption) (*ManagementSetHttpsAdvancedSettings, error)public static ManagementSetHttpsAdvancedSettings Get(string name, Input<string> id, ManagementSetHttpsAdvancedSettingsState? state, CustomResourceOptions? opts = null)public static ManagementSetHttpsAdvancedSettings get(String name, Output<String> id, ManagementSetHttpsAdvancedSettingsState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementSetHttpsAdvancedSettings 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.
- Blocked
Certificate stringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- Blocked
Certificates List<ManagementSet Https Advanced Settings Blocked Certificate> - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- Bypass
On boolClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
On boolFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- Bypass
Update boolServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- Certificate
Pinned stringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- Log
Sessions bool - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- Management
Set stringHttps Advanced Settings Id - Retrieve
Intermediate boolCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- Server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- Site
Categorization stringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- Uid string
- Object unique identifier.
- Blocked
Certificate stringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- Blocked
Certificates []ManagementSet Https Advanced Settings Blocked Certificate Args - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- Bypass
On boolClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
On boolFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- Bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load Args - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- Bypass
Update boolServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- Certificate
Pinned stringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- Log
Sessions bool - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- Management
Set stringHttps Advanced Settings Id - Retrieve
Intermediate boolCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- Server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions Args - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- Site
Categorization stringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- Uid string
- Object unique identifier.
- blocked
Certificate StringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked
Certificates List<ManagementSet Https Advanced Settings Blocked Certificate> - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass
On BooleanClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
On BooleanFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass
Update BooleanServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate
Pinned StringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log
Sessions Boolean - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management
Set StringHttps Advanced Settings Id - retrieve
Intermediate BooleanCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site
Categorization StringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- uid String
- Object unique identifier.
- blocked
Certificate stringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked
Certificates ManagementSet Https Advanced Settings Blocked Certificate[] - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass
On booleanClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
On booleanFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
Under ManagementLoad Set Https Advanced Settings Bypass Under Load - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass
Update booleanServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate
Pinned stringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log
Sessions boolean - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management
Set stringHttps Advanced Settings Id - retrieve
Intermediate booleanCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server
Certificate ManagementValidation Actions Set Https Advanced Settings Server Certificate Validation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site
Categorization stringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- uid string
- Object unique identifier.
- blocked_
certificate_ strtracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked_
certificates Sequence[ManagementSet Https Advanced Settings Blocked Certificate Args] - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass_
on_ boolclient_ failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass_
on_ boolfailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass_
under_ Managementload Set Https Advanced Settings Bypass Under Load Args - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass_
update_ boolservices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate_
pinned_ strapps_ action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log_
sessions bool - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management_
set_ strhttps_ advanced_ settings_ id - retrieve_
intermediate_ boolca_ certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server_
certificate_ Managementvalidation_ actions Set Https Advanced Settings Server Certificate Validation Actions Args - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site_
categorization_ strallow_ mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- uid str
- Object unique identifier.
- blocked
Certificate StringTracking - Controls whether to log and send a notification for dropped traffic.None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- blocked
Certificates List<Property Map> - Collection of certificates objects identified by serial number.Drop traffic from servers using the blocked certificate.blocked_certificates blocks are documented below.
- bypass
On BooleanClient Failure - Whether all requests should be bypassed or blocked-in case of client errors (Client closes the connection due to authentication issues during handshake)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
On BooleanFailure - Whether all requests should be bypassed or blocked-in case of server errors (for example validation error during GW-Server authentication)true - Fail-open (bypass all requests).false - Fail-close (block all requests.The default value is true.
- bypass
Under Property MapLoad - Bypass the HTTPS Inspection temporarily to improve connectivity during a heavy load on the Security Gateway. The HTTPS Inspection would resume as soon as the load decreases.bypass_under_load blocks are documented below.
- bypass
Update BooleanServices - Configure the value "true" to bypass traffic to well-known software update services.The default value is true.
- certificate
Pinned StringApps Action - Configure the value "bypass" to bypass traffic from certificate-pinned applications approved by Check Point.HTTPS Inspection cannot inspect connections initiated by certificate-pinned applications.Configure the value "detect" to send logs for traffic from certificate-pinned applications approved by Check Point.The default value is bypass.
- 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.
- log
Sessions Boolean - The value "true" configures the Security Gateway to send HTTPS Inspection session logs.The default value is true.
- management
Set StringHttps Advanced Settings Id - retrieve
Intermediate BooleanCa Certificates - Configure the value "true" to use the "Certificate Authority Information Access" extension to retrieve certificates that are missing from the certificate chain.The default value is true.
- server
Certificate Property MapValidation Actions - When a Security Gateway receives an untrusted certificate from a website server, define when to drop the connection and how to track it.server_certificate_validation_actions blocks are documented below.
- site
Categorization StringAllow Mode - Whether all requests should be allowed or blocked until categorization is complete.Background - to allow requests until categorization is complete.Hold- to block requests until categorization is complete.The default value is hold.
- uid String
- Object unique identifier.
Supporting Types
ManagementSetHttpsAdvancedSettingsBlockedCertificate, ManagementSetHttpsAdvancedSettingsBlockedCertificateArgs
- Cert
Serial stringNumber - Certificate Serial Number (unique) in hexadecimal format HH:HH.
- Comments string
- Describes the certificate by default, can be overridden by any text.
- Name string
- Describes the name, cannot be overridden.
- Cert
Serial stringNumber - Certificate Serial Number (unique) in hexadecimal format HH:HH.
- Comments string
- Describes the certificate by default, can be overridden by any text.
- Name string
- Describes the name, cannot be overridden.
- cert
Serial StringNumber - Certificate Serial Number (unique) in hexadecimal format HH:HH.
- comments String
- Describes the certificate by default, can be overridden by any text.
- name String
- Describes the name, cannot be overridden.
- cert
Serial stringNumber - Certificate Serial Number (unique) in hexadecimal format HH:HH.
- comments string
- Describes the certificate by default, can be overridden by any text.
- name string
- Describes the name, cannot be overridden.
- cert_
serial_ strnumber - Certificate Serial Number (unique) in hexadecimal format HH:HH.
- comments str
- Describes the certificate by default, can be overridden by any text.
- name str
- Describes the name, cannot be overridden.
- cert
Serial StringNumber - Certificate Serial Number (unique) in hexadecimal format HH:HH.
- comments String
- Describes the certificate by default, can be overridden by any text.
- name String
- Describes the name, cannot be overridden.
ManagementSetHttpsAdvancedSettingsBypassUnderLoad, ManagementSetHttpsAdvancedSettingsBypassUnderLoadArgs
- Track string
- Whether to log and send a notification for the bypass under load:None - Does not record the event.Log - Records the event details. Use SmartConsole or SmartView to see the logs.Alert - Logs the event and executes a command you configured.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the configured SNMP Management Server.User Defined Alert - Sends a custom alert..
- Track string
- Whether to log and send a notification for the bypass under load:None - Does not record the event.Log - Records the event details. Use SmartConsole or SmartView to see the logs.Alert - Logs the event and executes a command you configured.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the configured SNMP Management Server.User Defined Alert - Sends a custom alert..
- track String
- Whether to log and send a notification for the bypass under load:None - Does not record the event.Log - Records the event details. Use SmartConsole or SmartView to see the logs.Alert - Logs the event and executes a command you configured.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the configured SNMP Management Server.User Defined Alert - Sends a custom alert..
- track string
- Whether to log and send a notification for the bypass under load:None - Does not record the event.Log - Records the event details. Use SmartConsole or SmartView to see the logs.Alert - Logs the event and executes a command you configured.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the configured SNMP Management Server.User Defined Alert - Sends a custom alert..
- track str
- Whether to log and send a notification for the bypass under load:None - Does not record the event.Log - Records the event details. Use SmartConsole or SmartView to see the logs.Alert - Logs the event and executes a command you configured.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the configured SNMP Management Server.User Defined Alert - Sends a custom alert..
- track String
- Whether to log and send a notification for the bypass under load:None - Does not record the event.Log - Records the event details. Use SmartConsole or SmartView to see the logs.Alert - Logs the event and executes a command you configured.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the configured SNMP Management Server.User Defined Alert - Sends a custom alert..
ManagementSetHttpsAdvancedSettingsServerCertificateValidationActions, ManagementSetHttpsAdvancedSettingsServerCertificateValidationActionsArgs
- Block
Expired bool - Set to be true in order to drop traffic from servers with expired server certificate.
- Block
Revoked bool - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).
- Block
Untrusted bool - Set to be true in order to drop traffic from servers with untrusted server certificate.
- Track
Errors string - Whether to log and send a notification for the server validation errors:None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- Block
Expired bool - Set to be true in order to drop traffic from servers with expired server certificate.
- Block
Revoked bool - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).
- Block
Untrusted bool - Set to be true in order to drop traffic from servers with untrusted server certificate.
- Track
Errors string - Whether to log and send a notification for the server validation errors:None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- block
Expired Boolean - Set to be true in order to drop traffic from servers with expired server certificate.
- block
Revoked Boolean - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).
- block
Untrusted Boolean - Set to be true in order to drop traffic from servers with untrusted server certificate.
- track
Errors String - Whether to log and send a notification for the server validation errors:None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- block
Expired boolean - Set to be true in order to drop traffic from servers with expired server certificate.
- block
Revoked boolean - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).
- block
Untrusted boolean - Set to be true in order to drop traffic from servers with untrusted server certificate.
- track
Errors string - Whether to log and send a notification for the server validation errors:None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- block_
expired bool - Set to be true in order to drop traffic from servers with expired server certificate.
- block_
revoked bool - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).
- block_
untrusted bool - Set to be true in order to drop traffic from servers with untrusted server certificate.
- track_
errors str - Whether to log and send a notification for the server validation errors:None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
- block
Expired Boolean - Set to be true in order to drop traffic from servers with expired server certificate.
- block
Revoked Boolean - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).
- block
Untrusted Boolean - Set to be true in order to drop traffic from servers with untrusted server certificate.
- track
Errors String - Whether to log and send a notification for the server validation errors:None - Does not record the event.Log - Records the event details in SmartView.Alert - Logs the event and executes a command.Mail - Sends an email to the administrator.SNMP Trap - Sends an SNMP alert to the SNMP GU.User Defined Alert - Sends customized alerts..
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
