published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
Create ManagementSetThreatProtectionSubCategory Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetThreatProtectionSubCategory(name: string, args?: ManagementSetThreatProtectionSubCategoryArgs, opts?: CustomResourceOptions);@overload
def ManagementSetThreatProtectionSubCategory(resource_name: str,
args: Optional[ManagementSetThreatProtectionSubCategoryArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetThreatProtectionSubCategory(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
all_profiles: Optional[bool] = None,
category_id: Optional[str] = None,
management_set_threat_protection_sub_category_id: Optional[str] = None,
name: Optional[str] = None,
overrides: Optional[Sequence[ManagementSetThreatProtectionSubCategoryOverrideArgs]] = None,
show_profiles: Optional[bool] = None)func NewManagementSetThreatProtectionSubCategory(ctx *Context, name string, args *ManagementSetThreatProtectionSubCategoryArgs, opts ...ResourceOption) (*ManagementSetThreatProtectionSubCategory, error)public ManagementSetThreatProtectionSubCategory(string name, ManagementSetThreatProtectionSubCategoryArgs? args = null, CustomResourceOptions? opts = null)
public ManagementSetThreatProtectionSubCategory(String name, ManagementSetThreatProtectionSubCategoryArgs args)
public ManagementSetThreatProtectionSubCategory(String name, ManagementSetThreatProtectionSubCategoryArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetThreatProtectionSubCategory
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_management_set_threat_protection_sub_category" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagementSetThreatProtectionSubCategoryArgs
- 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 ManagementSetThreatProtectionSubCategoryArgs
- 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 ManagementSetThreatProtectionSubCategoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetThreatProtectionSubCategoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetThreatProtectionSubCategoryArgs
- 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 managementSetThreatProtectionSubCategoryResource = new Checkpoint.ManagementSetThreatProtectionSubCategory("managementSetThreatProtectionSubCategoryResource", new()
{
Action = "string",
AllProfiles = false,
CategoryId = "string",
ManagementSetThreatProtectionSubCategoryId = "string",
Name = "string",
Overrides = new[]
{
new Checkpoint.Inputs.ManagementSetThreatProtectionSubCategoryOverrideArgs
{
Action = "string",
Profile = "string",
},
},
ShowProfiles = false,
});
example, err := checkpoint.NewManagementSetThreatProtectionSubCategory(ctx, "managementSetThreatProtectionSubCategoryResource", &checkpoint.ManagementSetThreatProtectionSubCategoryArgs{
Action: pulumi.String("string"),
AllProfiles: pulumi.Bool(false),
CategoryId: pulumi.String("string"),
ManagementSetThreatProtectionSubCategoryId: pulumi.String("string"),
Name: pulumi.String("string"),
Overrides: checkpoint.ManagementSetThreatProtectionSubCategoryOverrideArray{
&checkpoint.ManagementSetThreatProtectionSubCategoryOverrideArgs{
Action: pulumi.String("string"),
Profile: pulumi.String("string"),
},
},
ShowProfiles: pulumi.Bool(false),
})
resource "checkpoint_management_set_threat_protection_sub_category" "managementSetThreatProtectionSubCategoryResource" {
lifecycle {
create_before_destroy = true
}
action = "string"
all_profiles = false
category_id = "string"
management_set_threat_protection_sub_category_id = "string"
name = "string"
overrides {
action = "string"
profile = "string"
}
show_profiles = false
}
var managementSetThreatProtectionSubCategoryResource = new ManagementSetThreatProtectionSubCategory("managementSetThreatProtectionSubCategoryResource", ManagementSetThreatProtectionSubCategoryArgs.builder()
.action("string")
.allProfiles(false)
.categoryId("string")
.managementSetThreatProtectionSubCategoryId("string")
.name("string")
.overrides(ManagementSetThreatProtectionSubCategoryOverrideArgs.builder()
.action("string")
.profile("string")
.build())
.showProfiles(false)
.build());
management_set_threat_protection_sub_category_resource = checkpoint.ManagementSetThreatProtectionSubCategory("managementSetThreatProtectionSubCategoryResource",
action="string",
all_profiles=False,
category_id="string",
management_set_threat_protection_sub_category_id="string",
name="string",
overrides=[{
"action": "string",
"profile": "string",
}],
show_profiles=False)
const managementSetThreatProtectionSubCategoryResource = new checkpoint.ManagementSetThreatProtectionSubCategory("managementSetThreatProtectionSubCategoryResource", {
action: "string",
allProfiles: false,
categoryId: "string",
managementSetThreatProtectionSubCategoryId: "string",
name: "string",
overrides: [{
action: "string",
profile: "string",
}],
showProfiles: false,
});
type: checkpoint:ManagementSetThreatProtectionSubCategory
properties:
action: string
allProfiles: false
categoryId: string
managementSetThreatProtectionSubCategoryId: string
name: string
overrides:
- action: string
profile: string
showProfiles: false
ManagementSetThreatProtectionSubCategory 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 ManagementSetThreatProtectionSubCategory resource accepts the following input properties:
- Action string
- Action to apply to all profiles. Required when all-profiles is true.
- All
Profiles bool - Apply action to all profiles. Default: true.
- Category
Id string - The sub-category's unique identifier.
- Management
Set stringThreat Protection Sub Category Id - Name string
- The sub-category's name.
- Overrides
List<Management
Set Threat Protection Sub Category Override> - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- Show
Profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- Action string
- Action to apply to all profiles. Required when all-profiles is true.
- All
Profiles bool - Apply action to all profiles. Default: true.
- Category
Id string - The sub-category's unique identifier.
- Management
Set stringThreat Protection Sub Category Id - Name string
- The sub-category's name.
- Overrides
[]Management
Set Threat Protection Sub Category Override Args - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- Show
Profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- action string
- Action to apply to all profiles. Required when all-profiles is true.
- all_
profiles bool - Apply action to all profiles. Default: true.
- category_
id string - The sub-category's unique identifier.
- management_
set_ stringthreat_ protection_ sub_ category_ id - name string
- The sub-category's name.
- overrides list(object)
- Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- show_
profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- action String
- Action to apply to all profiles. Required when all-profiles is true.
- all
Profiles Boolean - Apply action to all profiles. Default: true.
- category
Id String - The sub-category's unique identifier.
- management
Set StringThreat Protection Sub Category Id - name String
- The sub-category's name.
- overrides
List<Management
Set Threat Protection Sub Category Override> - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- show
Profiles Boolean - Indicates whether to calculate and show "profiles" field in reply.
- action string
- Action to apply to all profiles. Required when all-profiles is true.
- all
Profiles boolean - Apply action to all profiles. Default: true.
- category
Id string - The sub-category's unique identifier.
- management
Set stringThreat Protection Sub Category Id - name string
- The sub-category's name.
- overrides
Management
Set Threat Protection Sub Category Override[] - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- show
Profiles boolean - Indicates whether to calculate and show "profiles" field in reply.
- action str
- Action to apply to all profiles. Required when all-profiles is true.
- all_
profiles bool - Apply action to all profiles. Default: true.
- category_
id str - The sub-category's unique identifier.
- management_
set_ strthreat_ protection_ sub_ category_ id - name str
- The sub-category's name.
- overrides
Sequence[Management
Set Threat Protection Sub Category Override Args] - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- show_
profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- action String
- Action to apply to all profiles. Required when all-profiles is true.
- all
Profiles Boolean - Apply action to all profiles. Default: true.
- category
Id String - The sub-category's unique identifier.
- management
Set StringThreat Protection Sub Category Id - name String
- The sub-category's name.
- overrides List<Property Map>
- Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- show
Profiles Boolean - Indicates whether to calculate and show "profiles" field in reply.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetThreatProtectionSubCategory resource produces the following output properties:
- Blade string
- The blade this protection belongs to.
- Categories
List<Management
Set Threat Protection Sub Category Category> - Parent category reference. category blocks are documented below.
- Confidence
Level string - Confidence level of the protection.
- Description string
- Detailed description.
- Domains List<string>
- Information about the domain that holds the Object.
- Engine string
- The engine that handles this protection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Known
Today double - The current number of protection items available in the latest update.
- Last
Updates List<ManagementSet Threat Protection Sub Category Last Update> - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- Performance
Impact string - Performance impact of the protection.
- Profiles List<string>
- Protection settings per profile.
- Blade string
- The blade this protection belongs to.
- Categories
[]Management
Set Threat Protection Sub Category Category - Parent category reference. category blocks are documented below.
- Confidence
Level string - Confidence level of the protection.
- Description string
- Detailed description.
- Domains []string
- Information about the domain that holds the Object.
- Engine string
- The engine that handles this protection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Known
Today float64 - The current number of protection items available in the latest update.
- Last
Updates []ManagementSet Threat Protection Sub Category Last Update - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- Performance
Impact string - Performance impact of the protection.
- Profiles []string
- Protection settings per profile.
- blade string
- The blade this protection belongs to.
- categories list(object)
- Parent category reference. category blocks are documented below.
- confidence_
level string - Confidence level of the protection.
- description string
- Detailed description.
- domains list(string)
- Information about the domain that holds the Object.
- engine string
- The engine that handles this protection.
- id string
- The provider-assigned unique ID for this managed resource.
- known_
today number - The current number of protection items available in the latest update.
- last_
updates list(object) - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- performance_
impact string - Performance impact of the protection.
- profiles list(string)
- Protection settings per profile.
- blade String
- The blade this protection belongs to.
- categories
List<Management
Set Threat Protection Sub Category Category> - Parent category reference. category blocks are documented below.
- confidence
Level String - Confidence level of the protection.
- description String
- Detailed description.
- domains List<String>
- Information about the domain that holds the Object.
- engine String
- The engine that handles this protection.
- id String
- The provider-assigned unique ID for this managed resource.
- known
Today Double - The current number of protection items available in the latest update.
- last
Updates List<ManagementSet Threat Protection Sub Category Last Update> - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- performance
Impact String - Performance impact of the protection.
- profiles List<String>
- Protection settings per profile.
- blade string
- The blade this protection belongs to.
- categories
Management
Set Threat Protection Sub Category Category[] - Parent category reference. category blocks are documented below.
- confidence
Level string - Confidence level of the protection.
- description string
- Detailed description.
- domains string[]
- Information about the domain that holds the Object.
- engine string
- The engine that handles this protection.
- id string
- The provider-assigned unique ID for this managed resource.
- known
Today number - The current number of protection items available in the latest update.
- last
Updates ManagementSet Threat Protection Sub Category Last Update[] - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- performance
Impact string - Performance impact of the protection.
- profiles string[]
- Protection settings per profile.
- blade str
- The blade this protection belongs to.
- categories
Sequence[Management
Set Threat Protection Sub Category Category] - Parent category reference. category blocks are documented below.
- confidence_
level str - Confidence level of the protection.
- description str
- Detailed description.
- domains Sequence[str]
- Information about the domain that holds the Object.
- engine str
- The engine that handles this protection.
- id str
- The provider-assigned unique ID for this managed resource.
- known_
today float - The current number of protection items available in the latest update.
- last_
updates Sequence[ManagementSet Threat Protection Sub Category Last Update] - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- performance_
impact str - Performance impact of the protection.
- profiles Sequence[str]
- Protection settings per profile.
- blade String
- The blade this protection belongs to.
- categories List<Property Map>
- Parent category reference. category blocks are documented below.
- confidence
Level String - Confidence level of the protection.
- description String
- Detailed description.
- domains List<String>
- Information about the domain that holds the Object.
- engine String
- The engine that handles this protection.
- id String
- The provider-assigned unique ID for this managed resource.
- known
Today Number - The current number of protection items available in the latest update.
- last
Updates List<Property Map> - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- performance
Impact String - Performance impact of the protection.
- profiles List<String>
- Protection settings per profile.
Look up Existing ManagementSetThreatProtectionSubCategory Resource
Get an existing ManagementSetThreatProtectionSubCategory 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?: ManagementSetThreatProtectionSubCategoryState, opts?: CustomResourceOptions): ManagementSetThreatProtectionSubCategory@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
all_profiles: Optional[bool] = None,
blade: Optional[str] = None,
categories: Optional[Sequence[ManagementSetThreatProtectionSubCategoryCategoryArgs]] = None,
category_id: Optional[str] = None,
confidence_level: Optional[str] = None,
description: Optional[str] = None,
domains: Optional[Sequence[str]] = None,
engine: Optional[str] = None,
known_today: Optional[float] = None,
last_updates: Optional[Sequence[ManagementSetThreatProtectionSubCategoryLastUpdateArgs]] = None,
management_set_threat_protection_sub_category_id: Optional[str] = None,
name: Optional[str] = None,
overrides: Optional[Sequence[ManagementSetThreatProtectionSubCategoryOverrideArgs]] = None,
performance_impact: Optional[str] = None,
profiles: Optional[Sequence[str]] = None,
show_profiles: Optional[bool] = None) -> ManagementSetThreatProtectionSubCategoryfunc GetManagementSetThreatProtectionSubCategory(ctx *Context, name string, id IDInput, state *ManagementSetThreatProtectionSubCategoryState, opts ...ResourceOption) (*ManagementSetThreatProtectionSubCategory, error)public static ManagementSetThreatProtectionSubCategory Get(string name, Input<string> id, ManagementSetThreatProtectionSubCategoryState? state, CustomResourceOptions? opts = null)public static ManagementSetThreatProtectionSubCategory get(String name, Output<String> id, ManagementSetThreatProtectionSubCategoryState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementSetThreatProtectionSubCategory get: id: ${id}import {
to = checkpoint_management_set_threat_protection_sub_category.example
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.
- Action string
- Action to apply to all profiles. Required when all-profiles is true.
- All
Profiles bool - Apply action to all profiles. Default: true.
- Blade string
- The blade this protection belongs to.
- Categories
List<Management
Set Threat Protection Sub Category Category> - Parent category reference. category blocks are documented below.
- Category
Id string - The sub-category's unique identifier.
- Confidence
Level string - Confidence level of the protection.
- Description string
- Detailed description.
- Domains List<string>
- Information about the domain that holds the Object.
- Engine string
- The engine that handles this protection.
- Known
Today double - The current number of protection items available in the latest update.
- Last
Updates List<ManagementSet Threat Protection Sub Category Last Update> - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- Management
Set stringThreat Protection Sub Category Id - Name string
- The sub-category's name.
- Overrides
List<Management
Set Threat Protection Sub Category Override> - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- Performance
Impact string - Performance impact of the protection.
- Profiles List<string>
- Protection settings per profile.
- Show
Profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- Action string
- Action to apply to all profiles. Required when all-profiles is true.
- All
Profiles bool - Apply action to all profiles. Default: true.
- Blade string
- The blade this protection belongs to.
- Categories
[]Management
Set Threat Protection Sub Category Category Args - Parent category reference. category blocks are documented below.
- Category
Id string - The sub-category's unique identifier.
- Confidence
Level string - Confidence level of the protection.
- Description string
- Detailed description.
- Domains []string
- Information about the domain that holds the Object.
- Engine string
- The engine that handles this protection.
- Known
Today float64 - The current number of protection items available in the latest update.
- Last
Updates []ManagementSet Threat Protection Sub Category Last Update Args - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- Management
Set stringThreat Protection Sub Category Id - Name string
- The sub-category's name.
- Overrides
[]Management
Set Threat Protection Sub Category Override Args - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- Performance
Impact string - Performance impact of the protection.
- Profiles []string
- Protection settings per profile.
- Show
Profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- action string
- Action to apply to all profiles. Required when all-profiles is true.
- all_
profiles bool - Apply action to all profiles. Default: true.
- blade string
- The blade this protection belongs to.
- categories list(object)
- Parent category reference. category blocks are documented below.
- category_
id string - The sub-category's unique identifier.
- confidence_
level string - Confidence level of the protection.
- description string
- Detailed description.
- domains list(string)
- Information about the domain that holds the Object.
- engine string
- The engine that handles this protection.
- known_
today number - The current number of protection items available in the latest update.
- last_
updates list(object) - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- management_
set_ stringthreat_ protection_ sub_ category_ id - name string
- The sub-category's name.
- overrides list(object)
- Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- performance_
impact string - Performance impact of the protection.
- profiles list(string)
- Protection settings per profile.
- show_
profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- action String
- Action to apply to all profiles. Required when all-profiles is true.
- all
Profiles Boolean - Apply action to all profiles. Default: true.
- blade String
- The blade this protection belongs to.
- categories
List<Management
Set Threat Protection Sub Category Category> - Parent category reference. category blocks are documented below.
- category
Id String - The sub-category's unique identifier.
- confidence
Level String - Confidence level of the protection.
- description String
- Detailed description.
- domains List<String>
- Information about the domain that holds the Object.
- engine String
- The engine that handles this protection.
- known
Today Double - The current number of protection items available in the latest update.
- last
Updates List<ManagementSet Threat Protection Sub Category Last Update> - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- management
Set StringThreat Protection Sub Category Id - name String
- The sub-category's name.
- overrides
List<Management
Set Threat Protection Sub Category Override> - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- performance
Impact String - Performance impact of the protection.
- profiles List<String>
- Protection settings per profile.
- show
Profiles Boolean - Indicates whether to calculate and show "profiles" field in reply.
- action string
- Action to apply to all profiles. Required when all-profiles is true.
- all
Profiles boolean - Apply action to all profiles. Default: true.
- blade string
- The blade this protection belongs to.
- categories
Management
Set Threat Protection Sub Category Category[] - Parent category reference. category blocks are documented below.
- category
Id string - The sub-category's unique identifier.
- confidence
Level string - Confidence level of the protection.
- description string
- Detailed description.
- domains string[]
- Information about the domain that holds the Object.
- engine string
- The engine that handles this protection.
- known
Today number - The current number of protection items available in the latest update.
- last
Updates ManagementSet Threat Protection Sub Category Last Update[] - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- management
Set stringThreat Protection Sub Category Id - name string
- The sub-category's name.
- overrides
Management
Set Threat Protection Sub Category Override[] - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- performance
Impact string - Performance impact of the protection.
- profiles string[]
- Protection settings per profile.
- show
Profiles boolean - Indicates whether to calculate and show "profiles" field in reply.
- action str
- Action to apply to all profiles. Required when all-profiles is true.
- all_
profiles bool - Apply action to all profiles. Default: true.
- blade str
- The blade this protection belongs to.
- categories
Sequence[Management
Set Threat Protection Sub Category Category Args] - Parent category reference. category blocks are documented below.
- category_
id str - The sub-category's unique identifier.
- confidence_
level str - Confidence level of the protection.
- description str
- Detailed description.
- domains Sequence[str]
- Information about the domain that holds the Object.
- engine str
- The engine that handles this protection.
- known_
today float - The current number of protection items available in the latest update.
- last_
updates Sequence[ManagementSet Threat Protection Sub Category Last Update Args] - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- management_
set_ strthreat_ protection_ sub_ category_ id - name str
- The sub-category's name.
- overrides
Sequence[Management
Set Threat Protection Sub Category Override Args] - Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- performance_
impact str - Performance impact of the protection.
- profiles Sequence[str]
- Protection settings per profile.
- show_
profiles bool - Indicates whether to calculate and show "profiles" field in reply.
- action String
- Action to apply to all profiles. Required when all-profiles is true.
- all
Profiles Boolean - Apply action to all profiles. Default: true.
- blade String
- The blade this protection belongs to.
- categories List<Property Map>
- Parent category reference. category blocks are documented below.
- category
Id String - The sub-category's unique identifier.
- confidence
Level String - Confidence level of the protection.
- description String
- Detailed description.
- domains List<String>
- Information about the domain that holds the Object.
- engine String
- The engine that handles this protection.
- known
Today Number - The current number of protection items available in the latest update.
- last
Updates List<Property Map> - The date in which the protection was updated by Check Point. last_update blocks are documented below.
- management
Set StringThreat Protection Sub Category Id - name String
- The sub-category's name.
- overrides List<Property Map>
- Overrides per profile for this protection. Required when all-profiles is false.overrides blocks are documented below.
- performance
Impact String - Performance impact of the protection.
- profiles List<String>
- Protection settings per profile.
- show
Profiles Boolean - Indicates whether to calculate and show "profiles" field in reply.
Supporting Types
ManagementSetThreatProtectionSubCategoryCategory, ManagementSetThreatProtectionSubCategoryCategoryArgs
ManagementSetThreatProtectionSubCategoryLastUpdate, ManagementSetThreatProtectionSubCategoryLastUpdateArgs
ManagementSetThreatProtectionSubCategoryOverride, ManagementSetThreatProtectionSubCategoryOverrideArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Thursday, Jul 30, 2026 by checkpointsw