published on Thursday, Jul 30, 2026 by checkpointsw
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:
- Dereference
Group boolMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- Hits
Settings ManagementExport Access Rulebase Hits Settings - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- Management
Export stringAccess Rulebase Id - Name string
- Object name. Must be unique in the domain.
- Package string
- Name of the package.
- Show
Expiration boolSettings - 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 boolDictionary - N/A
- Dereference
Group boolMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- Hits
Settings ManagementExport Access Rulebase Hits Settings Args - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- Management
Export stringAccess Rulebase Id - Name string
- Object name. Must be unique in the domain.
- Package string
- Name of the package.
- Show
Expiration boolSettings - 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 boolDictionary - N/A
- dereference_
group_ boolmembers - 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_ stringaccess_ rulebase_ id - name string
- Object name. Must be unique in the domain.
- package string
- Name of the package.
- show_
expiration_ boolsettings - 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_ booldictionary - N/A
- dereference
Group BooleanMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits
Settings ManagementExport Access Rulebase Hits Settings - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management
Export StringAccess Rulebase Id - name String
- Object name. Must be unique in the domain.
- package_ String
- Name of the package.
- show
Expiration BooleanSettings - Indicates whether to calculate and show "expiration date settings" field in reply.
- show
Hits Boolean - Show hitcount data.
- show
Membership Boolean - Indicates whether to calculate and show "groups" field for every object in reply.
- uid String
- Object unique identifier.
- use
Object BooleanDictionary - N/A
- dereference
Group booleanMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits
Settings ManagementExport Access Rulebase Hits Settings - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management
Export stringAccess Rulebase Id - name string
- Object name. Must be unique in the domain.
- package string
- Name of the package.
- show
Expiration booleanSettings - Indicates whether to calculate and show "expiration date settings" field in reply.
- show
Hits boolean - Show hitcount data.
- show
Membership boolean - Indicates whether to calculate and show "groups" field for every object in reply.
- uid string
- Object unique identifier.
- use
Object booleanDictionary - N/A
- dereference_
group_ boolmembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits_
settings ManagementExport Access Rulebase Hits Settings Args - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management_
export_ straccess_ rulebase_ id - name str
- Object name. Must be unique in the domain.
- package str
- Name of the package.
- show_
expiration_ boolsettings - 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_ booldictionary - N/A
- dereference
Group BooleanMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits
Settings Property Map - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management
Export StringAccess Rulebase Id - name String
- Object name. Must be unique in the domain.
- package String
- Name of the package.
- show
Expiration BooleanSettings - Indicates whether to calculate and show "expiration date settings" field in reply.
- show
Hits Boolean - Show hitcount data.
- show
Membership Boolean - Indicates whether to calculate and show "groups" field for every object in reply.
- uid String
- Object unique identifier.
- use
Object BooleanDictionary - N/A
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementExportAccessRulebase resource produces the following output properties:
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) -> ManagementExportAccessRulebasefunc 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.
- Dereference
Group boolMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- Hits
Settings ManagementExport Access Rulebase Hits Settings - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- Management
Export stringAccess Rulebase Id - Name string
- Object name. Must be unique in the domain.
- Package string
- Name of the package.
- Show
Expiration boolSettings - 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 boolDictionary - N/A
- Dereference
Group boolMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- Hits
Settings ManagementExport Access Rulebase Hits Settings Args - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- Management
Export stringAccess Rulebase Id - Name string
- Object name. Must be unique in the domain.
- Package string
- Name of the package.
- Show
Expiration boolSettings - 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 boolDictionary - N/A
- dereference_
group_ boolmembers - 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_ stringaccess_ rulebase_ id - name string
- Object name. Must be unique in the domain.
- package string
- Name of the package.
- show_
expiration_ boolsettings - 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_ booldictionary - N/A
- dereference
Group BooleanMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits
Settings ManagementExport Access Rulebase Hits Settings - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management
Export StringAccess Rulebase Id - name String
- Object name. Must be unique in the domain.
- package_ String
- Name of the package.
- show
Expiration BooleanSettings - Indicates whether to calculate and show "expiration date settings" field in reply.
- show
Hits Boolean - Show hitcount data.
- show
Membership Boolean - 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 BooleanDictionary - N/A
- dereference
Group booleanMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits
Settings ManagementExport Access Rulebase Hits Settings - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management
Export stringAccess Rulebase Id - name string
- Object name. Must be unique in the domain.
- package string
- Name of the package.
- show
Expiration booleanSettings - Indicates whether to calculate and show "expiration date settings" field in reply.
- show
Hits boolean - Show hitcount data.
- show
Membership boolean - 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 booleanDictionary - N/A
- dereference_
group_ boolmembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits_
settings ManagementExport Access Rulebase Hits Settings Args - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management_
export_ straccess_ rulebase_ id - name str
- Object name. Must be unique in the domain.
- package str
- Name of the package.
- show_
expiration_ boolsettings - 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_ booldictionary - N/A
- dereference
Group BooleanMembers - Indicates whether to dereference "members" field by details level for every object in reply.
- hits
Settings Property Map - Hitcount settings, define the range if hits to show.hits_settings blocks are documented below.
- management
Export StringAccess Rulebase Id - name String
- Object name. Must be unique in the domain.
- package String
- Name of the package.
- show
Expiration BooleanSettings - Indicates whether to calculate and show "expiration date settings" field in reply.
- show
Hits Boolean - Show hitcount data.
- show
Membership Boolean - 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 BooleanDictionary - N/A
Supporting Types
ManagementExportAccessRulebaseHitsSettings, ManagementExportAccessRulebaseHitsSettingsArgs
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