1. Packages
  2. Cisco IOS XE Resource Provider
  3. API Docs
  4. getInterfaceMpls
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

iosxe.getInterfaceMpls

Explore with Pulumi AI

Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

This data source can read the Interface MPLS configuration.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var example = Iosxe.GetInterfaceMpls.Invoke(new()
    {
        Name = "1",
        Type = "Loopback",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := iosxe.LookupInterfaceMpls(ctx, &iosxe.LookupInterfaceMplsArgs{
			Name: "1",
			Type: "Loopback",
		}, 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.iosxe.IosxeFunctions;
import com.pulumi.iosxe.inputs.GetInterfaceMplsArgs;
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 = IosxeFunctions.getInterfaceMpls(GetInterfaceMplsArgs.builder()
            .name("1")
            .type("Loopback")
            .build());

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

const example = iosxe.getInterfaceMpls({
    name: "1",
    type: "Loopback",
});
Copy
import pulumi
import pulumi_iosxe as iosxe

example = iosxe.get_interface_mpls(name="1",
    type="Loopback")
Copy
variables:
  example:
    fn::invoke:
      Function: iosxe:getInterfaceMpls
      Arguments:
        name: '1'
        type: Loopback
Copy

Using getInterfaceMpls

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 getInterfaceMpls(args: GetInterfaceMplsArgs, opts?: InvokeOptions): Promise<GetInterfaceMplsResult>
function getInterfaceMplsOutput(args: GetInterfaceMplsOutputArgs, opts?: InvokeOptions): Output<GetInterfaceMplsResult>
Copy
def get_interface_mpls(device: Optional[str] = None,
                       name: Optional[str] = None,
                       type: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetInterfaceMplsResult
def get_interface_mpls_output(device: Optional[pulumi.Input[str]] = None,
                       name: Optional[pulumi.Input[str]] = None,
                       type: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetInterfaceMplsResult]
Copy
func LookupInterfaceMpls(ctx *Context, args *LookupInterfaceMplsArgs, opts ...InvokeOption) (*LookupInterfaceMplsResult, error)
func LookupInterfaceMplsOutput(ctx *Context, args *LookupInterfaceMplsOutputArgs, opts ...InvokeOption) LookupInterfaceMplsResultOutput
Copy

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

public static class GetInterfaceMpls 
{
    public static Task<GetInterfaceMplsResult> InvokeAsync(GetInterfaceMplsArgs args, InvokeOptions? opts = null)
    public static Output<GetInterfaceMplsResult> Invoke(GetInterfaceMplsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetInterfaceMplsResult> getInterfaceMpls(GetInterfaceMplsArgs args, InvokeOptions options)
public static Output<GetInterfaceMplsResult> getInterfaceMpls(GetInterfaceMplsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: iosxe:index/getInterfaceMpls:getInterfaceMpls
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Name This property is required. string
Type This property is required. string
Interface type
Device string
A device name from the provider configuration.
Name This property is required. string
Type This property is required. string
Interface type
Device string
A device name from the provider configuration.
name This property is required. String
type This property is required. String
Interface type
device String
A device name from the provider configuration.
name This property is required. string
type This property is required. string
Interface type
device string
A device name from the provider configuration.
name This property is required. str
type This property is required. str
Interface type
device str
A device name from the provider configuration.
name This property is required. String
type This property is required. String
Interface type
device String
A device name from the provider configuration.

getInterfaceMpls Result

The following output properties are available:

Id string
The path of the retrieved object.
Ip bool
Configure dynamic MPLS forwarding for IP
Mtu string
Set MPLS Maximum Transmission Unit
Name string
Type string
Interface type
Device string
A device name from the provider configuration.
Id string
The path of the retrieved object.
Ip bool
Configure dynamic MPLS forwarding for IP
Mtu string
Set MPLS Maximum Transmission Unit
Name string
Type string
Interface type
Device string
A device name from the provider configuration.
id String
The path of the retrieved object.
ip Boolean
Configure dynamic MPLS forwarding for IP
mtu String
Set MPLS Maximum Transmission Unit
name String
type String
Interface type
device String
A device name from the provider configuration.
id string
The path of the retrieved object.
ip boolean
Configure dynamic MPLS forwarding for IP
mtu string
Set MPLS Maximum Transmission Unit
name string
type string
Interface type
device string
A device name from the provider configuration.
id str
The path of the retrieved object.
ip bool
Configure dynamic MPLS forwarding for IP
mtu str
Set MPLS Maximum Transmission Unit
name str
type str
Interface type
device str
A device name from the provider configuration.
id String
The path of the retrieved object.
ip Boolean
Configure dynamic MPLS forwarding for IP
mtu String
Set MPLS Maximum Transmission Unit
name String
type String
Interface type
device String
A device name from the provider configuration.

Package Details

Repository
iosxe lbrlabs/pulumi-iosxe
License
Apache-2.0
Notes
This Pulumi package is based on the iosxe Terraform Provider.
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs