published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Inbound Route Filter Bgp Policy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaInboundRouteFilterBgpPolicy("example", {
policyId: 512,
basedOnAs: "65002",
restrictAllIpv4: false,
defaultLocalpref: "1",
defaultWeight: "10",
routes: [{
subnet: "1.2.3.0/24",
restrict: false,
matchType: "normal",
localpref: "456",
weight: "65535",
}],
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaInboundRouteFilterBgpPolicy("example",
policy_id=512,
based_on_as="65002",
restrict_all_ipv4=False,
default_localpref="1",
default_weight="10",
routes=[{
"subnet": "1.2.3.0/24",
"restrict": False,
"match_type": "normal",
"localpref": "456",
"weight": "65535",
}])
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.NewGaiaInboundRouteFilterBgpPolicy(ctx, "example", &checkpoint.GaiaInboundRouteFilterBgpPolicyArgs{
PolicyId: pulumi.Float64(512),
BasedOnAs: pulumi.String("65002"),
RestrictAllIpv4: pulumi.Bool(false),
DefaultLocalpref: pulumi.String("1"),
DefaultWeight: pulumi.String("10"),
Routes: checkpoint.GaiaInboundRouteFilterBgpPolicyRouteArray{
&checkpoint.GaiaInboundRouteFilterBgpPolicyRouteArgs{
Subnet: pulumi.String("1.2.3.0/24"),
Restrict: pulumi.Bool(false),
MatchType: pulumi.String("normal"),
Localpref: pulumi.String("456"),
Weight: pulumi.String("65535"),
},
},
})
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.GaiaInboundRouteFilterBgpPolicy("example", new()
{
PolicyId = 512,
BasedOnAs = "65002",
RestrictAllIpv4 = false,
DefaultLocalpref = "1",
DefaultWeight = "10",
Routes = new[]
{
new Checkpoint.Inputs.GaiaInboundRouteFilterBgpPolicyRouteArgs
{
Subnet = "1.2.3.0/24",
Restrict = false,
MatchType = "normal",
Localpref = "456",
Weight = "65535",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaInboundRouteFilterBgpPolicy;
import com.pulumi.checkpoint.GaiaInboundRouteFilterBgpPolicyArgs;
import com.pulumi.checkpoint.inputs.GaiaInboundRouteFilterBgpPolicyRouteArgs;
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 GaiaInboundRouteFilterBgpPolicy("example", GaiaInboundRouteFilterBgpPolicyArgs.builder()
.policyId(512.0)
.basedOnAs("65002")
.restrictAllIpv4(false)
.defaultLocalpref("1")
.defaultWeight("10")
.routes(GaiaInboundRouteFilterBgpPolicyRouteArgs.builder()
.subnet("1.2.3.0/24")
.restrict(false)
.matchType("normal")
.localpref("456")
.weight("65535")
.build())
.build());
}
}
resources:
example:
type: checkpoint:GaiaInboundRouteFilterBgpPolicy
properties:
policyId: 512
basedOnAs: '65002'
restrictAllIpv4: false
defaultLocalpref: '1'
defaultWeight: '10'
routes:
- subnet: 1.2.3.0/24
restrict: false
matchType: normal
localpref: '456'
weight: '65535'
Example coming soon!
Create GaiaInboundRouteFilterBgpPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaInboundRouteFilterBgpPolicy(name: string, args: GaiaInboundRouteFilterBgpPolicyArgs, opts?: CustomResourceOptions);@overload
def GaiaInboundRouteFilterBgpPolicy(resource_name: str,
args: GaiaInboundRouteFilterBgpPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaInboundRouteFilterBgpPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
policy_id: Optional[float] = None,
debug: Optional[bool] = None,
community_matches: Optional[Sequence[GaiaInboundRouteFilterBgpPolicyCommunityMatchArgs]] = None,
based_on_as: Optional[str] = None,
default_localpref: Optional[str] = None,
default_weight: Optional[str] = None,
extcommunity_matches: Optional[Sequence[GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArgs]] = None,
gaia_inbound_route_filter_bgp_policy_id: Optional[str] = None,
member_id: Optional[str] = None,
based_on_aspath: Optional[GaiaInboundRouteFilterBgpPolicyBasedOnAspathArgs] = None,
reset: Optional[bool] = None,
restrict_all_ipv4: Optional[bool] = None,
restrict_all_ipv6: Optional[bool] = None,
routes: Optional[Sequence[GaiaInboundRouteFilterBgpPolicyRouteArgs]] = None)func NewGaiaInboundRouteFilterBgpPolicy(ctx *Context, name string, args GaiaInboundRouteFilterBgpPolicyArgs, opts ...ResourceOption) (*GaiaInboundRouteFilterBgpPolicy, error)public GaiaInboundRouteFilterBgpPolicy(string name, GaiaInboundRouteFilterBgpPolicyArgs args, CustomResourceOptions? opts = null)
public GaiaInboundRouteFilterBgpPolicy(String name, GaiaInboundRouteFilterBgpPolicyArgs args)
public GaiaInboundRouteFilterBgpPolicy(String name, GaiaInboundRouteFilterBgpPolicyArgs args, CustomResourceOptions options)
type: checkpoint:GaiaInboundRouteFilterBgpPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiainboundroutefilterbgppolicy" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaInboundRouteFilterBgpPolicyArgs
- 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 GaiaInboundRouteFilterBgpPolicyArgs
- 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 GaiaInboundRouteFilterBgpPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaInboundRouteFilterBgpPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaInboundRouteFilterBgpPolicyArgs
- 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 gaiaInboundRouteFilterBgpPolicyResource = new Checkpoint.GaiaInboundRouteFilterBgpPolicy("gaiaInboundRouteFilterBgpPolicyResource", new()
{
PolicyId = 0,
Debug = false,
CommunityMatches = new[]
{
new Checkpoint.Inputs.GaiaInboundRouteFilterBgpPolicyCommunityMatchArgs
{
As = 0,
ResourceId = 0,
},
},
BasedOnAs = "string",
DefaultLocalpref = "string",
DefaultWeight = "string",
ExtcommunityMatches = new[]
{
new Checkpoint.Inputs.GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArgs
{
SubType = "string",
Type = "string",
Value = "string",
},
},
GaiaInboundRouteFilterBgpPolicyId = "string",
MemberId = "string",
BasedOnAspath = new Checkpoint.Inputs.GaiaInboundRouteFilterBgpPolicyBasedOnAspathArgs
{
AspathRegex = "string",
Origin = "string",
},
Reset = false,
RestrictAllIpv4 = false,
RestrictAllIpv6 = false,
Routes = new[]
{
new Checkpoint.Inputs.GaiaInboundRouteFilterBgpPolicyRouteArgs
{
Localpref = "string",
MatchType = "string",
Range = new Checkpoint.Inputs.GaiaInboundRouteFilterBgpPolicyRouteRangeArgs
{
From = 0,
To = 0,
},
Restrict = false,
Subnet = "string",
Weight = "string",
},
},
});
example, err := checkpoint.NewGaiaInboundRouteFilterBgpPolicy(ctx, "gaiaInboundRouteFilterBgpPolicyResource", &checkpoint.GaiaInboundRouteFilterBgpPolicyArgs{
PolicyId: pulumi.Float64(0),
Debug: pulumi.Bool(false),
CommunityMatches: checkpoint.GaiaInboundRouteFilterBgpPolicyCommunityMatchArray{
&checkpoint.GaiaInboundRouteFilterBgpPolicyCommunityMatchArgs{
As: pulumi.Float64(0),
ResourceId: pulumi.Float64(0),
},
},
BasedOnAs: pulumi.String("string"),
DefaultLocalpref: pulumi.String("string"),
DefaultWeight: pulumi.String("string"),
ExtcommunityMatches: checkpoint.GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArray{
&checkpoint.GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArgs{
SubType: pulumi.String("string"),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
GaiaInboundRouteFilterBgpPolicyId: pulumi.String("string"),
MemberId: pulumi.String("string"),
BasedOnAspath: &checkpoint.GaiaInboundRouteFilterBgpPolicyBasedOnAspathArgs{
AspathRegex: pulumi.String("string"),
Origin: pulumi.String("string"),
},
Reset: pulumi.Bool(false),
RestrictAllIpv4: pulumi.Bool(false),
RestrictAllIpv6: pulumi.Bool(false),
Routes: checkpoint.GaiaInboundRouteFilterBgpPolicyRouteArray{
&checkpoint.GaiaInboundRouteFilterBgpPolicyRouteArgs{
Localpref: pulumi.String("string"),
MatchType: pulumi.String("string"),
Range: &checkpoint.GaiaInboundRouteFilterBgpPolicyRouteRangeArgs{
From: pulumi.Float64(0),
To: pulumi.Float64(0),
},
Restrict: pulumi.Bool(false),
Subnet: pulumi.String("string"),
Weight: pulumi.String("string"),
},
},
})
resource "checkpoint_gaiainboundroutefilterbgppolicy" "gaiaInboundRouteFilterBgpPolicyResource" {
policy_id = 0
debug = false
community_matches {
as = 0
resource_id = 0
}
based_on_as = "string"
default_localpref = "string"
default_weight = "string"
extcommunity_matches {
sub_type = "string"
type = "string"
value = "string"
}
gaia_inbound_route_filter_bgp_policy_id = "string"
member_id = "string"
based_on_aspath = {
aspath_regex = "string"
origin = "string"
}
reset = false
restrict_all_ipv4 = false
restrict_all_ipv6 = false
routes {
localpref = "string"
match_type = "string"
range = {
from = 0
to = 0
}
restrict = false
subnet = "string"
weight = "string"
}
}
var gaiaInboundRouteFilterBgpPolicyResource = new GaiaInboundRouteFilterBgpPolicy("gaiaInboundRouteFilterBgpPolicyResource", GaiaInboundRouteFilterBgpPolicyArgs.builder()
.policyId(0.0)
.debug(false)
.communityMatches(GaiaInboundRouteFilterBgpPolicyCommunityMatchArgs.builder()
.as(0.0)
.resourceId(0.0)
.build())
.basedOnAs("string")
.defaultLocalpref("string")
.defaultWeight("string")
.extcommunityMatches(GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArgs.builder()
.subType("string")
.type("string")
.value("string")
.build())
.gaiaInboundRouteFilterBgpPolicyId("string")
.memberId("string")
.basedOnAspath(GaiaInboundRouteFilterBgpPolicyBasedOnAspathArgs.builder()
.aspathRegex("string")
.origin("string")
.build())
.reset(false)
.restrictAllIpv4(false)
.restrictAllIpv6(false)
.routes(GaiaInboundRouteFilterBgpPolicyRouteArgs.builder()
.localpref("string")
.matchType("string")
.range(GaiaInboundRouteFilterBgpPolicyRouteRangeArgs.builder()
.from(0.0)
.to(0.0)
.build())
.restrict(false)
.subnet("string")
.weight("string")
.build())
.build());
gaia_inbound_route_filter_bgp_policy_resource = checkpoint.GaiaInboundRouteFilterBgpPolicy("gaiaInboundRouteFilterBgpPolicyResource",
policy_id=float(0),
debug=False,
community_matches=[{
"as_": float(0),
"resource_id": float(0),
}],
based_on_as="string",
default_localpref="string",
default_weight="string",
extcommunity_matches=[{
"sub_type": "string",
"type": "string",
"value": "string",
}],
gaia_inbound_route_filter_bgp_policy_id="string",
member_id="string",
based_on_aspath={
"aspath_regex": "string",
"origin": "string",
},
reset=False,
restrict_all_ipv4=False,
restrict_all_ipv6=False,
routes=[{
"localpref": "string",
"match_type": "string",
"range": {
"from_": float(0),
"to": float(0),
},
"restrict": False,
"subnet": "string",
"weight": "string",
}])
const gaiaInboundRouteFilterBgpPolicyResource = new checkpoint.GaiaInboundRouteFilterBgpPolicy("gaiaInboundRouteFilterBgpPolicyResource", {
policyId: 0,
debug: false,
communityMatches: [{
as: 0,
resourceId: 0,
}],
basedOnAs: "string",
defaultLocalpref: "string",
defaultWeight: "string",
extcommunityMatches: [{
subType: "string",
type: "string",
value: "string",
}],
gaiaInboundRouteFilterBgpPolicyId: "string",
memberId: "string",
basedOnAspath: {
aspathRegex: "string",
origin: "string",
},
reset: false,
restrictAllIpv4: false,
restrictAllIpv6: false,
routes: [{
localpref: "string",
matchType: "string",
range: {
from: 0,
to: 0,
},
restrict: false,
subnet: "string",
weight: "string",
}],
});
type: checkpoint:GaiaInboundRouteFilterBgpPolicy
properties:
basedOnAs: string
basedOnAspath:
aspathRegex: string
origin: string
communityMatches:
- as: 0
resourceId: 0
debug: false
defaultLocalpref: string
defaultWeight: string
extcommunityMatches:
- subType: string
type: string
value: string
gaiaInboundRouteFilterBgpPolicyId: string
memberId: string
policyId: 0
reset: false
restrictAllIpv4: false
restrictAllIpv6: false
routes:
- localpref: string
matchType: string
range:
from: 0
to: 0
restrict: false
subnet: string
weight: string
GaiaInboundRouteFilterBgpPolicy 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 GaiaInboundRouteFilterBgpPolicy resource accepts the following input properties:
- Policy
Id double - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- Based
On stringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- Based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- Community
Matches List<GaiaInbound Route Filter Bgp Policy Community Match> - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Default
Localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- Default
Weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- Extcommunity
Matches List<GaiaInbound Route Filter Bgp Policy Extcommunity Match> - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- Gaia
Inbound stringRoute Filter Bgp Policy Id - 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
- Reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- Restrict
All boolIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- Routes
List<Gaia
Inbound Route Filter Bgp Policy Route> - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- Policy
Id float64 - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- Based
On stringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- Based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath Args - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- Community
Matches []GaiaInbound Route Filter Bgp Policy Community Match Args - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Default
Localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- Default
Weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- Extcommunity
Matches []GaiaInbound Route Filter Bgp Policy Extcommunity Match Args - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- Gaia
Inbound stringRoute Filter Bgp Policy Id - 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
- Reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- Restrict
All boolIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- Routes
[]Gaia
Inbound Route Filter Bgp Policy Route Args - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- policy_
id number - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- based_
on_ stringas - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based_
on_ objectaspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community_
matches list(object) - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- default_
localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default_
weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity_
matches list(object) - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia_
inbound_ stringroute_ filter_ bgp_ policy_ id - 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
- reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict_
all_ boolipv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes list(object)
- Configures filtering of imported routes for a given policy rule route blocks are documented below.
- policy
Id Double - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- based
On StringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community
Matches List<GaiaInbound Route Filter Bgp Policy Community Match> - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- default
Localpref String - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default
Weight String - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity
Matches List<GaiaInbound Route Filter Bgp Policy Extcommunity Match> - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia
Inbound StringRoute Filter Bgp Policy Id - 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
- reset Boolean
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict
All BooleanIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes
List<Gaia
Inbound Route Filter Bgp Policy Route> - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- policy
Id number - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- based
On stringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community
Matches GaiaInbound Route Filter Bgp Policy Community Match[] - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- default
Localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default
Weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity
Matches GaiaInbound Route Filter Bgp Policy Extcommunity Match[] - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia
Inbound stringRoute Filter Bgp Policy Id - 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
- reset boolean
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict
All booleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict
All booleanIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes
Gaia
Inbound Route Filter Bgp Policy Route[] - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- policy_
id float - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- based_
on_ stras - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based_
on_ Gaiaaspath Inbound Route Filter Bgp Policy Based On Aspath Args - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community_
matches Sequence[GaiaInbound Route Filter Bgp Policy Community Match Args] - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- default_
localpref str - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default_
weight str - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity_
matches Sequence[GaiaInbound Route Filter Bgp Policy Extcommunity Match Args] - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia_
inbound_ strroute_ filter_ bgp_ policy_ id - 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
- reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict_
all_ boolipv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes
Sequence[Gaia
Inbound Route Filter Bgp Policy Route Args] - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- policy
Id Number - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- based
On StringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based
On Property MapAspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community
Matches List<Property Map> - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- default
Localpref String - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default
Weight String - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity
Matches List<Property Map> - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia
Inbound StringRoute Filter Bgp Policy Id - 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
- reset Boolean
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict
All BooleanIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes List<Property Map>
- Configures filtering of imported routes for a given policy rule route blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaInboundRouteFilterBgpPolicy 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 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 GaiaInboundRouteFilterBgpPolicy Resource
Get an existing GaiaInboundRouteFilterBgpPolicy 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?: GaiaInboundRouteFilterBgpPolicyState, opts?: CustomResourceOptions): GaiaInboundRouteFilterBgpPolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
based_on_as: Optional[str] = None,
based_on_aspath: Optional[GaiaInboundRouteFilterBgpPolicyBasedOnAspathArgs] = None,
community_matches: Optional[Sequence[GaiaInboundRouteFilterBgpPolicyCommunityMatchArgs]] = None,
debug: Optional[bool] = None,
default_localpref: Optional[str] = None,
default_weight: Optional[str] = None,
extcommunity_matches: Optional[Sequence[GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArgs]] = None,
gaia_inbound_route_filter_bgp_policy_id: Optional[str] = None,
member_id: Optional[str] = None,
policy_id: Optional[float] = None,
reset: Optional[bool] = None,
restrict_all_ipv4: Optional[bool] = None,
restrict_all_ipv6: Optional[bool] = None,
routes: Optional[Sequence[GaiaInboundRouteFilterBgpPolicyRouteArgs]] = None) -> GaiaInboundRouteFilterBgpPolicyfunc GetGaiaInboundRouteFilterBgpPolicy(ctx *Context, name string, id IDInput, state *GaiaInboundRouteFilterBgpPolicyState, opts ...ResourceOption) (*GaiaInboundRouteFilterBgpPolicy, error)public static GaiaInboundRouteFilterBgpPolicy Get(string name, Input<string> id, GaiaInboundRouteFilterBgpPolicyState? state, CustomResourceOptions? opts = null)public static GaiaInboundRouteFilterBgpPolicy get(String name, Output<String> id, GaiaInboundRouteFilterBgpPolicyState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaInboundRouteFilterBgpPolicy get: id: ${id}import {
to = checkpoint_gaiainboundroutefilterbgppolicy.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.
- Based
On stringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- Based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- Community
Matches List<GaiaInbound Route Filter Bgp Policy Community Match> - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Default
Localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- Default
Weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- Extcommunity
Matches List<GaiaInbound Route Filter Bgp Policy Extcommunity Match> - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- Gaia
Inbound stringRoute Filter Bgp Policy Id - 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
- Policy
Id double - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- Reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- Restrict
All boolIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- Routes
List<Gaia
Inbound Route Filter Bgp Policy Route> - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- Based
On stringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- Based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath Args - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- Community
Matches []GaiaInbound Route Filter Bgp Policy Community Match Args - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- Debug bool
- Enable debug logging for this resource.
- Default
Localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- Default
Weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- Extcommunity
Matches []GaiaInbound Route Filter Bgp Policy Extcommunity Match Args - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- Gaia
Inbound stringRoute Filter Bgp Policy Id - 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
- Policy
Id float64 - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- Reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- Restrict
All boolIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- Restrict
All boolIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- Routes
[]Gaia
Inbound Route Filter Bgp Policy Route Args - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- based_
on_ stringas - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based_
on_ objectaspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community_
matches list(object) - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- default_
localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default_
weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity_
matches list(object) - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia_
inbound_ stringroute_ filter_ bgp_ policy_ id - 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
- policy_
id number - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict_
all_ boolipv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes list(object)
- Configures filtering of imported routes for a given policy rule route blocks are documented below.
- based
On StringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community
Matches List<GaiaInbound Route Filter Bgp Policy Community Match> - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- default
Localpref String - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default
Weight String - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity
Matches List<GaiaInbound Route Filter Bgp Policy Extcommunity Match> - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia
Inbound StringRoute Filter Bgp Policy Id - 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
- policy
Id Double - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- reset Boolean
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict
All BooleanIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes
List<Gaia
Inbound Route Filter Bgp Policy Route> - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- based
On stringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based
On GaiaAspath Inbound Route Filter Bgp Policy Based On Aspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community
Matches GaiaInbound Route Filter Bgp Policy Community Match[] - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- default
Localpref string - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default
Weight string - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity
Matches GaiaInbound Route Filter Bgp Policy Extcommunity Match[] - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia
Inbound stringRoute Filter Bgp Policy Id - 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
- policy
Id number - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- reset boolean
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict
All booleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict
All booleanIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes
Gaia
Inbound Route Filter Bgp Policy Route[] - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- based_
on_ stras - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based_
on_ Gaiaaspath Inbound Route Filter Bgp Policy Based On Aspath Args - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community_
matches Sequence[GaiaInbound Route Filter Bgp Policy Community Match Args] - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug bool
- Enable debug logging for this resource.
- default_
localpref str - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default_
weight str - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity_
matches Sequence[GaiaInbound Route Filter Bgp Policy Extcommunity Match Args] - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia_
inbound_ strroute_ filter_ bgp_ policy_ id - 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
- policy_
id float - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- reset bool
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict_
all_ boolipv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict_
all_ boolipv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes
Sequence[Gaia
Inbound Route Filter Bgp Policy Route Args] - Configures filtering of imported routes for a given policy rule route blocks are documented below.
- based
On StringAs - Configures a new policy for importing BGP routes from a particular Autonomous System. Note: In order to configure filtering based on AS, the specified policy identifier must be in between 512-1024. Additionally the ASN cannot be configured in any other policy id
- based
On Property MapAspath - Configures a new policy for importing BGP routes whose Autonomous Systems path matches the specified regular expression. Note: In order to configure filtering based on AS path, the specified policy identifier must be in between 1-511. Additionally the AS path cannot be configured in any other policy id based_on_aspath blocks are documented below.
- community
Matches List<Property Map> - Matches routes containing a given BGP Community. Note: A maximum of 25 Communites can be configured on each policy identifier community_match blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- default
Localpref String - Assigns a BGP local preference to all routes that match this filter. By default, no local preference value is assigned to the matched routes
- default
Weight String - Assignes a BGP weight to all routes that match this filter. By default, no weight value is assigned to the matched routes
- extcommunity
Matches List<Property Map> - Matches routes containing a given BGP Extended Community Note: A maximum of 25 Communities can be configured on each policy identifier extcommunity_match blocks are documented below.
- gaia
Inbound StringRoute Filter Bgp Policy Id - 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
- policy
Id Number - Specifies the BGP import policy identifier. Note: In order to filter based on Autonomous System path, the policy identifier must be between 1-511. In order to filter based on Autonomous System number, the policy identifier must be between 512-1024
- reset Boolean
- Resets Inbound Policy Filter Configuration to a default state for a given policy identifier
- restrict
All BooleanIpv4 - When the specified value is set to true, the policy rule rejects all matching IPv4 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv4 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv4 routes
- restrict
All BooleanIpv6 - When the specified value is set to true, the policy rule rejects all matching IPv6 routes, except when there exists a more specific rule, which is set to "accept". When the specified value is set to false, the policy rule accepts all matching IPv6 routes, except when there exists a more specific rule, which rejects the routes. By default, the rule accepts all IPv6 routes. Note: The following value can only be specified when IPv6 state is enabled
- routes List<Property Map>
- Configures filtering of imported routes for a given policy rule route blocks are documented below.
Supporting Types
GaiaInboundRouteFilterBgpPolicyBasedOnAspath, GaiaInboundRouteFilterBgpPolicyBasedOnAspathArgs
- Aspath
Regex string - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- Origin string
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
- Aspath
Regex string - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- Origin string
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
- aspath_
regex string - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- origin string
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
- aspath
Regex String - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- origin String
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
- aspath
Regex string - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- origin string
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
- aspath_
regex str - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- origin str
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
- aspath
Regex String - Specifies the regular expression, which is used to filter by Autonomous Systems paths. A valid AS path regular expression contains only digits and the following special characters: Regular Expression Description . Match any single character </td> Match the character right after the backslash. Also for recalling ^ Match the characters or null string at the beginning of the value $ Match the characters or null string at the end of the value ? Match zero or one occurrences of the pattern before the '?' character Match zero or more occurrences of the pattern before the '' character + Match one or more occurrences of the pattern before the '+' character | Match one of the patterns on either side of the '|' character _ Match comma (,), left brace ({), right brace (}), beginning of value (^), end of value ($) or a whitespace [] Match set of characters or a range of characters separated by a hyphen (-) within [] () Group one or more patterns into a single pattern {m,n} At least m and at most n repetitions of the pattern before {m,n} {m} Exactly m repetitions of the pattern before {m} {m,} m or more repetitions of the pattern before {m}
- origin String
- Specifies the completeness of the AS path information. The origin values are defined as follows: Origin Description any Matches any route, regardless of origin IGP Route was learned from an interior routing protocol, and the AS path is probably complete EGP Route was learned from an exterior routing protocol that does not support AS paths, and the path is probably complete incomplete Use when the AS path information is incomplete
GaiaInboundRouteFilterBgpPolicyCommunityMatch, GaiaInboundRouteFilterBgpPolicyCommunityMatchArgs
- As double
- Configures the Autonomous System number for BGP Communities
- Resource
Id double - Configures the Community ID value for BGP Communities
- As float64
- Configures the Autonomous System number for BGP Communities
- Resource
Id float64 - Configures the Community ID value for BGP Communities
- as number
- Configures the Autonomous System number for BGP Communities
- resource_
id number - Configures the Community ID value for BGP Communities
- as Double
- Configures the Autonomous System number for BGP Communities
- resource
Id Double - Configures the Community ID value for BGP Communities
- as number
- Configures the Autonomous System number for BGP Communities
- resource
Id number - Configures the Community ID value for BGP Communities
- as_ float
- Configures the Autonomous System number for BGP Communities
- resource_
id float - Configures the Community ID value for BGP Communities
- as Number
- Configures the Autonomous System number for BGP Communities
- resource
Id Number - Configures the Community ID value for BGP Communities
GaiaInboundRouteFilterBgpPolicyExtcommunityMatch, GaiaInboundRouteFilterBgpPolicyExtcommunityMatchArgs
- Sub
Type string - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- Type string
- Configured Type for extended communities
- Value string
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
- Sub
Type string - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- Type string
- Configured Type for extended communities
- Value string
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
- sub_
type string - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- type string
- Configured Type for extended communities
- value string
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
- sub
Type String - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- type String
- Configured Type for extended communities
- value String
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
- sub
Type string - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- type string
- Configured Type for extended communities
- value string
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
- sub_
type str - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- type str
- Configured Type for extended communities
- value str
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
- sub
Type String - Configured Sub-Type for extended communities. Valid sub type values are dependent on the type, the valid values are as follows: Type Sub Types transitive-two-octet-as route-target, route-origin, ospf-domain-id, bgp-data-collect, source-as, l2vpn-id, cisco-vpn-dist non-transitive-two-octet-as link-bandwidth transitive-four-octet-as route-target, route-origin, generic, ospf-domain-id, bgp-data-collect, source-as, cisco-vpn-dist non-transitive-four-octet-as generic transitive-ipv4-address route-target, route-origin, ospf-domain-id, ospf-route-id, l2vpn-id, vrf-route-import, cisco-vpn-dist
- type String
- Configured Type for extended communities
- value String
- Configured Value for extended communities. Valid values are dependent on the type, the valid values are as follows: Type Values transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 non-transitive-two-octet-as 1 - 65,535:0 - 4,294,967,295 transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 non-transitive-four-octet-as 65,536 - 4,294,967,295:0 - 65,535 transitive-ipv4-address IPv4:0 - 65,535
GaiaInboundRouteFilterBgpPolicyRoute, GaiaInboundRouteFilterBgpPolicyRouteArgs
- Localpref string
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- Match
Type string - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- Range
Gaia
Inbound Route Filter Bgp Policy Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- Restrict bool
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- Subnet string
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- Weight string
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
- Localpref string
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- Match
Type string - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- Range
Gaia
Inbound Route Filter Bgp Policy Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- Restrict bool
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- Subnet string
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- Weight string
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
- localpref string
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- match_
type string - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- range object
- Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- restrict bool
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- subnet string
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- weight string
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
- localpref String
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- match
Type String - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- range
Gaia
Inbound Route Filter Bgp Policy Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- restrict Boolean
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- subnet String
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- weight String
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
- localpref string
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- match
Type string - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- range
Gaia
Inbound Route Filter Bgp Policy Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- restrict boolean
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- subnet string
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- weight string
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
- localpref str
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- match_
type str - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- range
Gaia
Inbound Route Filter Bgp Policy Route Range - Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- restrict bool
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- subnet str
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- weight str
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
- localpref String
- Assigns a BGP local preference to all routes matching this filter, unless there exists a more specific rule with a different local preference value. Note: The following value cannot be specified when the rule is restricted
- match
Type String - Routes can be matched with the following types: Match Type Description normal Matches any route contained within the specified network exact Matches only routes with prefix and mask length exactly equal to the specified network refines Matches only routes that are contained within the specified network (i.e., with greater mask length) between Matches any route with prefix equal to the specified network whose mask length falls within a particular range Note: When the given subnet is of type IPv6, the "between" value cannot be specified
- range Property Map
- Specifies the range with which to match the routes. This attribute can only be specified when the match type is "between" range blocks are documented below.
- restrict Boolean
- When the specified value is true, all routes matching this rule will be rejected, unless a more specific filter accepts the imported routes. When the specified value is false, all routes matching this rule will be accepted, unless a more specific filter accepts them. By default, the given route will be accepted
- subnet String
- Specifies the address range with which to filter imported IPv4 and IPv6 routes. Note: In order to configure subnets of type IPv6, the IPv6 state needs to be enabled
- weight String
- Assinges a BGP Weight to all routes matching this filter unless there exists a more specific rule with a different weight value. Note: The following value cannot be specified when the rule is restricted
GaiaInboundRouteFilterBgpPolicyRouteRange, GaiaInboundRouteFilterBgpPolicyRouteRangeArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw