1. Packages
  2. Cisco NX OS Resource Provider
  3. API Docs
  4. getBgpVrf
Cisco NX-OS v0.0.2 published on Friday, Sep 29, 2023 by lbrlabs

nxos.getBgpVrf

Explore with Pulumi AI

Cisco NX-OS v0.0.2 published on Friday, Sep 29, 2023 by lbrlabs

This data source can read the BGP domain (VRF) configuration.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nxos = Pulumi.Nxos;

return await Deployment.RunAsync(() => 
{
    var example = Nxos.GetBgpVrf.Invoke(new()
    {
        Asn = "65001",
        Name = "default",
    });

});
Copy
package main

import (
	"github.com/lbrlabs/pulumi-nxos/sdk/go/nxos"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := nxos.LookupBgpVrf(ctx, &nxos.LookupBgpVrfArgs{
			Asn:  "65001",
			Name: "default",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nxos.NxosFunctions;
import com.pulumi.nxos.inputs.GetBgpVrfArgs;
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) {
        final var example = NxosFunctions.getBgpVrf(GetBgpVrfArgs.builder()
            .asn("65001")
            .name("default")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as nxos from "@pulumi/nxos";

const example = nxos.getBgpVrf({
    asn: "65001",
    name: "default",
});
Copy
import pulumi
import pulumi_nxos as nxos

example = nxos.get_bgp_vrf(asn="65001",
    name="default")
Copy
variables:
  example:
    fn::invoke:
      Function: nxos:getBgpVrf
      Arguments:
        asn: '65001'
        name: default
Copy

Using getBgpVrf

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getBgpVrf(args: GetBgpVrfArgs, opts?: InvokeOptions): Promise<GetBgpVrfResult>
function getBgpVrfOutput(args: GetBgpVrfOutputArgs, opts?: InvokeOptions): Output<GetBgpVrfResult>
Copy
def get_bgp_vrf(asn: Optional[str] = None,
                device: Optional[str] = None,
                name: Optional[str] = None,
                opts: Optional[InvokeOptions] = None) -> GetBgpVrfResult
def get_bgp_vrf_output(asn: Optional[pulumi.Input[str]] = None,
                device: Optional[pulumi.Input[str]] = None,
                name: Optional[pulumi.Input[str]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetBgpVrfResult]
Copy
func LookupBgpVrf(ctx *Context, args *LookupBgpVrfArgs, opts ...InvokeOption) (*LookupBgpVrfResult, error)
func LookupBgpVrfOutput(ctx *Context, args *LookupBgpVrfOutputArgs, opts ...InvokeOption) LookupBgpVrfResultOutput
Copy

> Note: This function is named LookupBgpVrf in the Go SDK.

public static class GetBgpVrf 
{
    public static Task<GetBgpVrfResult> InvokeAsync(GetBgpVrfArgs args, InvokeOptions? opts = null)
    public static Output<GetBgpVrfResult> Invoke(GetBgpVrfInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetBgpVrfResult> getBgpVrf(GetBgpVrfArgs args, InvokeOptions options)
public static Output<GetBgpVrfResult> getBgpVrf(GetBgpVrfArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: nxos:index/getBgpVrf:getBgpVrf
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Asn This property is required. string
Autonomous system number.
Name This property is required. string
VRF name.
Device string
A device name from the provider configuration.
Asn This property is required. string
Autonomous system number.
Name This property is required. string
VRF name.
Device string
A device name from the provider configuration.
asn This property is required. String
Autonomous system number.
name This property is required. String
VRF name.
device String
A device name from the provider configuration.
asn This property is required. string
Autonomous system number.
name This property is required. string
VRF name.
device string
A device name from the provider configuration.
asn This property is required. str
Autonomous system number.
name This property is required. str
VRF name.
device str
A device name from the provider configuration.
asn This property is required. String
Autonomous system number.
name This property is required. String
VRF name.
device String
A device name from the provider configuration.

getBgpVrf Result

The following output properties are available:

Asn string
Autonomous system number.
Id string
The distinguished name of the object.
Name string
VRF name.
RouterId string
Router ID.
Device string
A device name from the provider configuration.
Asn string
Autonomous system number.
Id string
The distinguished name of the object.
Name string
VRF name.
RouterId string
Router ID.
Device string
A device name from the provider configuration.
asn String
Autonomous system number.
id String
The distinguished name of the object.
name String
VRF name.
routerId String
Router ID.
device String
A device name from the provider configuration.
asn string
Autonomous system number.
id string
The distinguished name of the object.
name string
VRF name.
routerId string
Router ID.
device string
A device name from the provider configuration.
asn str
Autonomous system number.
id str
The distinguished name of the object.
name str
VRF name.
router_id str
Router ID.
device str
A device name from the provider configuration.
asn String
Autonomous system number.
id String
The distinguished name of the object.
name String
VRF name.
routerId String
Router ID.
device String
A device name from the provider configuration.

Package Details

Repository
nxos lbrlabs/pulumi-nxos
License
Apache-2.0
Notes
This Pulumi package is based on the nxos Terraform Provider.
Cisco NX-OS v0.0.2 published on Friday, Sep 29, 2023 by lbrlabs