1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementAccessLayer
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementAccessLayer

Explore with Pulumi AI

This resource allows you to execute Check Point Access Layer.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";

const example = new checkpoint.ManagementAccessLayer("example", {});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

example = checkpoint.ManagementAccessLayer("example")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := checkpoint.NewManagementAccessLayer(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var example = new Checkpoint.ManagementAccessLayer("example");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementAccessLayer;
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 ManagementAccessLayer("example");

    }
}
Copy
resources:
  example:
    type: checkpoint:ManagementAccessLayer
Copy

Create ManagementAccessLayer Resource

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

Constructor syntax

new ManagementAccessLayer(name: string, args?: ManagementAccessLayerArgs, opts?: CustomResourceOptions);
@overload
def ManagementAccessLayer(resource_name: str,
                          args: Optional[ManagementAccessLayerArgs] = None,
                          opts: Optional[ResourceOptions] = None)

@overload
def ManagementAccessLayer(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          add_default_rule: Optional[bool] = None,
                          applications_and_url_filtering: Optional[bool] = None,
                          color: Optional[str] = None,
                          comments: Optional[str] = None,
                          content_awareness: Optional[bool] = None,
                          detect_using_x_forward_for: Optional[bool] = None,
                          firewall: Optional[bool] = None,
                          ignore_errors: Optional[bool] = None,
                          ignore_warnings: Optional[bool] = None,
                          implicit_cleanup_action: Optional[str] = None,
                          management_access_layer_id: Optional[str] = None,
                          mobile_access: Optional[bool] = None,
                          name: Optional[str] = None,
                          shared: Optional[bool] = None,
                          tags: Optional[Sequence[str]] = None)
