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

nxos.getIpv4Vrf

Explore with Pulumi AI

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

    This data source can read the IPv4 VRF information.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nxos = Pulumi.Nxos;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Nxos.GetIpv4Vrf.Invoke(new()
        {
            Name = "VRF1",
        });
    
    });
    
    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.LookupIpv4Vrf(ctx, &nxos.LookupIpv4VrfArgs{
    			Name: "VRF1",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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.GetIpv4VrfArgs;
    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.getIpv4Vrf(GetIpv4VrfArgs.builder()
                .name("VRF1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_nxos as nxos
    
    example = nxos.get_ipv4_vrf(name="VRF1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as nxos from "@pulumi/nxos";
    
    const example = nxos.getIpv4Vrf({
        name: "VRF1",
    });
    
    variables:
      example:
        fn::invoke:
          Function: nxos:getIpv4Vrf
          Arguments:
            name: VRF1
    

    Using getIpv4Vrf

    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 getIpv4Vrf(args: GetIpv4VrfArgs, opts?: InvokeOptions): Promise<GetIpv4VrfResult>
    function getIpv4VrfOutput(args: GetIpv4VrfOutputArgs, opts?: InvokeOptions): Output<GetIpv4VrfResult>
    def get_ipv4_vrf(device: Optional[str] = None,
                     name: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetIpv4VrfResult
    def get_ipv4_vrf_output(device: Optional[pulumi.Input[str]] = None,
                     name: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetIpv4VrfResult]
    func LookupIpv4Vrf(ctx *Context, args *LookupIpv4VrfArgs, opts ...InvokeOption) (*LookupIpv4VrfResult, error)
    func LookupIpv4VrfOutput(ctx *Context, args *LookupIpv4VrfOutputArgs, opts ...InvokeOption) LookupIpv4VrfResultOutput

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

    public static class GetIpv4Vrf 
    {
        public static Task<GetIpv4VrfResult> InvokeAsync(GetIpv4VrfArgs args, InvokeOptions? opts = null)
        public static Output<GetIpv4VrfResult> Invoke(GetIpv4VrfInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIpv4VrfResult> getIpv4Vrf(GetIpv4VrfArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: nxos:index/getIpv4Vrf:getIpv4Vrf
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    VRF name.
    Device string
    A device name from the provider configuration.
    Name string
    VRF name.
    Device string
    A device name from the provider configuration.
    name String
    VRF name.
    device String
    A device name from the provider configuration.
    name string
    VRF name.
    device string
    A device name from the provider configuration.
    name str
    VRF name.
    device str
    A device name from the provider configuration.
    name String
    VRF name.
    device String
    A device name from the provider configuration.

    getIpv4Vrf Result

    The following output properties are available:

    Id string
    The distinguished name of the object.
    Name string
    VRF name.
    Device string
    A device name from the provider configuration.
    Id string
    The distinguished name of the object.
    Name string
    VRF name.
    Device string
    A device name from the provider configuration.
    id String
    The distinguished name of the object.
    name String
    VRF name.
    device String
    A device name from the provider configuration.
    id string
    The distinguished name of the object.
    name string
    VRF name.
    device string
    A device name from the provider configuration.
    id str
    The distinguished name of the object.
    name str
    VRF name.
    device str
    A device name from the provider configuration.
    id String
    The distinguished name of the object.
    name String
    VRF name.
    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.
    nxos logo
    Cisco NX-OS v0.0.2 published on Friday, Sep 29, 2023 by lbrlabs