1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyGatewayRouteMap
nsxt 3.8.0 published on Monday, Apr 14, 2025 by vmware

nsxt.PolicyGatewayRouteMap

Explore with Pulumi AI

Create PolicyGatewayRouteMap Resource

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

Constructor syntax

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

@overload
def PolicyGatewayRouteMap(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          display_name: Optional[str] = None,
                          entries: Optional[Sequence[PolicyGatewayRouteMapEntryArgs]] = None,
                          gateway_path: Optional[str] = None,
                          description: Optional[str] = None,
                          nsx_id: Optional[str] = None,
                          policy_gateway_route_map_id: Optional[str] = None,
                          tags: Optional[Sequence[PolicyGatewayRouteMapTagArgs]] = None)
func NewPolicyGatewayRouteMap(ctx *Context, name string, args PolicyGatewayRouteMapArgs, opts ...ResourceOption) (*PolicyGatewayRouteMap, error)
public PolicyGatewayRouteMap(string name, PolicyGatewayRouteMapArgs args, CustomResourceOptions? opts = null)
public PolicyGatewayRouteMap(String name, PolicyGatewayRouteMapArgs args)
public PolicyGatewayRouteMap(String name, PolicyGatewayRouteMapArgs args, CustomResourceOptions options)
type: nsxt:PolicyGatewayRouteMap
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PolicyGatewayRouteMapArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PolicyGatewayRouteMapArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyGatewayRouteMapArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyGatewayRouteMapArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PolicyGatewayRouteMapArgs
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 policyGatewayRouteMapResource = new Nsxt.PolicyGatewayRouteMap("policyGatewayRouteMapResource", new()
{
    DisplayName = "string",
    Entries = new[]
    {
        new Nsxt.Inputs.PolicyGatewayRouteMapEntryArgs
        {
            Action = "string",
            CommunityListMatches = new[]
            {
                new Nsxt.Inputs.PolicyGatewayRouteMapEntryCommunityListMatchArgs
                {
                    Criteria = "string",
                    MatchOperator = "string",
                },
            },
            PrefixListMatches = new[]
            {
                "string",
            },
            Set = new Nsxt.Inputs.PolicyGatewayRouteMapEntrySetArgs
            {
                AsPathPrepend = "string",
                Community = "string",
                LocalPreference = 0,
                Med = 0,
                PreferGlobalV6NextHop = false,
                Weight = 0,
            },
        },
    },
    GatewayPath = "string",
    Description = "string",
    NsxId = "string",
    PolicyGatewayRouteMapId = "string",
    Tags = new[]
    {
        new Nsxt.Inputs.PolicyGatewayRouteMapTagArgs
        {
            Scope = "string",
            Tag = "string",
        },
    },
});
Copy
example, err := nsxt.NewPolicyGatewayRouteMap(ctx, "policyGatewayRouteMapResource", &nsxt.PolicyGatewayRouteMapArgs{
	DisplayName: pulumi.String("string"),
	Entries: nsxt.PolicyGatewayRouteMapEntryArray{
		&nsxt.PolicyGatewayRouteMapEntryArgs{
			Action: pulumi.String("string"),
			CommunityListMatches: nsxt.PolicyGatewayRouteMapEntryCommunityListMatchArray{
				&nsxt.PolicyGatewayRouteMapEntryCommunityListMatchArgs{
					Criteria:      pulumi.String("string"),
					MatchOperator: pulumi.String("string"),
				},
			},
			PrefixListMatches: pulumi.StringArray{
				pulumi.String("string"),
			},
			Set: &nsxt.PolicyGatewayRouteMapEntrySetArgs{
				AsPathPrepend:         pulumi.String("string"),
				Community:             pulumi.String("string"),
				LocalPreference:       pulumi.Float64(0),
				Med:                   pulumi.Float64(0),
				PreferGlobalV6NextHop: pulumi.Bool(false),
				Weight:                pulumi.Float64(0),
			},
		},
	},
	GatewayPath:             pulumi.String("string"),
	Description:             pulumi.String("string"),
	NsxId:                   pulumi.String("string"),
	PolicyGatewayRouteMapId: pulumi.String("string"),
	Tags: nsxt.PolicyGatewayRouteMapTagArray{
		&nsxt.PolicyGatewayRouteMapTagArgs{
			Scope: pulumi.String("string"),
			Tag:   pulumi.String("string"),
		},
	},
})
Copy
var policyGatewayRouteMapResource = new PolicyGatewayRouteMap("policyGatewayRouteMapResource", PolicyGatewayRouteMapArgs.builder()
    .displayName("string")
    .entries(PolicyGatewayRouteMapEntryArgs.builder()
        .action("string")
        .communityListMatches(PolicyGatewayRouteMapEntryCommunityListMatchArgs.builder()
            .criteria("string")
            .matchOperator("string")
            .build())
        .prefixListMatches("string")
        .set(PolicyGatewayRouteMapEntrySetArgs.builder()
            .asPathPrepend("string")
            .community("string")
            .localPreference(0)
            .med(0)
            .preferGlobalV6NextHop(false)
            .weight(0)
            .build())
        .build())
    .gatewayPath("string")
    .description("string")
    .nsxId("string")
    .policyGatewayRouteMapId("string")
    .tags(PolicyGatewayRouteMapTagArgs.builder()
        .scope("string")
        .tag("string")
        .build())
    .build());
Copy
policy_gateway_route_map_resource = nsxt.PolicyGatewayRouteMap("policyGatewayRouteMapResource",
    display_name="string",
    entries=[{
        "action": "string",
        "community_list_matches": [{
            "criteria": "string",
            "match_operator": "string",
        }],
        "prefix_list_matches": ["string"],
        "set": {
            "as_path_prepend": "string",
            "community": "string",
            "local_preference": 0,
            "med": 0,
            "prefer_global_v6_next_hop": False,
            "weight": 0,
        },
    }],
    gateway_path="string",
    description="string",
    nsx_id="string",
    policy_gateway_route_map_id="string",
    tags=[{
        "scope": "string",
        "tag": "string",
    }])
Copy
const policyGatewayRouteMapResource = new nsxt.PolicyGatewayRouteMap("policyGatewayRouteMapResource", {
    displayName: "string",
    entries: [{
        action: "string",
        communityListMatches: [{
            criteria: "string",
            matchOperator: "string",
        }],
        prefixListMatches: ["string"],
        set: {
            asPathPrepend: "string",
            community: "string",
            localPreference: 0,
            med: 0,
            preferGlobalV6NextHop: false,
            weight: 0,
        },
    }],
    gatewayPath: "string",
    description: "string",
    nsxId: "string",
    policyGatewayRouteMapId: "string",
    tags: [{
        scope: "string",
        tag: "string",
    }],
});
Copy
type: nsxt:PolicyGatewayRouteMap
properties:
    description: string
    displayName: string
    entries:
        - action: string
          communityListMatches:
            - criteria: string
              matchOperator: string
          prefixListMatches:
            - string
          set:
            asPathPrepend: string
            community: string
            localPreference: 0
            med: 0
            preferGlobalV6NextHop: false
            weight: 0
    gatewayPath: string
    nsxId: string
    policyGatewayRouteMapId: string
    tags:
        - scope: string
          tag: string
Copy

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

DisplayName This property is required. string
Display name of the resource.
Entries This property is required. List<PolicyGatewayRouteMapEntry>
List of entries for the Route Map.
GatewayPath This property is required. string
Policy path of relevant Tier0 Gateway.
Description string
Description of the resource.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the resource.
PolicyGatewayRouteMapId string
ID of the resource.
Tags List<PolicyGatewayRouteMapTag>
A list of scope + tag pairs to associate with this resource.
DisplayName This property is required. string
Display name of the resource.
Entries This property is required. []PolicyGatewayRouteMapEntryArgs
List of entries for the Route Map.
GatewayPath This property is required. string
Policy path of relevant Tier0 Gateway.
Description string
Description of the resource.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the resource.
PolicyGatewayRouteMapId string
ID of the resource.
Tags []PolicyGatewayRouteMapTagArgs
A list of scope + tag pairs to associate with this resource.
displayName This property is required. String
Display name of the resource.
entries This property is required. List<PolicyGatewayRouteMapEntry>
List of entries for the Route Map.
gatewayPath This property is required. String
Policy path of relevant Tier0 Gateway.
description String
Description of the resource.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the resource.
policyGatewayRouteMapId String
ID of the resource.
tags List<PolicyGatewayRouteMapTag>
A list of scope + tag pairs to associate with this resource.
displayName This property is required. string
Display name of the resource.
entries This property is required. PolicyGatewayRouteMapEntry[]
List of entries for the Route Map.
gatewayPath This property is required. string
Policy path of relevant Tier0 Gateway.
description string
Description of the resource.
nsxId string
The NSX ID of this resource. If set, this ID will be used to create the resource.
policyGatewayRouteMapId string
ID of the resource.
tags PolicyGatewayRouteMapTag[]
A list of scope + tag pairs to associate with this resource.
display_name This property is required. str
Display name of the resource.
entries This property is required. Sequence[PolicyGatewayRouteMapEntryArgs]
List of entries for the Route Map.
gateway_path This property is required. str
Policy path of relevant Tier0 Gateway.
description str
Description of the resource.
nsx_id str
The NSX ID of this resource. If set, this ID will be used to create the resource.
policy_gateway_route_map_id str
ID of the resource.
tags Sequence[PolicyGatewayRouteMapTagArgs]
A list of scope + tag pairs to associate with this resource.
displayName This property is required. String
Display name of the resource.
entries This property is required. List<Property Map>
List of entries for the Route Map.
gatewayPath This property is required. String
Policy path of relevant Tier0 Gateway.
description String
Description of the resource.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the resource.
policyGatewayRouteMapId String
ID of the resource.
tags List<Property Map>
A list of scope + tag pairs to associate with this resource.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Path string
The NSX path of the policy resource.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Id string
The provider-assigned unique ID for this managed resource.
Path string
The NSX path of the policy resource.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id String
The provider-assigned unique ID for this managed resource.
path String
The NSX path of the policy resource.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id string
The provider-assigned unique ID for this managed resource.
path string
The NSX path of the policy resource.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id str
The provider-assigned unique ID for this managed resource.
path str
The NSX path of the policy resource.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
id String
The provider-assigned unique ID for this managed resource.
path String
The NSX path of the policy resource.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

Look up Existing PolicyGatewayRouteMap Resource

Get an existing PolicyGatewayRouteMap 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?: PolicyGatewayRouteMapState, opts?: CustomResourceOptions): PolicyGatewayRouteMap
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        entries: Optional[Sequence[PolicyGatewayRouteMapEntryArgs]] = None,
        gateway_path: Optional[str] = None,
        nsx_id: Optional[str] = None,
        path: Optional[str] = None,
        policy_gateway_route_map_id: Optional[str] = None,
        revision: Optional[float] = None,
        tags: Optional[Sequence[PolicyGatewayRouteMapTagArgs]] = None) -> PolicyGatewayRouteMap
func GetPolicyGatewayRouteMap(ctx *Context, name string, id IDInput, state *PolicyGatewayRouteMapState, opts ...ResourceOption) (*PolicyGatewayRouteMap, error)
public static PolicyGatewayRouteMap Get(string name, Input<string> id, PolicyGatewayRouteMapState? state, CustomResourceOptions? opts = null)
public static PolicyGatewayRouteMap get(String name, Output<String> id, PolicyGatewayRouteMapState state, CustomResourceOptions options)
resources:  _:    type: nsxt:PolicyGatewayRouteMap    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Description string
Description of the resource.
DisplayName string
Display name of the resource.
Entries List<PolicyGatewayRouteMapEntry>
List of entries for the Route Map.
GatewayPath string
Policy path of relevant Tier0 Gateway.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the resource.
Path string
The NSX path of the policy resource.
PolicyGatewayRouteMapId string
ID of the resource.
Revision double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Tags List<PolicyGatewayRouteMapTag>
A list of scope + tag pairs to associate with this resource.
Description string
Description of the resource.
DisplayName string
Display name of the resource.
Entries []PolicyGatewayRouteMapEntryArgs
List of entries for the Route Map.
GatewayPath string
Policy path of relevant Tier0 Gateway.
NsxId string
The NSX ID of this resource. If set, this ID will be used to create the resource.
Path string
The NSX path of the policy resource.
PolicyGatewayRouteMapId string
ID of the resource.
Revision float64
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Tags []PolicyGatewayRouteMapTagArgs
A list of scope + tag pairs to associate with this resource.
description String
Description of the resource.
displayName String
Display name of the resource.
entries List<PolicyGatewayRouteMapEntry>
List of entries for the Route Map.
gatewayPath String
Policy path of relevant Tier0 Gateway.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the resource.
path String
The NSX path of the policy resource.
policyGatewayRouteMapId String
ID of the resource.
revision Double
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags List<PolicyGatewayRouteMapTag>
A list of scope + tag pairs to associate with this resource.
description string
Description of the resource.
displayName string
Display name of the resource.
entries PolicyGatewayRouteMapEntry[]
List of entries for the Route Map.
gatewayPath string
Policy path of relevant Tier0 Gateway.
nsxId string
The NSX ID of this resource. If set, this ID will be used to create the resource.
path string
The NSX path of the policy resource.
policyGatewayRouteMapId string
ID of the resource.
revision number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags PolicyGatewayRouteMapTag[]
A list of scope + tag pairs to associate with this resource.
description str
Description of the resource.
display_name str
Display name of the resource.
entries Sequence[PolicyGatewayRouteMapEntryArgs]
List of entries for the Route Map.
gateway_path str
Policy path of relevant Tier0 Gateway.
nsx_id str
The NSX ID of this resource. If set, this ID will be used to create the resource.
path str
The NSX path of the policy resource.
policy_gateway_route_map_id str
ID of the resource.
revision float
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags Sequence[PolicyGatewayRouteMapTagArgs]
A list of scope + tag pairs to associate with this resource.
description String
Description of the resource.
displayName String
Display name of the resource.
entries List<Property Map>
List of entries for the Route Map.
gatewayPath String
Policy path of relevant Tier0 Gateway.
nsxId String
The NSX ID of this resource. If set, this ID will be used to create the resource.
path String
The NSX path of the policy resource.
policyGatewayRouteMapId String
ID of the resource.
revision Number
Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
tags List<Property Map>
A list of scope + tag pairs to associate with this resource.

Supporting Types

PolicyGatewayRouteMapEntry
, PolicyGatewayRouteMapEntryArgs

