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

checkpoint.ManagementAccessPointName

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    This resource allows you to execute Check Point Access Point Name.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementAccessPointName("example", {
        apn: "apnname",
        endUserDomain: "All_Internet",
        enforceEndUserDomain: true,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementAccessPointName("example",
        apn="apnname",
        end_user_domain="All_Internet",
        enforce_end_user_domain=True)
    
    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.NewManagementAccessPointName(ctx, "example", &checkpoint.ManagementAccessPointNameArgs{
    			Apn:                  pulumi.String("apnname"),
    			EndUserDomain:        pulumi.String("All_Internet"),
    			EnforceEndUserDomain: pulumi.Bool(true),
    		})
    		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.ManagementAccessPointName("example", new()
        {
            Apn = "apnname",
            EndUserDomain = "All_Internet",
            EnforceEndUserDomain = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementAccessPointName;
    import com.pulumi.checkpoint.ManagementAccessPointNameArgs;
    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 ManagementAccessPointName("example", ManagementAccessPointNameArgs.builder()
                .apn("apnname")
                .endUserDomain("All_Internet")
                .enforceEndUserDomain(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementAccessPointName
        properties:
          apn: apnname
          endUserDomain: All_Internet
          enforceEndUserDomain: true
    

    Create ManagementAccessPointName Resource

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

    Constructor syntax

    new ManagementAccessPointName(name: string, args?: ManagementAccessPointNameArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementAccessPointName(resource_name: str,
                                  args: Optional[ManagementAccessPointNameArgs] = None,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementAccessPointName(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  apn: Optional[str] = None,
                                  block_traffic_other_end_user_domains: Optional[bool] = None,
                                  block_traffic_this_end_user_domain: Optional[bool] = None,
                                  color: Optional[str] = None,
                                  comments: Optional[str] = None,
                                  end_user_domain: Optional[str] = None,
                                  enforce_end_user_domain: Optional[bool] = None,
                                  ignore_errors: Optional[bool] = None,
                                  ignore_warnings: Optional[bool] = None,
                                  management_access_point_name_id: Optional[str] = None,
                                  name: Optional[str] = None,
                                  tags: Optional[Sequence[str]] = None)
    func NewManagementAccessPointName(ctx *Context, name string, args *ManagementAccessPointNameArgs, opts ...ResourceOption) (*ManagementAccessPointName, error)
    public ManagementAccessPointName(string name, ManagementAccessPointNameArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementAccessPointName(String name, ManagementAccessPointNameArgs args)
    public ManagementAccessPointName(String name, ManagementAccessPointNameArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementAccessPointName
    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 ManagementAccessPointNameArgs
    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 ManagementAccessPointNameArgs
    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 ManagementAccessPointNameArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementAccessPointNameArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementAccessPointNameArgs
    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 managementAccessPointNameResource = new Checkpoint.ManagementAccessPointName("managementAccessPointNameResource", new()
    {
        Apn = "string",
        BlockTrafficOtherEndUserDomains = false,
        BlockTrafficThisEndUserDomain = false,
        Color = "string",
        Comments = "string",
        EndUserDomain = "string",
        EnforceEndUserDomain = false,
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementAccessPointNameId = "string",
        Name = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementAccessPointName(ctx, "managementAccessPointNameResource", &checkpoint.ManagementAccessPointNameArgs{
    	Apn:                             pulumi.String("string"),
    	BlockTrafficOtherEndUserDomains: pulumi.Bool(false),
    	BlockTrafficThisEndUserDomain:   pulumi.Bool(false),
    	Color:                           pulumi.String("string"),
    	Comments:                        pulumi.String("string"),
    	EndUserDomain:                   pulumi.String("string"),
    	EnforceEndUserDomain:            pulumi.Bool(false),
    	IgnoreErrors:                    pulumi.Bool(false),
    	IgnoreWarnings:                  pulumi.Bool(false),
    	ManagementAccessPointNameId:     pulumi.String("string"),
    	Name:                            pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var managementAccessPointNameResource = new ManagementAccessPointName("managementAccessPointNameResource", ManagementAccessPointNameArgs.builder()
        .apn("string")
        .blockTrafficOtherEndUserDomains(false)
        .blockTrafficThisEndUserDomain(false)
        .color("string")
        .comments("string")
        .endUserDomain("string")
        .enforceEndUserDomain(false)
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementAccessPointNameId("string")
        .name("string")
        .tags("string")
        .build());
    
    management_access_point_name_resource = checkpoint.ManagementAccessPointName("managementAccessPointNameResource",
        apn="string",
        block_traffic_other_end_user_domains=False,
        block_traffic_this_end_user_domain=False,
        color="string",
        comments="string",
        end_user_domain="string",
        enforce_end_user_domain=False,
        ignore_errors=False,
        ignore_warnings=False,
        management_access_point_name_id="string",
        name="string",
        tags=["string"])
    
    const managementAccessPointNameResource = new checkpoint.ManagementAccessPointName("managementAccessPointNameResource", {
        apn: "string",
        blockTrafficOtherEndUserDomains: false,
        blockTrafficThisEndUserDomain: false,
        color: "string",
        comments: "string",
        endUserDomain: "string",
        enforceEndUserDomain: false,
        ignoreErrors: false,
        ignoreWarnings: false,
        managementAccessPointNameId: "string",
        name: "string",
        tags: ["string"],
    });
    
    type: checkpoint:ManagementAccessPointName
    properties:
        apn: string
        blockTrafficOtherEndUserDomains: false
        blockTrafficThisEndUserDomain: false
        color: string
        comments: string
        endUserDomain: string
        enforceEndUserDomain: false
        ignoreErrors: false
        ignoreWarnings: false
        managementAccessPointNameId: string
        name: string
        tags:
            - string
    

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

    Apn string
    APN name.
    BlockTrafficOtherEndUserDomains bool
    Block MS to MS traffic between this and other APN end user domains.
    BlockTrafficThisEndUserDomain bool
    Block MS to MS traffic within this end user domain.
    Color string
    Color of the object.
    Comments string
    Comments string.
    EndUserDomain string
    End user domain name or UID.
    EnforceEndUserDomain bool
    Enable enforce end user domain.
    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.
    ManagementAccessPointNameId string
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.
    Apn string
    APN name.
    BlockTrafficOtherEndUserDomains bool
    Block MS to MS traffic between this and other APN end user domains.
    BlockTrafficThisEndUserDomain bool
    Block MS to MS traffic within this end user domain.
    Color string
    Color of the object.
    Comments string
    Comments string.
    EndUserDomain string
    End user domain name or UID.
    EnforceEndUserDomain bool
    Enable enforce end user domain.
    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.
    ManagementAccessPointNameId string
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.
    apn String
    APN name.
    blockTrafficOtherEndUserDomains Boolean
    Block MS to MS traffic between this and other APN end user domains.
    blockTrafficThisEndUserDomain Boolean
    Block MS to MS traffic within this end user domain.
    color String
    Color of the object.
    comments String
    Comments string.
    endUserDomain String
    End user domain name or UID.
    enforceEndUserDomain Boolean
    Enable enforce end user domain.
    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.
    managementAccessPointNameId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.
    apn string
    APN name.
    blockTrafficOtherEndUserDomains boolean
    Block MS to MS traffic between this and other APN end user domains.
    blockTrafficThisEndUserDomain boolean
    Block MS to MS traffic within this end user domain.
    color string
    Color of the object.
    comments string
    Comments string.
    endUserDomain string
    End user domain name or UID.
    enforceEndUserDomain boolean
    Enable enforce end user domain.
    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.
    managementAccessPointNameId string
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.
    apn str
    APN name.
    block_traffic_other_end_user_domains bool
    Block MS to MS traffic between this and other APN end user domains.
    block_traffic_this_end_user_domain bool
    Block MS to MS traffic within this end user domain.
    color str
    Color of the object.
    comments str
    Comments string.
    end_user_domain str
    End user domain name or UID.
    enforce_end_user_domain bool
    Enable enforce end user domain.
    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.
    management_access_point_name_id str
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.
    apn String
    APN name.
    blockTrafficOtherEndUserDomains Boolean
    Block MS to MS traffic between this and other APN end user domains.
    blockTrafficThisEndUserDomain Boolean
    Block MS to MS traffic within this end user domain.
    color String
    Color of the object.
    comments String
    Comments string.
    endUserDomain String
    End user domain name or UID.
    enforceEndUserDomain Boolean
    Enable enforce end user domain.
    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.
    managementAccessPointNameId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementAccessPointName 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 ManagementAccessPointName Resource

    Get an existing ManagementAccessPointName 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?: ManagementAccessPointNameState, opts?: CustomResourceOptions): ManagementAccessPointName
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            apn: Optional[str] = None,
            block_traffic_other_end_user_domains: Optional[bool] = None,
            block_traffic_this_end_user_domain: Optional[bool] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            end_user_domain: Optional[str] = None,
            enforce_end_user_domain: Optional[bool] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_access_point_name_id: Optional[str] = None,
            name: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementAccessPointName
    func GetManagementAccessPointName(ctx *Context, name string, id IDInput, state *ManagementAccessPointNameState, opts ...ResourceOption) (*ManagementAccessPointName, error)
    public static ManagementAccessPointName Get(string name, Input<string> id, ManagementAccessPointNameState? state, CustomResourceOptions? opts = null)
    public static ManagementAccessPointName get(String name, Output<String> id, ManagementAccessPointNameState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementAccessPointName    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.
    The following state arguments are supported:
    Apn string
    APN name.
    BlockTrafficOtherEndUserDomains bool
    Block MS to MS traffic between this and other APN end user domains.
    BlockTrafficThisEndUserDomain bool
    Block MS to MS traffic within this end user domain.
    Color string
    Color of the object.
    Comments string
    Comments string.
    EndUserDomain string
    End user domain name or UID.
    EnforceEndUserDomain bool
    Enable enforce end user domain.
    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.
    ManagementAccessPointNameId string
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.
    Apn string
    APN name.
    BlockTrafficOtherEndUserDomains bool
    Block MS to MS traffic between this and other APN end user domains.
    BlockTrafficThisEndUserDomain bool
    Block MS to MS traffic within this end user domain.
    Color string
    Color of the object.
    Comments string
    Comments string.
    EndUserDomain string
    End user domain name or UID.
    EnforceEndUserDomain bool
    Enable enforce end user domain.
    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.
    ManagementAccessPointNameId string
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.
    apn String
    APN name.
    blockTrafficOtherEndUserDomains Boolean
    Block MS to MS traffic between this and other APN end user domains.
    blockTrafficThisEndUserDomain Boolean
    Block MS to MS traffic within this end user domain.
    color String
    Color of the object.
    comments String
    Comments string.
    endUserDomain String
    End user domain name or UID.
    enforceEndUserDomain Boolean
    Enable enforce end user domain.
    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.
    managementAccessPointNameId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.
    apn string
    APN name.
    blockTrafficOtherEndUserDomains boolean
    Block MS to MS traffic between this and other APN end user domains.
    blockTrafficThisEndUserDomain boolean
    Block MS to MS traffic within this end user domain.
    color string
    Color of the object.
    comments string
    Comments string.
    endUserDomain string
    End user domain name or UID.
    enforceEndUserDomain boolean
    Enable enforce end user domain.
    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.
    managementAccessPointNameId string
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.
    apn str
    APN name.
    block_traffic_other_end_user_domains bool
    Block MS to MS traffic between this and other APN end user domains.
    block_traffic_this_end_user_domain bool
    Block MS to MS traffic within this end user domain.
    color str
    Color of the object.
    comments str
    Comments string.
    end_user_domain str
    End user domain name or UID.
    enforce_end_user_domain bool
    Enable enforce end user domain.
    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.
    management_access_point_name_id str
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.
    apn String
    APN name.
    blockTrafficOtherEndUserDomains Boolean
    Block MS to MS traffic between this and other APN end user domains.
    blockTrafficThisEndUserDomain Boolean
    Block MS to MS traffic within this end user domain.
    color String
    Color of the object.
    comments String
    Comments string.
    endUserDomain String
    End user domain name or UID.
    enforceEndUserDomain Boolean
    Enable enforce end user domain.
    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.
    managementAccessPointNameId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw