published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
This resource allows you to execute Check Point Set Threat Extraction File Type.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementSetThreatExtractionFileType("example", {
fileType: "pdf",
enabled: false,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementSetThreatExtractionFileType("example",
file_type="pdf",
enabled=False)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementSetThreatExtractionFileType(ctx, "example", &checkpoint.ManagementSetThreatExtractionFileTypeArgs{
FileType: pulumi.String("pdf"),
Enabled: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementSetThreatExtractionFileType("example", new()
{
FileType = "pdf",
Enabled = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementSetThreatExtractionFileType;
import com.pulumi.checkpoint.ManagementSetThreatExtractionFileTypeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ManagementSetThreatExtractionFileType("example", ManagementSetThreatExtractionFileTypeArgs.builder()
.fileType("pdf")
.enabled(false)
.build());
}
}
resources:
example:
type: checkpoint:ManagementSetThreatExtractionFileType
properties:
fileType: pdf
enabled: false
Example coming soon!
Create ManagementSetThreatExtractionFileType Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetThreatExtractionFileType(name: string, args?: ManagementSetThreatExtractionFileTypeArgs, opts?: CustomResourceOptions);@overload
def ManagementSetThreatExtractionFileType(resource_name: str,
args: Optional[ManagementSetThreatExtractionFileTypeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetThreatExtractionFileType(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
file_type: Optional[str] = None,
file_type_id: Optional[str] = None,
management_set_threat_extraction_file_type_id: Optional[str] = None)func NewManagementSetThreatExtractionFileType(ctx *Context, name string, args *ManagementSetThreatExtractionFileTypeArgs, opts ...ResourceOption) (*ManagementSetThreatExtractionFileType, error)public ManagementSetThreatExtractionFileType(string name, ManagementSetThreatExtractionFileTypeArgs? args = null, CustomResourceOptions? opts = null)
public ManagementSetThreatExtractionFileType(String name, ManagementSetThreatExtractionFileTypeArgs args)
public ManagementSetThreatExtractionFileType(String name, ManagementSetThreatExtractionFileTypeArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetThreatExtractionFileType
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_management_set_threat_extraction_file_type" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagementSetThreatExtractionFileTypeArgs
- 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 ManagementSetThreatExtractionFileTypeArgs
- 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 ManagementSetThreatExtractionFileTypeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetThreatExtractionFileTypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetThreatExtractionFileTypeArgs
- 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 managementSetThreatExtractionFileTypeResource = new Checkpoint.ManagementSetThreatExtractionFileType("managementSetThreatExtractionFileTypeResource", new()
{
Enabled = false,
FileType = "string",
FileTypeId = "string",
ManagementSetThreatExtractionFileTypeId = "string",
});
example, err := checkpoint.NewManagementSetThreatExtractionFileType(ctx, "managementSetThreatExtractionFileTypeResource", &checkpoint.ManagementSetThreatExtractionFileTypeArgs{
Enabled: pulumi.Bool(false),
FileType: pulumi.String("string"),
FileTypeId: pulumi.String("string"),
ManagementSetThreatExtractionFileTypeId: pulumi.String("string"),
})
resource "checkpoint_management_set_threat_extraction_file_type" "managementSetThreatExtractionFileTypeResource" {
lifecycle {
create_before_destroy = true
}
enabled = false
file_type = "string"
file_type_id = "string"
management_set_threat_extraction_file_type_id = "string"
}
var managementSetThreatExtractionFileTypeResource = new ManagementSetThreatExtractionFileType("managementSetThreatExtractionFileTypeResource", ManagementSetThreatExtractionFileTypeArgs.builder()
.enabled(false)
.fileType("string")
.fileTypeId("string")
.managementSetThreatExtractionFileTypeId("string")
.build());
management_set_threat_extraction_file_type_resource = checkpoint.ManagementSetThreatExtractionFileType("managementSetThreatExtractionFileTypeResource",
enabled=False,
file_type="string",
file_type_id="string",
management_set_threat_extraction_file_type_id="string")
const managementSetThreatExtractionFileTypeResource = new checkpoint.ManagementSetThreatExtractionFileType("managementSetThreatExtractionFileTypeResource", {
enabled: false,
fileType: "string",
fileTypeId: "string",
managementSetThreatExtractionFileTypeId: "string",
});
type: checkpoint:ManagementSetThreatExtractionFileType
properties:
enabled: false
fileType: string
fileTypeId: string
managementSetThreatExtractionFileTypeId: string
ManagementSetThreatExtractionFileType 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 ManagementSetThreatExtractionFileType resource accepts the following input properties:
- Enabled bool
- Enable support for Threat Extraction.
- File
Type string - File type extension.
- File
Type stringId - File type id.
- Management
Set stringThreat Extraction File Type Id
- Enabled bool
- Enable support for Threat Extraction.
- File
Type string - File type extension.
- File
Type stringId - File type id.
- Management
Set stringThreat Extraction File Type Id
- enabled bool
- Enable support for Threat Extraction.
- file_
type string - File type extension.
- file_
type_ stringid - File type id.
- management_
set_ stringthreat_ extraction_ file_ type_ id
- enabled Boolean
- Enable support for Threat Extraction.
- file
Type String - File type extension.
- file
Type StringId - File type id.
- management
Set StringThreat Extraction File Type Id
- enabled boolean
- Enable support for Threat Extraction.
- file
Type string - File type extension.
- file
Type stringId - File type id.
- management
Set stringThreat Extraction File Type Id
- enabled bool
- Enable support for Threat Extraction.
- file_
type str - File type extension.
- file_
type_ strid - File type id.
- management_
set_ strthreat_ extraction_ file_ type_ id
- enabled Boolean
- Enable support for Threat Extraction.
- file
Type String - File type extension.
- file
Type StringId - File type id.
- management
Set StringThreat Extraction File Type Id
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetThreatExtractionFileType resource produces the following output properties:
- Description string
- File type description.
- Icon string
- File type icon.
- Id string
- The provider-assigned unique ID for this managed resource.
- List<string>
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- Description string
- File type description.
- Icon string
- File type icon.
- Id string
- The provider-assigned unique ID for this managed resource.
- []string
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description string
- File type description.
- icon string
- File type icon.
- id string
- The provider-assigned unique ID for this managed resource.
- list(string)
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description String
- File type description.
- icon String
- File type icon.
- id String
- The provider-assigned unique ID for this managed resource.
- List<String>
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description string
- File type description.
- icon string
- File type icon.
- id string
- The provider-assigned unique ID for this managed resource.
- string[]
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description str
- File type description.
- icon str
- File type icon.
- id str
- The provider-assigned unique ID for this managed resource.
- Sequence[str]
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description String
- File type description.
- icon String
- File type icon.
- id String
- The provider-assigned unique ID for this managed resource.
- List<String>
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
Look up Existing ManagementSetThreatExtractionFileType Resource
Get an existing ManagementSetThreatExtractionFileType 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?: ManagementSetThreatExtractionFileTypeState, opts?: CustomResourceOptions): ManagementSetThreatExtractionFileType@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
file_type: Optional[str] = None,
file_type_id: Optional[str] = None,
icon: Optional[str] = None,
management_set_threat_extraction_file_type_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None) -> ManagementSetThreatExtractionFileTypefunc GetManagementSetThreatExtractionFileType(ctx *Context, name string, id IDInput, state *ManagementSetThreatExtractionFileTypeState, opts ...ResourceOption) (*ManagementSetThreatExtractionFileType, error)public static ManagementSetThreatExtractionFileType Get(string name, Input<string> id, ManagementSetThreatExtractionFileTypeState? state, CustomResourceOptions? opts = null)public static ManagementSetThreatExtractionFileType get(String name, Output<String> id, ManagementSetThreatExtractionFileTypeState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementSetThreatExtractionFileType get: id: ${id}import {
to = checkpoint_management_set_threat_extraction_file_type.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.
- Description string
- File type description.
- Enabled bool
- Enable support for Threat Extraction.
- File
Type string - File type extension.
- File
Type stringId - File type id.
- Icon string
- File type icon.
- Management
Set stringThreat Extraction File Type Id - List<string>
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- Description string
- File type description.
- Enabled bool
- Enable support for Threat Extraction.
- File
Type string - File type extension.
- File
Type stringId - File type id.
- Icon string
- File type icon.
- Management
Set stringThreat Extraction File Type Id - []string
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description string
- File type description.
- enabled bool
- Enable support for Threat Extraction.
- file_
type string - File type extension.
- file_
type_ stringid - File type id.
- icon string
- File type icon.
- management_
set_ stringthreat_ extraction_ file_ type_ id - list(string)
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description String
- File type description.
- enabled Boolean
- Enable support for Threat Extraction.
- file
Type String - File type extension.
- file
Type StringId - File type id.
- icon String
- File type icon.
- management
Set StringThreat Extraction File Type Id - List<String>
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description string
- File type description.
- enabled boolean
- Enable support for Threat Extraction.
- file
Type string - File type extension.
- file
Type stringId - File type id.
- icon string
- File type icon.
- management
Set stringThreat Extraction File Type Id - string[]
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description str
- File type description.
- enabled bool
- Enable support for Threat Extraction.
- file_
type str - File type extension.
- file_
type_ strid - File type id.
- icon str
- File type icon.
- management_
set_ strthreat_ extraction_ file_ type_ id - Sequence[str]
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
- description String
- File type description.
- enabled Boolean
- Enable support for Threat Extraction.
- file
Type String - File type extension.
- file
Type StringId - File type id.
- icon String
- File type icon.
- management
Set StringThreat Extraction File Type Id - List<String>
- Collection of tag objects identified by the name or UID. Level of details in the output corresponds to the number of details for search. This table shows the level of details in the Standard level.
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