1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementSetThreatEmulationFileType
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw

    This resource allows you to execute Check Point Set Threat Emulation File Type.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementSetThreatEmulationFileType("example", {
        fileType: "pdf",
        enabled: false,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementSetThreatEmulationFileType("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.NewManagementSetThreatEmulationFileType(ctx, "example", &checkpoint.ManagementSetThreatEmulationFileTypeArgs{
    			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.ManagementSetThreatEmulationFileType("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.ManagementSetThreatEmulationFileType;
    import com.pulumi.checkpoint.ManagementSetThreatEmulationFileTypeArgs;
    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 ManagementSetThreatEmulationFileType("example", ManagementSetThreatEmulationFileTypeArgs.builder()
                .fileType("pdf")
                .enabled(false)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementSetThreatEmulationFileType
        properties:
          fileType: pdf
          enabled: false
    
    Example coming soon!
    

    Create ManagementSetThreatEmulationFileType Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ManagementSetThreatEmulationFileType(name: string, args?: ManagementSetThreatEmulationFileTypeArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementSetThreatEmulationFileType(resource_name: str,
                                             args: Optional[ManagementSetThreatEmulationFileTypeArgs] = None,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementSetThreatEmulationFileType(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_emulation_file_type_id: Optional[str] = None)
    func NewManagementSetThreatEmulationFileType(ctx *Context, name string, args *ManagementSetThreatEmulationFileTypeArgs, opts ...ResourceOption) (*ManagementSetThreatEmulationFileType, error)
    public ManagementSetThreatEmulationFileType(string name, ManagementSetThreatEmulationFileTypeArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementSetThreatEmulationFileType(String name, ManagementSetThreatEmulationFileTypeArgs args)
    public ManagementSetThreatEmulationFileType(String name, ManagementSetThreatEmulationFileTypeArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementSetThreatEmulationFileType
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_set_threat_emulation_file_type" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementSetThreatEmulationFileTypeArgs
    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 ManagementSetThreatEmulationFileTypeArgs
    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 ManagementSetThreatEmulationFileTypeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementSetThreatEmulationFileTypeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementSetThreatEmulationFileTypeArgs
    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 managementSetThreatEmulationFileTypeResource = new Checkpoint.ManagementSetThreatEmulationFileType("managementSetThreatEmulationFileTypeResource", new()
    {
        Enabled = false,
        FileType = "string",
        FileTypeId = "string",
        ManagementSetThreatEmulationFileTypeId = "string",
    });
    
    example, err := checkpoint.NewManagementSetThreatEmulationFileType(ctx, "managementSetThreatEmulationFileTypeResource", &checkpoint.ManagementSetThreatEmulationFileTypeArgs{
    	Enabled:                                pulumi.Bool(false),
    	FileType:                               pulumi.String("string"),
    	FileTypeId:                             pulumi.String("string"),
    	ManagementSetThreatEmulationFileTypeId: pulumi.String("string"),
    })
    
    resource "checkpoint_management_set_threat_emulation_file_type" "managementSetThreatEmulationFileTypeResource" {
      lifecycle {
        create_before_destroy = true
      }
      enabled                                      = false
      file_type                                    = "string"
      file_type_id                                 = "string"
      management_set_threat_emulation_file_type_id = "string"
    }
    
    var managementSetThreatEmulationFileTypeResource = new ManagementSetThreatEmulationFileType("managementSetThreatEmulationFileTypeResource", ManagementSetThreatEmulationFileTypeArgs.builder()
        .enabled(false)
        .fileType("string")
        .fileTypeId("string")
        .managementSetThreatEmulationFileTypeId("string")
        .build());
    
    management_set_threat_emulation_file_type_resource = checkpoint.ManagementSetThreatEmulationFileType("managementSetThreatEmulationFileTypeResource",
        enabled=False,
        file_type="string",
        file_type_id="string",
        management_set_threat_emulation_file_type_id="string")
    
    const managementSetThreatEmulationFileTypeResource = new checkpoint.ManagementSetThreatEmulationFileType("managementSetThreatEmulationFileTypeResource", {
        enabled: false,
        fileType: "string",
        fileTypeId: "string",
        managementSetThreatEmulationFileTypeId: "string",
    });
    
    type: checkpoint:ManagementSetThreatEmulationFileType
    properties:
        enabled: false
        fileType: string
        fileTypeId: string
        managementSetThreatEmulationFileTypeId: string
    

    ManagementSetThreatEmulationFileType 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 ManagementSetThreatEmulationFileType resource accepts the following input properties:

    Enabled bool
    Enable support for Threat Emulation.
    FileType string
    File type extension.
    FileTypeId string
    File type id.
    ManagementSetThreatEmulationFileTypeId string
    Enabled bool
    Enable support for Threat Emulation.
    FileType string
    File type extension.
    FileTypeId string
    File type id.
    ManagementSetThreatEmulationFileTypeId string
    enabled bool
    Enable support for Threat Emulation.
    file_type string
    File type extension.
    file_type_id string
    File type id.
    management_set_threat_emulation_file_type_id string
    enabled Boolean
    Enable support for Threat Emulation.
    fileType String
    File type extension.
    fileTypeId String
    File type id.
    managementSetThreatEmulationFileTypeId String
    enabled boolean
    Enable support for Threat Emulation.
    fileType string
    File type extension.
    fileTypeId string
    File type id.
    managementSetThreatEmulationFileTypeId string
    enabled bool
    Enable support for Threat Emulation.
    file_type str
    File type extension.
    file_type_id str
    File type id.
    management_set_threat_emulation_file_type_id str
    enabled Boolean
    Enable support for Threat Emulation.
    fileType String
    File type extension.
    fileTypeId String
    File type id.
    managementSetThreatEmulationFileTypeId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementSetThreatEmulationFileType 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.
    SupportedPlatforms string
    Supported platforms for Threat Emulation.
    Tags 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.
    SupportedPlatforms string
    Supported platforms for Threat Emulation.
    Tags []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.
    supported_platforms string
    Supported platforms for Threat Emulation.
    tags 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.
    supportedPlatforms String
    Supported platforms for Threat Emulation.
    tags 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.
    supportedPlatforms string
    Supported platforms for Threat Emulation.
    tags 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.
    supported_platforms str
    Supported platforms for Threat Emulation.
    tags 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.
    supportedPlatforms String
    Supported platforms for Threat Emulation.
    tags 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 ManagementSetThreatEmulationFileType Resource

    Get an existing ManagementSetThreatEmulationFileType 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?: ManagementSetThreatEmulationFileTypeState, opts?: CustomResourceOptions): ManagementSetThreatEmulationFileType
    @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_emulation_file_type_id: Optional[str] = None,
            supported_platforms: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementSetThreatEmulationFileType
    func GetManagementSetThreatEmulationFileType(ctx *Context, name string, id IDInput, state *ManagementSetThreatEmulationFileTypeState, opts ...ResourceOption) (*ManagementSetThreatEmulationFileType, error)
    public static ManagementSetThreatEmulationFileType Get(string name, Input<string> id, ManagementSetThreatEmulationFileTypeState? state, CustomResourceOptions? opts = null)
    public static ManagementSetThreatEmulationFileType get(String name, Output<String> id, ManagementSetThreatEmulationFileTypeState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementSetThreatEmulationFileType    get:      id: ${id}
    import {
      to = checkpoint_management_set_threat_emulation_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.
    The following state arguments are supported:
    Description string
    File type description.
    Enabled bool
    Enable support for Threat Emulation.
    FileType string
    File type extension.
    FileTypeId string
    File type id.
    Icon string
    File type icon.
    ManagementSetThreatEmulationFileTypeId string
    SupportedPlatforms string
    Supported platforms for Threat Emulation.
    Tags 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 Emulation.
    FileType string
    File type extension.
    FileTypeId string
    File type id.
    Icon string
    File type icon.
    ManagementSetThreatEmulationFileTypeId string
    SupportedPlatforms string
    Supported platforms for Threat Emulation.
    Tags []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 Emulation.
    file_type string
    File type extension.
    file_type_id string
    File type id.
    icon string
    File type icon.
    management_set_threat_emulation_file_type_id string
    supported_platforms string
    Supported platforms for Threat Emulation.
    tags 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 Emulation.
    fileType String
    File type extension.
    fileTypeId String
    File type id.
    icon String
    File type icon.
    managementSetThreatEmulationFileTypeId String
    supportedPlatforms String
    Supported platforms for Threat Emulation.
    tags 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 Emulation.
    fileType string
    File type extension.
    fileTypeId string
    File type id.
    icon string
    File type icon.
    managementSetThreatEmulationFileTypeId string
    supportedPlatforms string
    Supported platforms for Threat Emulation.
    tags 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 Emulation.
    file_type str
    File type extension.
    file_type_id str
    File type id.
    icon str
    File type icon.
    management_set_threat_emulation_file_type_id str
    supported_platforms str
    Supported platforms for Threat Emulation.
    tags 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 Emulation.
    fileType String
    File type extension.
    fileTypeId String
    File type id.
    icon String
    File type icon.
    managementSetThreatEmulationFileTypeId String
    supportedPlatforms String
    Supported platforms for Threat Emulation.
    tags 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 checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.3.0
    published on Thursday, Jul 30, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial