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", {});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementAccessLayer("example")
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementAccessLayer("example");
});
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");
}
}
resources:
example:
type: checkpoint:ManagementAccessLayer
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
},
});
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"),
},
})
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());
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"])
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"],
});
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
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:
- Add
Default boolRule - Indicates whether to include a cleanup rule in the new layer.
- Applications
And boolUrl Filtering - 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.
- Content
Awareness bool - Whether to enable Content Awareness blade on the layer.
- Detect
Using boolXForward For - 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 stringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- Management
Access stringLayer Id - Mobile
Access bool - Whether to enable Mobile Access blade on the layer.
- Name string
- Object name.
- bool
- Whether this layer is shared.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Add
Default boolRule - Indicates whether to include a cleanup rule in the new layer.
- Applications
And boolUrl Filtering - 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.
- Content
Awareness bool - Whether to enable Content Awareness blade on the layer.
- Detect
Using boolXForward For - 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 stringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- Management
Access stringLayer Id - Mobile
Access bool - Whether to enable Mobile Access blade on the layer.
- Name string
- Object name.
- bool
- Whether this layer is shared.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- add
Default BooleanRule - Indicates whether to include a cleanup rule in the new layer.
- applications
And BooleanUrl Filtering - 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.
- content
Awareness Boolean - Whether to enable Content Awareness blade on the layer.
- detect
Using BooleanXForward For - 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- implicit
Cleanup StringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management
Access StringLayer Id - mobile
Access Boolean - Whether to enable Mobile Access blade on the layer.
- name String
- Object name.
- Boolean
- Whether this layer is shared.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- add
Default booleanRule - Indicates whether to include a cleanup rule in the new layer.
- applications
And booleanUrl Filtering - 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.
- content
Awareness boolean - Whether to enable Content Awareness blade on the layer.
- detect
Using booleanXForward For - 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.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- implicit
Cleanup stringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management
Access stringLayer Id - mobile
Access boolean - Whether to enable Mobile Access blade on the layer.
- name string
- Object name.
- boolean
- Whether this layer is shared.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- add_
default_ boolrule - Indicates whether to include a cleanup rule in the new layer.
- applications_
and_ boolurl_ filtering - 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_ boolx_ forward_ for - 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_ straction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management_
access_ strlayer_ id - mobile_
access bool - Whether to enable Mobile Access blade on the layer.
- name str
- Object name.
- bool
- Whether this layer is shared.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- add
Default BooleanRule - Indicates whether to include a cleanup rule in the new layer.
- applications
And BooleanUrl Filtering - 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.
- content
Awareness Boolean - Whether to enable Content Awareness blade on the layer.
- detect
Using BooleanXForward For - 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- implicit
Cleanup StringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management
Access StringLayer Id - mobile
Access Boolean - Whether to enable Mobile Access blade on the layer.
- name String
- Object name.
- Boolean
- Whether this layer is shared.
- 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
- 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.
- Add
Default boolRule - Indicates whether to include a cleanup rule in the new layer.
- Applications
And boolUrl Filtering - 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.
- Content
Awareness bool - Whether to enable Content Awareness blade on the layer.
- Detect
Using boolXForward For - 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 stringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- Management
Access stringLayer Id - Mobile
Access bool - Whether to enable Mobile Access blade on the layer.
- Name string
- Object name.
- bool
- Whether this layer is shared.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Add
Default boolRule - Indicates whether to include a cleanup rule in the new layer.
- Applications
And boolUrl Filtering - 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.
- Content
Awareness bool - Whether to enable Content Awareness blade on the layer.
- Detect
Using boolXForward For - 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 stringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- Management
Access stringLayer Id - Mobile
Access bool - Whether to enable Mobile Access blade on the layer.
- Name string
- Object name.
- bool
- Whether this layer is shared.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- add
Default BooleanRule - Indicates whether to include a cleanup rule in the new layer.
- applications
And BooleanUrl Filtering - 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.
- content
Awareness Boolean - Whether to enable Content Awareness blade on the layer.
- detect
Using BooleanXForward For - 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- implicit
Cleanup StringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management
Access StringLayer Id - mobile
Access Boolean - Whether to enable Mobile Access blade on the layer.
- name String
- Object name.
- Boolean
- Whether this layer is shared.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- add
Default booleanRule - Indicates whether to include a cleanup rule in the new layer.
- applications
And booleanUrl Filtering - 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.
- content
Awareness boolean - Whether to enable Content Awareness blade on the layer.
- detect
Using booleanXForward For - 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.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- implicit
Cleanup stringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management
Access stringLayer Id - mobile
Access boolean - Whether to enable Mobile Access blade on the layer.
- name string
- Object name.
- boolean
- Whether this layer is shared.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- add_
default_ boolrule - Indicates whether to include a cleanup rule in the new layer.
- applications_
and_ boolurl_ filtering - 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_ boolx_ forward_ for - 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_ straction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management_
access_ strlayer_ id - mobile_
access bool - Whether to enable Mobile Access blade on the layer.
- name str
- Object name.
- bool
- Whether this layer is shared.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- add
Default BooleanRule - Indicates whether to include a cleanup rule in the new layer.
- applications
And BooleanUrl Filtering - 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.
- content
Awareness Boolean - Whether to enable Content Awareness blade on the layer.
- detect
Using BooleanXForward For - 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- implicit
Cleanup StringAction - The default "catch-all" action for traffic that does not match any explicit or implied rules in the layer.
- management
Access StringLayer Id - mobile
Access Boolean - Whether to enable Mobile Access blade on the layer.
- name String
- Object name.
- Boolean
- Whether this layer is shared.
- 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.