func NewManagementAccessLayer(ctx *Context, name string, args *ManagementAccessLayerArgs, opts ...ResourceOption) (*ManagementAccessLayer, error)
public ManagementAccessLayer(string name, ManagementAccessLayerArgs? args = null, CustomResourceOptions? opts = null)
public ManagementAccessLayer(String name, ManagementAccessLayerArgs args)
public ManagementAccessLayer(String name, ManagementAccessLayerArgs args, CustomResourceOptions options)
type: checkpoint:ManagementAccessLayer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ManagementAccessLayerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ManagementAccessLayerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ManagementAccessLayerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ManagementAccessLayerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementAccessLayerArgs
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 managementAccessLayerResource = new Checkpoint.ManagementAccessLayer("managementAccessLayerResource", new()
{
    AddDefaultRule = false,
    ApplicationsAndUrlFiltering = false,
    Color = "string",
    Comments = "string",
    ContentAwareness = false,
    DetectUsingXForwardFor = false,
    Firewall = false,
    IgnoreErrors = false,
    IgnoreWarnings = false,
    ImplicitCleanupAction = "string",
    ManagementAccessLayerId = "string",
    MobileAccess = false,
    Name = "string",
    Shared = false,
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := checkpoint.NewManagementAccessLayer(ctx, "managementAccessLayerResource", &checkpoint.ManagementAccessLayerArgs{
	AddDefaultRule:              pulumi.Bool(false),
	ApplicationsAndUrlFiltering: pulumi.Bool(false),
	Color:                       pulumi.String("string"),
	Comments:                    pulumi.String("string"),
	ContentAwareness:            pulumi.Bool(false),
	DetectUsingXForwardFor:      pulumi.Bool(false),
	Firewall:                    pulumi.Bool(false),
	IgnoreErrors:                pulumi.Bool(false),
	IgnoreWarnings:              pulumi.Bool(false),
	ImplicitCleanupAction:       pulumi.String("string"),
	ManagementAccessLayerId:     pulumi.String("string"),
	MobileAccess:                pulumi.Bool(false),
	Name:                        pulumi.String("string"),
	Shared:                      pulumi.Bool(false),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var managementAccessLayerResource = new ManagementAccessLayer("managementAccessLayerResource", ManagementAccessLayerArgs.builder()
    .addDefaultRule(false)
    .applicationsAndUrlFiltering(false)
    .color("string")
    .comments("string")
    .contentAwareness(false)
    .detectUsingXForwardFor(false)
    .firewall(false)
    .ignoreErrors(false)
    .ignoreWarnings(false)
    .implicitCleanupAction("string")
    .managementAccessLayerId("string")
    .mobileAccess(false)
    .name("string")
    .shared(false)
    .tags("string")
    .build());
Copy
management_access_layer_resource = checkpoint.ManagementAccessLayer("managementAccessLayerResource",
    add_default_rule=False,
    applications_and_url_filtering=False,
    color="string",
    comments="string",
    content_awareness=False,
    detect_using_x_forward_for=False,
    firewall=False,
    ignore_errors=False,
    ignore_warnings=False,
    implicit_cleanup_action="string",
    management_access_layer_id="string",
    mobile_access=False,
    name="string",
    shared=False,
    tags=["string"])
Copy
const managementAccessLayerResource = new checkpoint.ManagementAccessLayer("managementAccessLayerResource", {
    addDefaultRule: false,
    applicationsAndUrlFiltering: false,
    color: "string",
    comments: "string",
    contentAwareness: false,
    detectUsingXForwardFor: false,
    firewall: false,
    ignoreErrors: false,
    ignoreWarnings: false,
    implicitCleanupAction: "string",
    managementAccessLayerId: "string",
    mobileAccess: false,
    name: "string",
    shared: false,
    tags: ["string"],
});
Copy
type: checkpoint:ManagementAccessLayer
properties:
    addDefaultRule: false
    applicationsAndUrlFiltering: false
    color: string
    comments: string
    contentAwareness: false
    detectUsingXForwardFor: false
    firewall: false
    ignoreErrors: false
    ignoreWarnings: false
    implicitCleanupAction: string
    managementAccessLayerId: string
    mobileAccess: false
    name: string
    shared: false
    tags:
        - string
Copy

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

AddDefaultRule bool
Indicates whether to include a cleanup rule in the new layer.
ApplicationsAndUrlFiltering bool
Whether to enable Applications & URL Filtering blade on the layer.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
ContentAwareness bool
Whether to enable Content Awareness blade on the layer.
DetectUsingXForwardFor bool
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
Firewall bool
Whether to enable Firewall blade on the layer.
IgnoreErrors bool
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
IgnoreWarnings bool
Apply changes ignoring warnings.
ImplicitCleanupAction string
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
ManagementAccessLayerId string
MobileAccess bool
Whether to enable Mobile Access blade on the layer.
Name string
Object name.
Shared bool
Whether this layer is shared.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
AddDefaultRule bool
Indicates whether to include a cleanup rule in the new layer.
ApplicationsAndUrlFiltering bool
Whether to enable Applications & URL Filtering blade on the layer.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
ContentAwareness bool
Whether to enable Content Awareness blade on the layer.
DetectUsingXForwardFor bool
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
Firewall bool
Whether to enable Firewall blade on the layer.
IgnoreErrors bool
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
IgnoreWarnings bool
Apply changes ignoring warnings.
ImplicitCleanupAction string
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
ManagementAccessLayerId string
MobileAccess bool
Whether to enable Mobile Access blade on the layer.
Name string
Object name.
Shared bool
Whether this layer is shared.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
addDefaultRule Boolean
Indicates whether to include a cleanup rule in the new layer.
applicationsAndUrlFiltering Boolean
Whether to enable Applications & URL Filtering blade on the layer.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
contentAwareness Boolean
Whether to enable Content Awareness blade on the layer.
detectUsingXForwardFor Boolean
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall Boolean
Whether to enable Firewall blade on the layer.
ignoreErrors Boolean
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignoreWarnings Boolean
Apply changes ignoring warnings.
implicitCleanupAction String
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
managementAccessLayerId String
mobileAccess Boolean
Whether to enable Mobile Access blade on the layer.
name String
Object name.
shared Boolean
Whether this layer is shared.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
addDefaultRule boolean
Indicates whether to include a cleanup rule in the new layer.
applicationsAndUrlFiltering boolean
Whether to enable Applications & URL Filtering blade on the layer.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
contentAwareness boolean
Whether to enable Content Awareness blade on the layer.
detectUsingXForwardFor boolean
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall boolean
Whether to enable Firewall blade on the layer.
ignoreErrors boolean
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignoreWarnings boolean
Apply changes ignoring warnings.
implicitCleanupAction string
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
managementAccessLayerId string
mobileAccess boolean
Whether to enable Mobile Access blade on the layer.
name string
Object name.
shared boolean
Whether this layer is shared.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
add_default_rule bool
Indicates whether to include a cleanup rule in the new layer.
applications_and_url_filtering bool
Whether to enable Applications & URL Filtering blade on the layer.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
content_awareness bool
Whether to enable Content Awareness blade on the layer.
detect_using_x_forward_for bool
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall bool
Whether to enable Firewall blade on the layer.
ignore_errors bool
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignore_warnings bool
Apply changes ignoring warnings.
implicit_cleanup_action str
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
management_access_layer_id str
mobile_access bool
Whether to enable Mobile Access blade on the layer.
name str
Object name.
shared bool
Whether this layer is shared.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
addDefaultRule Boolean
Indicates whether to include a cleanup rule in the new layer.
applicationsAndUrlFiltering Boolean
Whether to enable Applications & URL Filtering blade on the layer.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
contentAwareness Boolean
Whether to enable Content Awareness blade on the layer.
detectUsingXForwardFor Boolean
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall Boolean
Whether to enable Firewall blade on the layer.
ignoreErrors Boolean
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignoreWarnings Boolean
Apply changes ignoring warnings.
implicitCleanupAction String
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
managementAccessLayerId String
mobileAccess Boolean
Whether to enable Mobile Access blade on the layer.
name String
Object name.
shared Boolean
Whether this layer is shared.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ManagementAccessLayer Resource

Get an existing ManagementAccessLayer 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?: ManagementAccessLayerState, opts?: CustomResourceOptions): ManagementAccessLayer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        add_default_rule: Optional[bool] = None,
        applications_and_url_filtering: Optional[bool] = None,
        color: Optional[str] = None,
        comments: Optional[str] = None,
        content_awareness: Optional[bool] = None,
        detect_using_x_forward_for: Optional[bool] = None,
        firewall: Optional[bool] = None,
        ignore_errors: Optional[bool] = None,
        ignore_warnings: Optional[bool] = None,
        implicit_cleanup_action: Optional[str] = None,
        management_access_layer_id: Optional[str] = None,
        mobile_access: Optional[bool] = None,
        name: Optional[str] = None,
        shared: Optional[bool] = None,
        tags: Optional[Sequence[str]] = None) -> ManagementAccessLayer
func GetManagementAccessLayer(ctx *Context, name string, id IDInput, state *ManagementAccessLayerState, opts ...ResourceOption) (*ManagementAccessLayer, error)
public static ManagementAccessLayer Get(string name, Input<string> id, ManagementAccessLayerState? state, CustomResourceOptions? opts = null)
public static ManagementAccessLayer get(String name, Output<String> id, ManagementAccessLayerState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementAccessLayer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AddDefaultRule bool
Indicates whether to include a cleanup rule in the new layer.
ApplicationsAndUrlFiltering bool
Whether to enable Applications & URL Filtering blade on the layer.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
ContentAwareness bool
Whether to enable Content Awareness blade on the layer.
DetectUsingXForwardFor bool
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
Firewall bool
Whether to enable Firewall blade on the layer.
IgnoreErrors bool
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
IgnoreWarnings bool
Apply changes ignoring warnings.
ImplicitCleanupAction string
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
ManagementAccessLayerId string
MobileAccess bool
Whether to enable Mobile Access blade on the layer.
Name string
Object name.
Shared bool
Whether this layer is shared.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
AddDefaultRule bool
Indicates whether to include a cleanup rule in the new layer.
ApplicationsAndUrlFiltering bool
Whether to enable Applications & URL Filtering blade on the layer.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
ContentAwareness bool
Whether to enable Content Awareness blade on the layer.
DetectUsingXForwardFor bool
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
Firewall bool
Whether to enable Firewall blade on the layer.
IgnoreErrors bool
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
IgnoreWarnings bool
Apply changes ignoring warnings.
ImplicitCleanupAction string
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
ManagementAccessLayerId string
MobileAccess bool
Whether to enable Mobile Access blade on the layer.
Name string
Object name.
Shared bool
Whether this layer is shared.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
addDefaultRule Boolean
Indicates whether to include a cleanup rule in the new layer.
applicationsAndUrlFiltering Boolean
Whether to enable Applications & URL Filtering blade on the layer.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
contentAwareness Boolean
Whether to enable Content Awareness blade on the layer.
detectUsingXForwardFor Boolean
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall Boolean
Whether to enable Firewall blade on the layer.
ignoreErrors Boolean
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignoreWarnings Boolean
Apply changes ignoring warnings.
implicitCleanupAction String
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
managementAccessLayerId String
mobileAccess Boolean
Whether to enable Mobile Access blade on the layer.
name String
Object name.
shared Boolean
Whether this layer is shared.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
addDefaultRule boolean
Indicates whether to include a cleanup rule in the new layer.
applicationsAndUrlFiltering boolean
Whether to enable Applications & URL Filtering blade on the layer.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
contentAwareness boolean
Whether to enable Content Awareness blade on the layer.
detectUsingXForwardFor boolean
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall boolean
Whether to enable Firewall blade on the layer.
ignoreErrors boolean
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignoreWarnings boolean
Apply changes ignoring warnings.
implicitCleanupAction string
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
managementAccessLayerId string
mobileAccess boolean
Whether to enable Mobile Access blade on the layer.
name string
Object name.
shared boolean
Whether this layer is shared.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
add_default_rule bool
Indicates whether to include a cleanup rule in the new layer.
applications_and_url_filtering bool
Whether to enable Applications & URL Filtering blade on the layer.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
content_awareness bool
Whether to enable Content Awareness blade on the layer.
detect_using_x_forward_for bool
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall bool
Whether to enable Firewall blade on the layer.
ignore_errors bool
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignore_warnings bool
Apply changes ignoring warnings.
implicit_cleanup_action str
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
management_access_layer_id str
mobile_access bool
Whether to enable Mobile Access blade on the layer.
name str
Object name.
shared bool
Whether this layer is shared.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
addDefaultRule Boolean
Indicates whether to include a cleanup rule in the new layer.
applicationsAndUrlFiltering Boolean
Whether to enable Applications & URL Filtering blade on the layer.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
contentAwareness Boolean
Whether to enable Content Awareness blade on the layer.
detectUsingXForwardFor Boolean
Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
firewall Boolean
Whether to enable Firewall blade on the layer.
ignoreErrors Boolean
Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
ignoreWarnings Boolean
Apply changes ignoring warnings.
implicitCleanupAction String
The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
managementAccessLayerId String
mobileAccess Boolean
Whether to enable Mobile Access blade on the layer.
name String
Object name.
shared Boolean
Whether this layer is shared.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.