1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaRoutemapId
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Routemap Id.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaRoutemapId("example", {
        resourceId: 1,
        name: "bgp_export",
        state: "restrict",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaRoutemapId("example",
        resource_id=1,
        name="bgp_export",
        state="restrict")
    
    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.NewGaiaRoutemapId(ctx, "example", &checkpoint.GaiaRoutemapIdArgs{
    			ResourceId: pulumi.Float64(1),
    			Name:       pulumi.String("bgp_export"),
    			State:      pulumi.String("restrict"),
    		})
    		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.GaiaRoutemapId("example", new()
        {
            ResourceId = 1,
            Name = "bgp_export",
            State = "restrict",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaRoutemapId;
    import com.pulumi.checkpoint.GaiaRoutemapIdArgs;
    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 GaiaRoutemapId("example", GaiaRoutemapIdArgs.builder()
                .resourceId(1.0)
                .name("bgp_export")
                .state("restrict")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaRoutemapId
        properties:
          resourceId: 1
          name: bgp_export
          state: restrict
    
    Example coming soon!
    

    Create GaiaRoutemapId Resource

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

    Constructor syntax

    new GaiaRoutemapId(name: string, args: GaiaRoutemapIdArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaRoutemapId(resource_name: str,
                       args: GaiaRoutemapIdArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaRoutemapId(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       resource_id: Optional[float] = None,
                       state: Optional[str] = None,
                       debug: Optional[bool] = None,
                       gaia_routemap_id_id: Optional[str] = None,
                       member_id: Optional[str] = None,
                       name: Optional[str] = None)
    func NewGaiaRoutemapId(ctx *Context, name string, args GaiaRoutemapIdArgs, opts ...ResourceOption) (*GaiaRoutemapId, error)
    public GaiaRoutemapId(string name, GaiaRoutemapIdArgs args, CustomResourceOptions? opts = null)
    public GaiaRoutemapId(String name, GaiaRoutemapIdArgs args)
    public GaiaRoutemapId(String name, GaiaRoutemapIdArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaRoutemapId
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiaroutemapid" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaRoutemapIdArgs
    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 GaiaRoutemapIdArgs
    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 GaiaRoutemapIdArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaRoutemapIdArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaRoutemapIdArgs
    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 gaiaRoutemapIdResource = new Checkpoint.GaiaRoutemapId("gaiaRoutemapIdResource", new()
    {
        ResourceId = 0,
        State = "string",
        Debug = false,
        GaiaRoutemapIdId = "string",
        MemberId = "string",
        Name = "string",
    });
    
    example, err := checkpoint.NewGaiaRoutemapId(ctx, "gaiaRoutemapIdResource", &checkpoint.GaiaRoutemapIdArgs{
    	ResourceId:       pulumi.Float64(0),
    	State:            pulumi.String("string"),
    	Debug:            pulumi.Bool(false),
    	GaiaRoutemapIdId: pulumi.String("string"),
    	MemberId:         pulumi.String("string"),
    	Name:             pulumi.String("string"),
    })
    
    resource "checkpoint_gaiaroutemapid" "gaiaRoutemapIdResource" {
      resource_id         = 0
      state               = "string"
      debug               = false
      gaia_routemap_id_id = "string"
      member_id           = "string"
      name                = "string"
    }
    
    var gaiaRoutemapIdResource = new GaiaRoutemapId("gaiaRoutemapIdResource", GaiaRoutemapIdArgs.builder()
        .resourceId(0.0)
        .state("string")
        .debug(false)
        .gaiaRoutemapIdId("string")
        .memberId("string")
        .name("string")
        .build());
    
    gaia_routemap_id_resource = checkpoint.GaiaRoutemapId("gaiaRoutemapIdResource",
        resource_id=float(0),
        state="string",
        debug=False,
        gaia_routemap_id_id="string",
        member_id="string",
        name="string")
    
    const gaiaRoutemapIdResource = new checkpoint.GaiaRoutemapId("gaiaRoutemapIdResource", {
        resourceId: 0,
        state: "string",
        debug: false,
        gaiaRoutemapIdId: "string",
        memberId: "string",
        name: "string",
    });
    
    type: checkpoint:GaiaRoutemapId
    properties:
        debug: false
        gaiaRoutemapIdId: string
        memberId: string
        name: string
        resourceId: 0
        state: string
    

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

    ResourceId double
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    State string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    Debug bool
    Enable debug logging for this resource.
    GaiaRoutemapIdId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    ResourceId float64
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    State string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    Debug bool
    Enable debug logging for this resource.
    GaiaRoutemapIdId string
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resource_id number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug bool
    Enable debug logging for this resource.
    gaia_routemap_id_id string
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resourceId Double
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state String
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug Boolean
    Enable debug logging for this resource.
    gaiaRoutemapIdId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name String
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resourceId number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug boolean
    Enable debug logging for this resource.
    gaiaRoutemapIdId string
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resource_id float
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state str
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug bool
    Enable debug logging for this resource.
    gaia_routemap_id_id str
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name str
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resourceId Number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state String
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug Boolean
    Enable debug logging for this resource.
    gaiaRoutemapIdId String
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name String
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<GaiaRoutemapIdId>
    Computed field, returned in the response. ids blocks are documented below.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []GaiaRoutemapIdId
    Computed field, returned in the response. ids blocks are documented below.
    id string
    The provider-assigned unique ID for this managed resource.
    ids list(object)
    Computed field, returned in the response. ids blocks are documented below.
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<GaiaRoutemapIdId>
    Computed field, returned in the response. ids blocks are documented below.
    id string
    The provider-assigned unique ID for this managed resource.
    ids GaiaRoutemapIdId[]
    Computed field, returned in the response. ids blocks are documented below.
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[GaiaRoutemapIdId]
    Computed field, returned in the response. ids blocks are documented below.
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<Property Map>
    Computed field, returned in the response. ids blocks are documented below.

    Look up Existing GaiaRoutemapId Resource

    Get an existing GaiaRoutemapId 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?: GaiaRoutemapIdState, opts?: CustomResourceOptions): GaiaRoutemapId
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_routemap_id_id: Optional[str] = None,
            ids: Optional[Sequence[GaiaRoutemapIdIdArgs]] = None,
            member_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_id: Optional[float] = None,
            state: Optional[str] = None) -> GaiaRoutemapId
    func GetGaiaRoutemapId(ctx *Context, name string, id IDInput, state *GaiaRoutemapIdState, opts ...ResourceOption) (*GaiaRoutemapId, error)
    public static GaiaRoutemapId Get(string name, Input<string> id, GaiaRoutemapIdState? state, CustomResourceOptions? opts = null)
    public static GaiaRoutemapId get(String name, Output<String> id, GaiaRoutemapIdState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaRoutemapId    get:      id: ${id}
    import {
      to = checkpoint_gaiaroutemapid.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Debug bool
    Enable debug logging for this resource.
    GaiaRoutemapIdId string
    Ids List<GaiaRoutemapIdId>
    Computed field, returned in the response. ids blocks are documented below.
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    ResourceId double
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    State string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    Debug bool
    Enable debug logging for this resource.
    GaiaRoutemapIdId string
    Ids []GaiaRoutemapIdIdArgs
    Computed field, returned in the response. ids blocks are documented below.
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    ResourceId float64
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    State string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug bool
    Enable debug logging for this resource.
    gaia_routemap_id_id string
    ids list(object)
    Computed field, returned in the response. ids blocks are documented below.
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resource_id number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug Boolean
    Enable debug logging for this resource.
    gaiaRoutemapIdId String
    ids List<GaiaRoutemapIdId>
    Computed field, returned in the response. ids blocks are documented below.
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name String
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resourceId Double
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state String
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug boolean
    Enable debug logging for this resource.
    gaiaRoutemapIdId string
    ids GaiaRoutemapIdId[]
    Computed field, returned in the response. ids blocks are documented below.
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name string
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resourceId number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state string
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug bool
    Enable debug logging for this resource.
    gaia_routemap_id_id str
    ids Sequence[GaiaRoutemapIdIdArgs]
    Computed field, returned in the response. ids blocks are documented below.
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name str
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resource_id float
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state str
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.
    debug Boolean
    Enable debug logging for this resource.
    gaiaRoutemapIdId String
    ids List<Property Map>
    Computed field, returned in the response. ids blocks are documented below.
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    name String
    Configures Routemap name. If the Routemap with the name doesn't exist, it will be created. The Routemap name will be used to configure export and import policy for various dynamic routing protocols.
    resourceId Number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state String
    Configures state for Routemap ID. Any of the following values are permissible: allow, restrict, inactive. Allow - If route is matched, it will be accepted by import or export policy. Restrict - If route is matched, it will be rejected by the import or export policy. Inactive - If route is matched, it will not be taken into consideration by the import and export policy.

    Supporting Types

    GaiaRoutemapIdId, GaiaRoutemapIdIdArgs

    Action string
    Computed field, returned in the response. action blocks are documented below.
    Match string
    Computed field, returned in the response. match blocks are documented below.
    ResourceId double
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    State string
    Computed field, returned in the response.
    Action string
    Computed field, returned in the response. action blocks are documented below.
    Match string
    Computed field, returned in the response. match blocks are documented below.
    ResourceId float64
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    State string
    Computed field, returned in the response.
    action string
    Computed field, returned in the response. action blocks are documented below.
    match string
    Computed field, returned in the response. match blocks are documented below.
    resource_id number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state string
    Computed field, returned in the response.
    action String
    Computed field, returned in the response. action blocks are documented below.
    match String
    Computed field, returned in the response. match blocks are documented below.
    resourceId Double
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state String
    Computed field, returned in the response.
    action string
    Computed field, returned in the response. action blocks are documented below.
    match string
    Computed field, returned in the response. match blocks are documented below.
    resourceId number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state string
    Computed field, returned in the response.
    action str
    Computed field, returned in the response. action blocks are documented below.
    match str
    Computed field, returned in the response. match blocks are documented below.
    resource_id float
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state str
    Computed field, returned in the response.
    action String
    Computed field, returned in the response. action blocks are documented below.
    match String
    Computed field, returned in the response. match blocks are documented below.
    resourceId Number
    Configures Routemap ID for Routemap name. The Routemap ID has match condition and actions for the import and export policies.
    state String
    Computed field, returned in the response.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial