1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementExportAccessRulebase
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 Export Access Rulebase.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementExportAccessRulebase("example", {name: "Corp-Access"});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementExportAccessRulebase("example", name="Corp-Access")
    
    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.NewManagementExportAccessRulebase(ctx, "example", &checkpoint.ManagementExportAccessRulebaseArgs{
    			Name: pulumi.String("Corp-Access"),
    		})
    		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.ManagementExportAccessRulebase("example", new()
        {
            Name = "Corp-Access",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementExportAccessRulebase;
    import com.pulumi.checkpoint.ManagementExportAccessRulebaseArgs;
    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 ManagementExportAccessRulebase("example", ManagementExportAccessRulebaseArgs.builder()
                .name("Corp-Access")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementExportAccessRulebase
        properties:
          name: Corp-Access
    
    Example coming soon!
    

    Create ManagementExportAccessRulebase Resource

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

    Constructor syntax

    new ManagementExportAccessRulebase(name: string, args?: ManagementExportAccessRulebaseArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementExportAccessRulebase(resource_name: str,
                                       args: Optional[ManagementExportAccessRulebaseArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementExportAccessRulebase(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       dereference_group_members: Optional[bool] = None,
                                       hits_settings: Optional[ManagementExportAccessRulebaseHitsSettingsArgs] = None,
                                       management_export_access_rulebase_id: Optional[str] = None,
                                       name: Optional[str] = None,
                                       package: Optional[str] = None,
                                       show_expiration_settings: Optional[bool] = None,
                                       show_hits: Optional[bool] = None,
                                       show_membership: Optional[bool] = None,
                                       uid: Optional[str] = None,
                                       use_object_dictionary: Optional[bool] = None)
    func NewManagementExportAccessRulebase(ctx *Context, name string, args *ManagementExportAccessRulebaseArgs, opts ...ResourceOption) (*ManagementExportAccessRulebase, error)
    public ManagementExportAccessRulebase(string name, ManagementExportAccessRulebaseArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementExportAccessRulebase(String name, ManagementExportAccessRulebaseArgs args)
    public ManagementExportAccessRulebase(String name, ManagementExportAccessRulebaseArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementExportAccessRulebase
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_export_access_rulebase" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementExportAccessRulebaseArgs
    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 ManagementExportAccessRulebaseArgs
    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 ManagementExportAccessRulebaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementExportAccessRulebaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementExportAccessRulebaseArgs
    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 managementExportAccessRulebaseResource = new Checkpoint.ManagementExportAccessRulebase("managementExportAccessRulebaseResource", new()
    {
        DereferenceGroupMembers = false,
        HitsSettings = new Checkpoint.Inputs.ManagementExportAccessRulebaseHitsSettingsArgs
        {
            FromDate = "string",
            Target = "string",
            ToDate = "string",
        },
        ManagementExportAccessRulebaseId = "string",
        Name = "string",
        Package = "string",
        ShowExpirationSettings = false,
        ShowHits = false,
        ShowMembership = false,
        Uid = "string",
        UseObjectDictionary = false,
    });
    
    example, err := checkpoint.NewManagementExportAccessRulebase(ctx, "managementExportAccessRulebaseResource", &checkpoint.ManagementExportAccessRulebaseArgs{
    	DereferenceGroupMembers: pulumi.Bool(false),
    	HitsSettings: &checkpoint.ManagementExportAccessRulebaseHitsSettingsArgs{
    		FromDate: pulumi.String("string"),
    		Target:   pulumi.String("string"),
    		ToDate:   pulumi.String("string"),
    	},
    	ManagementExportAccessRulebaseId: pulumi.String("string"),
    	Name:                             pulumi.String("string"),
    	Package:                          pulumi.String("string"),
    	ShowExpirationSettings:           pulumi.Bool(false),
    	ShowHits:                         pulumi.Bool(false),
    	ShowMembership:                   pulumi.Bool(false),
    	Uid:                              pulumi.String("string"),
    	UseObjectDictionary:              pulumi.Bool(false),
    })
    
    resource "checkpoint_management_export_access_rulebase" "managementExportAccessRulebaseResource" {
      lifecycle {
        create_before_destroy = true
      }
      dereference_group_members = false
      hits_settings = {
        from_date = "string"
        target    = "string"
        to_date   = "string"
      }
      management_export_access_rulebase_id = "string"
      name                                 = "string"
      package                              = "string"
      show_expiration_settings             = false
      show_hits                            = false
      show_membership                      = false
      uid                                  = "string"
      use_object_dictionary                = false
    }
    
    var managementExportAccessRulebaseResource = new ManagementExportAccessRulebase("managementExportAccessRulebaseResource", ManagementExportAccessRulebaseArgs.builder()
        .dereferenceGroupMembers(false)
        .hitsSettings(ManagementExportAccessRulebaseHitsSettingsArgs.builder()
            .fromDate("string")
            .target("string")
            .toDate("string")
            .build())
        .managementExportAccessRulebaseId("string")
        .name("string")
        .package_("string")
        .showExpirationSettings(false)
        .showHits(false)
        .showMembership(false)
        .uid("string")
        .useObjectDictionary(false)
        .build());
    
    management_export_access_rulebase_resource = checkpoint.ManagementExportAccessRulebase("managementExportAccessRulebaseResource",
        dereference_group_members=False,
        hits_settings={
            "from_date": "string",
            "target": "string",
            "to_date": "string",
        },
        management_export_access_rulebase_id="string",
        name="string",
        package="string",
        show_expiration_settings=False,
        show_hits=False,
        show_membership=False,
        uid="string",
        use_object_dictionary=False)
    
    const managementExportAccessRulebaseResource = new checkpoint.ManagementExportAccessRulebase("managementExportAccessRulebaseResource", {
        dereferenceGroupMembers: false,
        hitsSettings: {
            fromDate: "string",
            target: "string",
            toDate: "string",
        },
        managementExportAccessRulebaseId: "string",
        name: "string",
        "package": "string",
        showExpirationSettings: false,
        showHits: false,
        showMembership: false,
        uid: "string",
        useObjectDictionary: false,
    });
    
    type: checkpoint:ManagementExportAccessRulebase
    properties:
        dereferenceGroupMembers: false
        hitsSettings:
            fromDate: string
            target: string
            toDate: string
        managementExportAccessRulebaseId: string
        name: string
        package: string
        showExpirationSettings: false
        showHits: false
        showMembership: false
        uid: string
        useObjectDictionary: false
    

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

    DereferenceGroupMembers bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    HitsSettings ManagementExportAccessRulebaseHitsSettings
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    ManagementExportAccessRulebaseId string
    Name string
    Object name. Must be unique in the domain.
    Package string
    Name of the package.
    ShowExpirationSettings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    ShowHits bool
    Show hitcount data.
    ShowMembership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    Uid string
    Object unique identifier.
    UseObjectDictionary bool
    N/A
    DereferenceGroupMembers bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    HitsSettings ManagementExportAccessRulebaseHitsSettingsArgs
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    ManagementExportAccessRulebaseId string
    Name string
    Object name. Must be unique in the domain.
    Package string
    Name of the package.
    ShowExpirationSettings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    ShowHits bool
    Show hitcount data.
    ShowMembership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    Uid string
    Object unique identifier.
    UseObjectDictionary bool
    N/A
    dereference_group_members bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    hits_settings object
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    management_export_access_rulebase_id string
    name string
    Object name. Must be unique in the domain.
    package string
    Name of the package.
    show_expiration_settings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    show_hits bool
    Show hitcount data.
    show_membership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    uid string
    Object unique identifier.
    use_object_dictionary bool
    N/A
    dereferenceGroupMembers Boolean
    Indicates whether to dereference "members" field by details level for every object in reply.
    hitsSettings ManagementExportAccessRulebaseHitsSettings
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    managementExportAccessRulebaseId String
    name String
    Object name. Must be unique in the domain.
    package_ String
    Name of the package.
    showExpirationSettings Boolean
    Indicates whether to calculate and show "expiration date settings" field in reply.
    showHits Boolean
    Show hitcount data.
    showMembership Boolean
    Indicates whether to calculate and show "groups" field for every object in reply.
    uid String
    Object unique identifier.
    useObjectDictionary Boolean
    N/A
    dereferenceGroupMembers boolean
    Indicates whether to dereference "members" field by details level for every object in reply.
    hitsSettings ManagementExportAccessRulebaseHitsSettings
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    managementExportAccessRulebaseId string
    name string
    Object name. Must be unique in the domain.
    package string
    Name of the package.
    showExpirationSettings boolean
    Indicates whether to calculate and show "expiration date settings" field in reply.
    showHits boolean
    Show hitcount data.
    showMembership boolean
    Indicates whether to calculate and show "groups" field for every object in reply.
    uid string
    Object unique identifier.
    useObjectDictionary boolean
    N/A
    dereference_group_members bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    hits_settings ManagementExportAccessRulebaseHitsSettingsArgs
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    management_export_access_rulebase_id str
    name str
    Object name. Must be unique in the domain.
    package str
    Name of the package.
    show_expiration_settings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    show_hits bool
    Show hitcount data.
    show_membership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    uid str
    Object unique identifier.
    use_object_dictionary bool
    N/A
    dereferenceGroupMembers Boolean
    Indicates whether to dereference "members" field by details level for every object in reply.
    hitsSettings Property Map
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    managementExportAccessRulebaseId String
    name String
    Object name. Must be unique in the domain.
    package String
    Name of the package.
    showExpirationSettings Boolean
    Indicates whether to calculate and show "expiration date settings" field in reply.
    showHits Boolean
    Show hitcount data.
    showMembership Boolean
    Indicates whether to calculate and show "groups" field for every object in reply.
    uid String
    Object unique identifier.
    useObjectDictionary Boolean
    N/A

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementExportAccessRulebase resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    id string
    The provider-assigned unique ID for this managed resource.
    task_id string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    id string
    The provider-assigned unique ID for this managed resource.
    taskId string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    id str
    The provider-assigned unique ID for this managed resource.
    task_id str
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.

    Look up Existing ManagementExportAccessRulebase Resource

    Get an existing ManagementExportAccessRulebase 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?: ManagementExportAccessRulebaseState, opts?: CustomResourceOptions): ManagementExportAccessRulebase
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dereference_group_members: Optional[bool] = None,
            hits_settings: Optional[ManagementExportAccessRulebaseHitsSettingsArgs] = None,
            management_export_access_rulebase_id: Optional[str] = None,
            name: Optional[str] = None,
            package: Optional[str] = None,
            show_expiration_settings: Optional[bool] = None,
            show_hits: Optional[bool] = None,
            show_membership: Optional[bool] = None,
            task_id: Optional[str] = None,
            uid: Optional[str] = None,
            use_object_dictionary: Optional[bool] = None) -> ManagementExportAccessRulebase
    func GetManagementExportAccessRulebase(ctx *Context, name string, id IDInput, state *ManagementExportAccessRulebaseState, opts ...ResourceOption) (*ManagementExportAccessRulebase, error)
    public static ManagementExportAccessRulebase Get(string name, Input<string> id, ManagementExportAccessRulebaseState? state, CustomResourceOptions? opts = null)
    public static ManagementExportAccessRulebase get(String name, Output<String> id, ManagementExportAccessRulebaseState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementExportAccessRulebase    get:      id: ${id}
    import {
      to = checkpoint_management_export_access_rulebase.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:
    DereferenceGroupMembers bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    HitsSettings ManagementExportAccessRulebaseHitsSettings
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    ManagementExportAccessRulebaseId string
    Name string
    Object name. Must be unique in the domain.
    Package string
    Name of the package.
    ShowExpirationSettings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    ShowHits bool
    Show hitcount data.
    ShowMembership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    TaskId string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    Uid string
    Object unique identifier.
    UseObjectDictionary bool
    N/A
    DereferenceGroupMembers bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    HitsSettings ManagementExportAccessRulebaseHitsSettingsArgs
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    ManagementExportAccessRulebaseId string
    Name string
    Object name. Must be unique in the domain.
    Package string
    Name of the package.
    ShowExpirationSettings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    ShowHits bool
    Show hitcount data.
    ShowMembership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    TaskId string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    Uid string
    Object unique identifier.
    UseObjectDictionary bool
    N/A
    dereference_group_members bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    hits_settings object
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    management_export_access_rulebase_id string
    name string
    Object name. Must be unique in the domain.
    package string
    Name of the package.
    show_expiration_settings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    show_hits bool
    Show hitcount data.
    show_membership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    task_id string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    uid string
    Object unique identifier.
    use_object_dictionary bool
    N/A
    dereferenceGroupMembers Boolean
    Indicates whether to dereference "members" field by details level for every object in reply.
    hitsSettings ManagementExportAccessRulebaseHitsSettings
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    managementExportAccessRulebaseId String
    name String
    Object name. Must be unique in the domain.
    package_ String
    Name of the package.
    showExpirationSettings Boolean
    Indicates whether to calculate and show "expiration date settings" field in reply.
    showHits Boolean
    Show hitcount data.
    showMembership Boolean
    Indicates whether to calculate and show "groups" field for every object in reply.
    taskId String
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    uid String
    Object unique identifier.
    useObjectDictionary Boolean
    N/A
    dereferenceGroupMembers boolean
    Indicates whether to dereference "members" field by details level for every object in reply.
    hitsSettings ManagementExportAccessRulebaseHitsSettings
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    managementExportAccessRulebaseId string
    name string
    Object name. Must be unique in the domain.
    package string
    Name of the package.
    showExpirationSettings boolean
    Indicates whether to calculate and show "expiration date settings" field in reply.
    showHits boolean
    Show hitcount data.
    showMembership boolean
    Indicates whether to calculate and show "groups" field for every object in reply.
    taskId string
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    uid string
    Object unique identifier.
    useObjectDictionary boolean
    N/A
    dereference_group_members bool
    Indicates whether to dereference "members" field by details level for every object in reply.
    hits_settings ManagementExportAccessRulebaseHitsSettingsArgs
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    management_export_access_rulebase_id str
    name str
    Object name. Must be unique in the domain.
    package str
    Name of the package.
    show_expiration_settings bool
    Indicates whether to calculate and show "expiration date settings" field in reply.
    show_hits bool
    Show hitcount data.
    show_membership bool
    Indicates whether to calculate and show "groups" field for every object in reply.
    task_id str
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    uid str
    Object unique identifier.
    use_object_dictionary bool
    N/A
    dereferenceGroupMembers Boolean
    Indicates whether to dereference "members" field by details level for every object in reply.
    hitsSettings Property Map
    Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
    managementExportAccessRulebaseId String
    name String
    Object name. Must be unique in the domain.
    package String
    Name of the package.
    showExpirationSettings Boolean
    Indicates whether to calculate and show "expiration date settings" field in reply.
    showHits Boolean
    Show hitcount data.
    showMembership Boolean
    Indicates whether to calculate and show "groups" field for every object in reply.
    taskId String
    Asynchronous task unique identifier. Use show-task command to check the progress of the task.
    uid String
    Object unique identifier.
    useObjectDictionary Boolean
    N/A

    Supporting Types

    ManagementExportAccessRulebaseHitsSettings, ManagementExportAccessRulebaseHitsSettingsArgs

    FromDate string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    Target string
    Target gateway name or UID.
    ToDate string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    FromDate string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    Target string
    Target gateway name or UID.
    ToDate string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    from_date string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    target string
    Target gateway name or UID.
    to_date string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    fromDate String
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    target String
    Target gateway name or UID.
    toDate String
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    fromDate string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    target string
    Target gateway name or UID.
    toDate string
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    from_date str
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    target str
    Target gateway name or UID.
    to_date str
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    fromDate String
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
    target String
    Target gateway name or UID.
    toDate String
    Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.

    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