Action string
Action for the route map entry, either PERMIT or DENY, with default being PERMIT.
CommunityListMatches List<PolicyGatewayRouteMapEntryCommunityListMatch>
List of Prefix List match criteria for route map. Cannot be configured together with prefix_list_matches. If configured together, prefix_list_matches will be ignored.
PrefixListMatches List<string>
List of policy paths for Prefix Lists configured on this Gateway. Cannot be configured together with community_list_match. If configured together, prefix_list_matches will be ignored.
Set PolicyGatewayRouteMapEntrySet
Set criteria for route map entry.
Action string
Action for the route map entry, either PERMIT or DENY, with default being PERMIT.
CommunityListMatches []PolicyGatewayRouteMapEntryCommunityListMatch
List of Prefix List match criteria for route map. Cannot be configured together with prefix_list_matches. If configured together, prefix_list_matches will be ignored.
PrefixListMatches []string
List of policy paths for Prefix Lists configured on this Gateway. Cannot be configured together with community_list_match. If configured together, prefix_list_matches will be ignored.
Set PolicyGatewayRouteMapEntrySet
Set criteria for route map entry.
action String
Action for the route map entry, either PERMIT or DENY, with default being PERMIT.
communityListMatches List<PolicyGatewayRouteMapEntryCommunityListMatch>
List of Prefix List match criteria for route map. Cannot be configured together with prefix_list_matches. If configured together, prefix_list_matches will be ignored.
prefixListMatches List<String>
List of policy paths for Prefix Lists configured on this Gateway. Cannot be configured together with community_list_match. If configured together, prefix_list_matches will be ignored.
set PolicyGatewayRouteMapEntrySet
Set criteria for route map entry.
action string
Action for the route map entry, either PERMIT or DENY, with default being PERMIT.
communityListMatches PolicyGatewayRouteMapEntryCommunityListMatch[]
List of Prefix List match criteria for route map. Cannot be configured together with prefix_list_matches. If configured together, prefix_list_matches will be ignored.
prefixListMatches string[]
List of policy paths for Prefix Lists configured on this Gateway. Cannot be configured together with community_list_match. If configured together, prefix_list_matches will be ignored.
set PolicyGatewayRouteMapEntrySet
Set criteria for route map entry.
action str
Action for the route map entry, either PERMIT or DENY, with default being PERMIT.
community_list_matches Sequence[PolicyGatewayRouteMapEntryCommunityListMatch]
List of Prefix List match criteria for route map. Cannot be configured together with prefix_list_matches. If configured together, prefix_list_matches will be ignored.
prefix_list_matches Sequence[str]
List of policy paths for Prefix Lists configured on this Gateway. Cannot be configured together with community_list_match. If configured together, prefix_list_matches will be ignored.
set PolicyGatewayRouteMapEntrySet
Set criteria for route map entry.
action String
Action for the route map entry, either PERMIT or DENY, with default being PERMIT.
communityListMatches List<Property Map>
List of Prefix List match criteria for route map. Cannot be configured together with prefix_list_matches. If configured together, prefix_list_matches will be ignored.
prefixListMatches List<String>
List of policy paths for Prefix Lists configured on this Gateway. Cannot be configured together with community_list_match. If configured together, prefix_list_matches will be ignored.
set Property Map
Set criteria for route map entry.

PolicyGatewayRouteMapEntryCommunityListMatch
, PolicyGatewayRouteMapEntryCommunityListMatchArgs

Criteria This property is required. string
Community list path or a regular expression.
MatchOperator This property is required. string
Match operator for the criteria, one of MATCH_ANY, MATCH_ALL, MATCH_EXACT, MATCH_COMMUNITY_REGEX, MATCH_LARGE_COMMUNITY_REGEX. Only last two operators can be used together with regular expression criteria.
Criteria This property is required. string
Community list path or a regular expression.
MatchOperator This property is required. string
Match operator for the criteria, one of MATCH_ANY, MATCH_ALL, MATCH_EXACT, MATCH_COMMUNITY_REGEX, MATCH_LARGE_COMMUNITY_REGEX. Only last two operators can be used together with regular expression criteria.
criteria This property is required. String
Community list path or a regular expression.
matchOperator This property is required. String
Match operator for the criteria, one of MATCH_ANY, MATCH_ALL, MATCH_EXACT, MATCH_COMMUNITY_REGEX, MATCH_LARGE_COMMUNITY_REGEX. Only last two operators can be used together with regular expression criteria.
criteria This property is required. string
Community list path or a regular expression.
matchOperator This property is required. string
Match operator for the criteria, one of MATCH_ANY, MATCH_ALL, MATCH_EXACT, MATCH_COMMUNITY_REGEX, MATCH_LARGE_COMMUNITY_REGEX. Only last two operators can be used together with regular expression criteria.
criteria This property is required. str
Community list path or a regular expression.
match_operator This property is required. str
Match operator for the criteria, one of MATCH_ANY, MATCH_ALL, MATCH_EXACT, MATCH_COMMUNITY_REGEX, MATCH_LARGE_COMMUNITY_REGEX. Only last two operators can be used together with regular expression criteria.
criteria This property is required. String
Community list path or a regular expression.
matchOperator This property is required. String
Match operator for the criteria, one of MATCH_ANY, MATCH_ALL, MATCH_EXACT, MATCH_COMMUNITY_REGEX, MATCH_LARGE_COMMUNITY_REGEX. Only last two operators can be used together with regular expression criteria.

