1. Packages
  2. Vcd Provider
  3. API Docs
  4. NsxtEdgegatewayBgpConfiguration
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.NsxtEdgegatewayBgpConfiguration

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create NsxtEdgegatewayBgpConfiguration Resource

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

    Constructor syntax

    new NsxtEdgegatewayBgpConfiguration(name: string, args: NsxtEdgegatewayBgpConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def NsxtEdgegatewayBgpConfiguration(resource_name: str,
                                        args: NsxtEdgegatewayBgpConfigurationArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def NsxtEdgegatewayBgpConfiguration(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        edge_gateway_id: Optional[str] = None,
                                        enabled: Optional[bool] = None,
                                        ecmp_enabled: Optional[bool] = None,
                                        graceful_restart_mode: Optional[str] = None,
                                        graceful_restart_timer: Optional[float] = None,
                                        local_as_number: Optional[str] = None,
                                        nsxt_edgegateway_bgp_configuration_id: Optional[str] = None,
                                        org: Optional[str] = None,
                                        stale_route_timer: Optional[float] = None)
    func NewNsxtEdgegatewayBgpConfiguration(ctx *Context, name string, args NsxtEdgegatewayBgpConfigurationArgs, opts ...ResourceOption) (*NsxtEdgegatewayBgpConfiguration, error)
    public NsxtEdgegatewayBgpConfiguration(string name, NsxtEdgegatewayBgpConfigurationArgs args, CustomResourceOptions? opts = null)
    public NsxtEdgegatewayBgpConfiguration(String name, NsxtEdgegatewayBgpConfigurationArgs args)
    public NsxtEdgegatewayBgpConfiguration(String name, NsxtEdgegatewayBgpConfigurationArgs args, CustomResourceOptions options)
    
    type: vcd:NsxtEdgegatewayBgpConfiguration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NsxtEdgegatewayBgpConfigurationArgs
    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 NsxtEdgegatewayBgpConfigurationArgs
    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 NsxtEdgegatewayBgpConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NsxtEdgegatewayBgpConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NsxtEdgegatewayBgpConfigurationArgs
    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 nsxtEdgegatewayBgpConfigurationResource = new Vcd.NsxtEdgegatewayBgpConfiguration("nsxtEdgegatewayBgpConfigurationResource", new()
    {
        EdgeGatewayId = "string",
        Enabled = false,
        EcmpEnabled = false,
        GracefulRestartMode = "string",
        GracefulRestartTimer = 0,
        LocalAsNumber = "string",
        NsxtEdgegatewayBgpConfigurationId = "string",
        Org = "string",
        StaleRouteTimer = 0,
    });
    
    example, err := vcd.NewNsxtEdgegatewayBgpConfiguration(ctx, "nsxtEdgegatewayBgpConfigurationResource", &vcd.NsxtEdgegatewayBgpConfigurationArgs{
    	EdgeGatewayId:                     pulumi.String("string"),
    	Enabled:                           pulumi.Bool(false),
    	EcmpEnabled:                       pulumi.Bool(false),
    	GracefulRestartMode:               pulumi.String("string"),
    	GracefulRestartTimer:              pulumi.Float64(0),
    	LocalAsNumber:                     pulumi.String("string"),
    	NsxtEdgegatewayBgpConfigurationId: pulumi.String("string"),
    	Org:                               pulumi.String("string"),
    	StaleRouteTimer:                   pulumi.Float64(0),
    })
    
    var nsxtEdgegatewayBgpConfigurationResource = new NsxtEdgegatewayBgpConfiguration("nsxtEdgegatewayBgpConfigurationResource", NsxtEdgegatewayBgpConfigurationArgs.builder()
        .edgeGatewayId("string")
        .enabled(false)
        .ecmpEnabled(false)
        .gracefulRestartMode("string")
        .gracefulRestartTimer(0)
        .localAsNumber("string")
        .nsxtEdgegatewayBgpConfigurationId("string")
        .org("string")
        .staleRouteTimer(0)
        .build());
    
    nsxt_edgegateway_bgp_configuration_resource = vcd.NsxtEdgegatewayBgpConfiguration("nsxtEdgegatewayBgpConfigurationResource",
        edge_gateway_id="string",
        enabled=False,
        ecmp_enabled=False,
        graceful_restart_mode="string",
        graceful_restart_timer=0,
        local_as_number="string",
        nsxt_edgegateway_bgp_configuration_id="string",
        org="string",
        stale_route_timer=0)
    
    const nsxtEdgegatewayBgpConfigurationResource = new vcd.NsxtEdgegatewayBgpConfiguration("nsxtEdgegatewayBgpConfigurationResource", {
        edgeGatewayId: "string",
        enabled: false,
        ecmpEnabled: false,
        gracefulRestartMode: "string",
        gracefulRestartTimer: 0,
        localAsNumber: "string",
        nsxtEdgegatewayBgpConfigurationId: "string",
        org: "string",
        staleRouteTimer: 0,
    });
    
    type: vcd:NsxtEdgegatewayBgpConfiguration
    properties:
        ecmpEnabled: false
        edgeGatewayId: string
        enabled: false
        gracefulRestartMode: string
        gracefulRestartTimer: 0
        localAsNumber: string
        nsxtEdgegatewayBgpConfigurationId: string
        org: string
        staleRouteTimer: 0
    

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

    EdgeGatewayId string
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    Enabled bool
    Defines if BGP service is enabled or not
    EcmpEnabled bool
    A flag indicating whether ECMP is enabled or not
    GracefulRestartMode string
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    GracefulRestartTimer double
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    LocalAsNumber string
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    NsxtEdgegatewayBgpConfigurationId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    StaleRouteTimer double

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    EdgeGatewayId string
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    Enabled bool
    Defines if BGP service is enabled or not
    EcmpEnabled bool
    A flag indicating whether ECMP is enabled or not
    GracefulRestartMode string
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    GracefulRestartTimer float64
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    LocalAsNumber string
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    NsxtEdgegatewayBgpConfigurationId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    StaleRouteTimer float64

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    edgeGatewayId String
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled Boolean
    Defines if BGP service is enabled or not
    ecmpEnabled Boolean
    A flag indicating whether ECMP is enabled or not
    gracefulRestartMode String
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    gracefulRestartTimer Double
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    localAsNumber String
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxtEdgegatewayBgpConfigurationId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    staleRouteTimer Double

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    edgeGatewayId string
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled boolean
    Defines if BGP service is enabled or not
    ecmpEnabled boolean
    A flag indicating whether ECMP is enabled or not
    gracefulRestartMode string
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    gracefulRestartTimer number
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    localAsNumber string
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxtEdgegatewayBgpConfigurationId string
    org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    staleRouteTimer number

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    edge_gateway_id str
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled bool
    Defines if BGP service is enabled or not
    ecmp_enabled bool
    A flag indicating whether ECMP is enabled or not
    graceful_restart_mode str
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    graceful_restart_timer float
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    local_as_number str
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxt_edgegateway_bgp_configuration_id str
    org str
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    stale_route_timer float

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    edgeGatewayId String
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled Boolean
    Defines if BGP service is enabled or not
    ecmpEnabled Boolean
    A flag indicating whether ECMP is enabled or not
    gracefulRestartMode String
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    gracefulRestartTimer Number
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    localAsNumber String
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxtEdgegatewayBgpConfigurationId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    staleRouteTimer Number

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NsxtEdgegatewayBgpConfiguration Resource

    Get an existing NsxtEdgegatewayBgpConfiguration 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?: NsxtEdgegatewayBgpConfigurationState, opts?: CustomResourceOptions): NsxtEdgegatewayBgpConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ecmp_enabled: Optional[bool] = None,
            edge_gateway_id: Optional[str] = None,
            enabled: Optional[bool] = None,
            graceful_restart_mode: Optional[str] = None,
            graceful_restart_timer: Optional[float] = None,
            local_as_number: Optional[str] = None,
            nsxt_edgegateway_bgp_configuration_id: Optional[str] = None,
            org: Optional[str] = None,
            stale_route_timer: Optional[float] = None) -> NsxtEdgegatewayBgpConfiguration
    func GetNsxtEdgegatewayBgpConfiguration(ctx *Context, name string, id IDInput, state *NsxtEdgegatewayBgpConfigurationState, opts ...ResourceOption) (*NsxtEdgegatewayBgpConfiguration, error)
    public static NsxtEdgegatewayBgpConfiguration Get(string name, Input<string> id, NsxtEdgegatewayBgpConfigurationState? state, CustomResourceOptions? opts = null)
    public static NsxtEdgegatewayBgpConfiguration get(String name, Output<String> id, NsxtEdgegatewayBgpConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: vcd:NsxtEdgegatewayBgpConfiguration    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    EcmpEnabled bool
    A flag indicating whether ECMP is enabled or not
    EdgeGatewayId string
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    Enabled bool
    Defines if BGP service is enabled or not
    GracefulRestartMode string
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    GracefulRestartTimer double
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    LocalAsNumber string
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    NsxtEdgegatewayBgpConfigurationId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    StaleRouteTimer double

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    EcmpEnabled bool
    A flag indicating whether ECMP is enabled or not
    EdgeGatewayId string
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    Enabled bool
    Defines if BGP service is enabled or not
    GracefulRestartMode string
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    GracefulRestartTimer float64
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    LocalAsNumber string
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    NsxtEdgegatewayBgpConfigurationId string
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    StaleRouteTimer float64

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    ecmpEnabled Boolean
    A flag indicating whether ECMP is enabled or not
    edgeGatewayId String
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled Boolean
    Defines if BGP service is enabled or not
    gracefulRestartMode String
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    gracefulRestartTimer Double
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    localAsNumber String
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxtEdgegatewayBgpConfigurationId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    staleRouteTimer Double

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    ecmpEnabled boolean
    A flag indicating whether ECMP is enabled or not
    edgeGatewayId string
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled boolean
    Defines if BGP service is enabled or not
    gracefulRestartMode string
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    gracefulRestartTimer number
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    localAsNumber string
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxtEdgegatewayBgpConfigurationId string
    org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    staleRouteTimer number

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    ecmp_enabled bool
    A flag indicating whether ECMP is enabled or not
    edge_gateway_id str
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled bool
    Defines if BGP service is enabled or not
    graceful_restart_mode str
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    graceful_restart_timer float
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    local_as_number str
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxt_edgegateway_bgp_configuration_id str
    org str
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    stale_route_timer float

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    ecmpEnabled Boolean
    A flag indicating whether ECMP is enabled or not
    edgeGatewayId String
    The ID of the Edge Gateway (NSX-T only). Can be looked up using vcd.NsxtEdgegateway datasource
    enabled Boolean
    Defines if BGP service is enabled or not
    gracefulRestartMode String
    Describes Graceful Restart configuration Modes for BGP configuration on an Edge Gateway. Read only for VRF backed Edge Gateways. Possible options are:

    • DISABLE - Both graceful restart and helper modes are disabled
    • HELPER_ONLY - The ability for a BGP speaker to indicate its ability to preserve forwarding state during BGP restart
    • GRACEFUL_AND_HELPER - The ability of a BGP speaker to advertise its restart to its peers
    gracefulRestartTimer Number
    Maximum time taken (in seconds) for a BGP session to be established after a restart. If the session is not re-established within this timer, the receiving speaker will delete all the stale routes from that peer. Read only for VRF backed Edge Gateways.
    localAsNumber String
    BGP autonomous systems (AS) number to advertise to BGP peers. BGP AS number can be specified in either ASPLAIN or ASDOT formats, like ASPLAIN format : '65546', ASDOT format : '1.10'. Read only for VRF backed Edge Gateways
    nsxtEdgegatewayBgpConfigurationId String
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    staleRouteTimer Number

    Maximum time (in seconds) before stale routes are removed when BGP restarts. Read only for VRF backed Edge Gateways

    More information about settings can be found in VMware Cloud Director BGP Configuration documentation

    Package Details

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