PolicyGatewayRouteMapEntrySet
, PolicyGatewayRouteMapEntrySetArgs

AsPathPrepend string
Autonomous System (AS) path prepend to influence route selection.
Community string
BGP regular or large community for matching routes.
LocalPreference double
Local preference indicates the degree of preference for one BGP route over other BGP routes.
Med double
Multi Exit Descriminator (lower value is preferred over higher value).
PreferGlobalV6NextHop bool
Indicator whether to prefer IPv6 global address over link-local as the next hop.
Weight double
Weight is used to select a route when multiple routes are available to the same network.
AsPathPrepend string
Autonomous System (AS) path prepend to influence route selection.
Community string
BGP regular or large community for matching routes.
LocalPreference float64
Local preference indicates the degree of preference for one BGP route over other BGP routes.
Med float64
Multi Exit Descriminator (lower value is preferred over higher value).
PreferGlobalV6NextHop bool
Indicator whether to prefer IPv6 global address over link-local as the next hop.
Weight float64
Weight is used to select a route when multiple routes are available to the same network.
asPathPrepend String
Autonomous System (AS) path prepend to influence route selection.
community String
BGP regular or large community for matching routes.
localPreference Double
Local preference indicates the degree of preference for one BGP route over other BGP routes.
med Double
Multi Exit Descriminator (lower value is preferred over higher value).
preferGlobalV6NextHop Boolean
Indicator whether to prefer IPv6 global address over link-local as the next hop.
weight Double
Weight is used to select a route when multiple routes are available to the same network.
asPathPrepend string
Autonomous System (AS) path prepend to influence route selection.
community string
BGP regular or large community for matching routes.
localPreference number
Local preference indicates the degree of preference for one BGP route over other BGP routes.
med number
Multi Exit Descriminator (lower value is preferred over higher value).
preferGlobalV6NextHop boolean
Indicator whether to prefer IPv6 global address over link-local as the next hop.
weight number
Weight is used to select a route when multiple routes are available to the same network.
as_path_prepend str
Autonomous System (AS) path prepend to influence route selection.
community str
BGP regular or large community for matching routes.
local_preference float
Local preference indicates the degree of preference for one BGP route over other BGP routes.
med float
Multi Exit Descriminator (lower value is preferred over higher value).
prefer_global_v6_next_hop bool
Indicator whether to prefer IPv6 global address over link-local as the next hop.
weight float
Weight is used to select a route when multiple routes are available to the same network.
asPathPrepend String
Autonomous System (AS) path prepend to influence route selection.
community String
BGP regular or large community for matching routes.
localPreference Number
Local preference indicates the degree of preference for one BGP route over other BGP routes.
med Number
Multi Exit Descriminator (lower value is preferred over higher value).
preferGlobalV6NextHop Boolean
Indicator whether to prefer IPv6 global address over link-local as the next hop.
weight Number
Weight is used to select a route when multiple routes are available to the same network.

PolicyGatewayRouteMapTag
, PolicyGatewayRouteMapTagArgs

Scope string
Tag string
A list of scope + tag pairs to associate with this resource.
Scope string
Tag string
A list of scope + tag pairs to associate with this resource.
scope String
tag String
A list of scope + tag pairs to associate with this resource.
scope string
tag string
A list of scope + tag pairs to associate with this resource.
scope str
tag str
A list of scope + tag pairs to associate with this resource.
scope String
tag String
A list of scope + tag pairs to associate with this resource.

Package Details

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