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

iosxe.Evpn

Explore with Pulumi AI

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

    This resource can manage the EVPN configuration.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Iosxe = Lbrlabs.PulumiPackage.Iosxe;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Iosxe.Evpn("example", new()
        {
            DefaultGatewayAdvertise = true,
            IpDuplicationLimit = 10,
            IpDuplicationTime = 100,
            LoggingPeerState = true,
            MacDuplicationLimit = 10,
            MacDuplicationTime = 100,
            ReplicationTypeIngress = false,
            ReplicationTypeMp2mp = false,
            ReplicationTypeP2mp = false,
            ReplicationTypeStatic = true,
            RouteTargetAutoVni = true,
            RouterIdLoopback = 100,
        });
    
    });
    
    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.NewEvpn(ctx, "example", &iosxe.EvpnArgs{
    			DefaultGatewayAdvertise: pulumi.Bool(true),
    			IpDuplicationLimit:      pulumi.Int(10),
    			IpDuplicationTime:       pulumi.Int(100),
    			LoggingPeerState:        pulumi.Bool(true),
    			MacDuplicationLimit:     pulumi.Int(10),
    			MacDuplicationTime:      pulumi.Int(100),
    			ReplicationTypeIngress:  pulumi.Bool(false),
    			ReplicationTypeMp2mp:    pulumi.Bool(false),
    			ReplicationTypeP2mp:     pulumi.Bool(false),
    			ReplicationTypeStatic:   pulumi.Bool(true),
    			RouteTargetAutoVni:      pulumi.Bool(true),
    			RouterIdLoopback:        pulumi.Int(100),
    		})
    		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.iosxe.Evpn;
    import com.pulumi.iosxe.EvpnArgs;
    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) {
            var example = new Evpn("example", EvpnArgs.builder()        
                .defaultGatewayAdvertise(true)
                .ipDuplicationLimit(10)
                .ipDuplicationTime(100)
                .loggingPeerState(true)
                .macDuplicationLimit(10)
                .macDuplicationTime(100)
                .replicationTypeIngress(false)
                .replicationTypeMp2mp(false)
                .replicationTypeP2mp(false)
                .replicationTypeStatic(true)
                .routeTargetAutoVni(true)
                .routerIdLoopback(100)
                .build());
    
        }
    }
    
    import pulumi
    import lbrlabs_pulumi_iosxe as iosxe
    
    example = iosxe.Evpn("example",
        default_gateway_advertise=True,
        ip_duplication_limit=10,
        ip_duplication_time=100,
        logging_peer_state=True,
        mac_duplication_limit=10,
        mac_duplication_time=100,
        replication_type_ingress=False,
        replication_type_mp2mp=False,
        replication_type_p2mp=False,
        replication_type_static=True,
        route_target_auto_vni=True,
        router_id_loopback=100)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as iosxe from "@lbrlabs/pulumi-iosxe";
    
    const example = new iosxe.Evpn("example", {
        defaultGatewayAdvertise: true,
        ipDuplicationLimit: 10,
        ipDuplicationTime: 100,
        loggingPeerState: true,
        macDuplicationLimit: 10,
        macDuplicationTime: 100,
        replicationTypeIngress: false,
        replicationTypeMp2mp: false,
        replicationTypeP2mp: false,
        replicationTypeStatic: true,
        routeTargetAutoVni: true,
        routerIdLoopback: 100,
    });
    
    resources:
      example:
        type: iosxe:Evpn
        properties:
          defaultGatewayAdvertise: true
          ipDuplicationLimit: 10
          ipDuplicationTime: 100
          loggingPeerState: true
          macDuplicationLimit: 10
          macDuplicationTime: 100
          replicationTypeIngress: false
          replicationTypeMp2mp: false
          replicationTypeP2mp: false
          replicationTypeStatic: true
          routeTargetAutoVni: true
          routerIdLoopback: 100
    

    Create Evpn Resource

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

    Constructor syntax

    new Evpn(name: string, args?: EvpnArgs, opts?: CustomResourceOptions);
    @overload
    def Evpn(resource_name: str,
             args: Optional[EvpnArgs] = None,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Evpn(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             default_gateway_advertise: Optional[bool] = None,
             delete_mode: Optional[str] = None,
             device: Optional[str] = None,
             ip_duplication_limit: Optional[int] = None,
             ip_duplication_time: Optional[int] = None,
             logging_peer_state: Optional[bool] = None,
             mac_duplication_limit: Optional[int] = None,
             mac_duplication_time: Optional[int] = None,
             replication_type_ingress: Optional[bool] = None,
             replication_type_mp2mp: Optional[bool] = None,
             replication_type_p2mp: Optional[bool] = None,
             replication_type_static: Optional[bool] = None,
             route_target_auto_vni: Optional[bool] = None,
             router_id_loopback: Optional[int] = None)
    func NewEvpn(ctx *Context, name string, args *EvpnArgs, opts ...ResourceOption) (*Evpn, error)
    public Evpn(string name, EvpnArgs? args = null, CustomResourceOptions? opts = null)
    public Evpn(String name, EvpnArgs args)
    public Evpn(String name, EvpnArgs args, CustomResourceOptions options)
    
    type: iosxe:Evpn
    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 EvpnArgs
    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 EvpnArgs
    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 EvpnArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var evpnResource = new Iosxe.Evpn("evpnResource", new()
    {
        DefaultGatewayAdvertise = false,
        DeleteMode = "string",
        Device = "string",
        IpDuplicationLimit = 0,
        IpDuplicationTime = 0,
        LoggingPeerState = false,
        MacDuplicationLimit = 0,
        MacDuplicationTime = 0,
        ReplicationTypeIngress = false,
        ReplicationTypeMp2mp = false,
        ReplicationTypeP2mp = false,
        ReplicationTypeStatic = false,
        RouteTargetAutoVni = false,
        RouterIdLoopback = 0,
    });
    
    example, err := iosxe.NewEvpn(ctx, "evpnResource", &iosxe.EvpnArgs{
    	DefaultGatewayAdvertise: pulumi.Bool(false),
    	DeleteMode:              pulumi.String("string"),
    	Device:                  pulumi.String("string"),
    	IpDuplicationLimit:      pulumi.Int(0),
    	IpDuplicationTime:       pulumi.Int(0),
    	LoggingPeerState:        pulumi.Bool(false),
    	MacDuplicationLimit:     pulumi.Int(0),
    	MacDuplicationTime:      pulumi.Int(0),
    	ReplicationTypeIngress:  pulumi.Bool(false),
    	ReplicationTypeMp2mp:    pulumi.Bool(false),
    	ReplicationTypeP2mp:     pulumi.Bool(false),
    	ReplicationTypeStatic:   pulumi.Bool(false),
    	RouteTargetAutoVni:      pulumi.Bool(false),
    	RouterIdLoopback:        pulumi.Int(0),
    })
    
    var evpnResource = new Evpn("evpnResource", EvpnArgs.builder()
        .defaultGatewayAdvertise(false)
        .deleteMode("string")
        .device("string")
        .ipDuplicationLimit(0)
        .ipDuplicationTime(0)
        .loggingPeerState(false)
        .macDuplicationLimit(0)
        .macDuplicationTime(0)
        .replicationTypeIngress(false)
        .replicationTypeMp2mp(false)
        .replicationTypeP2mp(false)
        .replicationTypeStatic(false)
        .routeTargetAutoVni(false)
        .routerIdLoopback(0)
        .build());
    
    evpn_resource = iosxe.Evpn("evpnResource",
        default_gateway_advertise=False,
        delete_mode="string",
        device="string",
        ip_duplication_limit=0,
        ip_duplication_time=0,
        logging_peer_state=False,
        mac_duplication_limit=0,
        mac_duplication_time=0,
        replication_type_ingress=False,
        replication_type_mp2mp=False,
        replication_type_p2mp=False,
        replication_type_static=False,
        route_target_auto_vni=False,
        router_id_loopback=0)
    
    const evpnResource = new iosxe.Evpn("evpnResource", {
        defaultGatewayAdvertise: false,
        deleteMode: "string",
        device: "string",
        ipDuplicationLimit: 0,
        ipDuplicationTime: 0,
        loggingPeerState: false,
        macDuplicationLimit: 0,
        macDuplicationTime: 0,
        replicationTypeIngress: false,
        replicationTypeMp2mp: false,
        replicationTypeP2mp: false,
        replicationTypeStatic: false,
        routeTargetAutoVni: false,
        routerIdLoopback: 0,
    });
    
    type: iosxe:Evpn
    properties:
        defaultGatewayAdvertise: false
        deleteMode: string
        device: string
        ipDuplicationLimit: 0
        ipDuplicationTime: 0
        loggingPeerState: false
        macDuplicationLimit: 0
        macDuplicationTime: 0
        replicationTypeIngress: false
        replicationTypeMp2mp: false
        replicationTypeP2mp: false
        replicationTypeStatic: false
        routeTargetAutoVni: false
        routerIdLoopback: 0
    

    Evpn Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Evpn resource accepts the following input properties:

    DefaultGatewayAdvertise bool
    Advertise Default Gateway MAC/IP routes
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Device string
    A device name from the provider configuration.
    IpDuplicationLimit int
    Number of IP moves within specified time interval - Range: 2-1000
    IpDuplicationTime int
    IP duplication timer - Range: 10-36000
    LoggingPeerState bool
    Peer state transition logging
    MacDuplicationLimit int
    Number of MAC moves within specified time interval - Range: 2-1000
    MacDuplicationTime int
    MAC duplication timer - Range: 10-36000
    ReplicationTypeIngress bool
    Ingress replication
    ReplicationTypeMp2mp bool
    mp2mp replication
    ReplicationTypeP2mp bool
    p2mp replication
    ReplicationTypeStatic bool
    Static replication
    RouteTargetAutoVni bool
    Set vni-based route-target
    RouterIdLoopback int
    Loopback interface - Range: 0-2147483647
    DefaultGatewayAdvertise bool
    Advertise Default Gateway MAC/IP routes
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Device string
    A device name from the provider configuration.
    IpDuplicationLimit int
    Number of IP moves within specified time interval - Range: 2-1000
    IpDuplicationTime int
    IP duplication timer - Range: 10-36000
    LoggingPeerState bool
    Peer state transition logging
    MacDuplicationLimit int
    Number of MAC moves within specified time interval - Range: 2-1000
    MacDuplicationTime int
    MAC duplication timer - Range: 10-36000
    ReplicationTypeIngress bool
    Ingress replication
    ReplicationTypeMp2mp bool
    mp2mp replication
    ReplicationTypeP2mp bool
    p2mp replication
    ReplicationTypeStatic bool
    Static replication
    RouteTargetAutoVni bool
    Set vni-based route-target
    RouterIdLoopback int
    Loopback interface - Range: 0-2147483647
    defaultGatewayAdvertise Boolean
    Advertise Default Gateway MAC/IP routes
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device String
    A device name from the provider configuration.
    ipDuplicationLimit Integer
    Number of IP moves within specified time interval - Range: 2-1000
    ipDuplicationTime Integer
    IP duplication timer - Range: 10-36000
    loggingPeerState Boolean
    Peer state transition logging
    macDuplicationLimit Integer
    Number of MAC moves within specified time interval - Range: 2-1000
    macDuplicationTime Integer
    MAC duplication timer - Range: 10-36000
    replicationTypeIngress Boolean
    Ingress replication
    replicationTypeMp2mp Boolean
    mp2mp replication
    replicationTypeP2mp Boolean
    p2mp replication
    replicationTypeStatic Boolean
    Static replication
    routeTargetAutoVni Boolean
    Set vni-based route-target
    routerIdLoopback Integer
    Loopback interface - Range: 0-2147483647
    defaultGatewayAdvertise boolean
    Advertise Default Gateway MAC/IP routes
    deleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device string
    A device name from the provider configuration.
    ipDuplicationLimit number
    Number of IP moves within specified time interval - Range: 2-1000
    ipDuplicationTime number
    IP duplication timer - Range: 10-36000
    loggingPeerState boolean
    Peer state transition logging
    macDuplicationLimit number
    Number of MAC moves within specified time interval - Range: 2-1000
    macDuplicationTime number
    MAC duplication timer - Range: 10-36000
    replicationTypeIngress boolean
    Ingress replication
    replicationTypeMp2mp boolean
    mp2mp replication
    replicationTypeP2mp boolean
    p2mp replication
    replicationTypeStatic boolean
    Static replication
    routeTargetAutoVni boolean
    Set vni-based route-target
    routerIdLoopback number
    Loopback interface - Range: 0-2147483647
    default_gateway_advertise bool
    Advertise Default Gateway MAC/IP routes
    delete_mode str
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device str
    A device name from the provider configuration.
    ip_duplication_limit int
    Number of IP moves within specified time interval - Range: 2-1000
    ip_duplication_time int
    IP duplication timer - Range: 10-36000
    logging_peer_state bool
    Peer state transition logging
    mac_duplication_limit int
    Number of MAC moves within specified time interval - Range: 2-1000
    mac_duplication_time int
    MAC duplication timer - Range: 10-36000
    replication_type_ingress bool
    Ingress replication
    replication_type_mp2mp bool
    mp2mp replication
    replication_type_p2mp bool
    p2mp replication
    replication_type_static bool
    Static replication
    route_target_auto_vni bool
    Set vni-based route-target
    router_id_loopback int
    Loopback interface - Range: 0-2147483647
    defaultGatewayAdvertise Boolean
    Advertise Default Gateway MAC/IP routes
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device String
    A device name from the provider configuration.
    ipDuplicationLimit Number
    Number of IP moves within specified time interval - Range: 2-1000
    ipDuplicationTime Number
    IP duplication timer - Range: 10-36000
    loggingPeerState Boolean
    Peer state transition logging
    macDuplicationLimit Number
    Number of MAC moves within specified time interval - Range: 2-1000
    macDuplicationTime Number
    MAC duplication timer - Range: 10-36000
    replicationTypeIngress Boolean
    Ingress replication
    replicationTypeMp2mp Boolean
    mp2mp replication
    replicationTypeP2mp Boolean
    p2mp replication
    replicationTypeStatic Boolean
    Static replication
    routeTargetAutoVni Boolean
    Set vni-based route-target
    routerIdLoopback Number
    Loopback interface - Range: 0-2147483647

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Evpn 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 Evpn Resource

    Get an existing Evpn 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?: EvpnState, opts?: CustomResourceOptions): Evpn
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            default_gateway_advertise: Optional[bool] = None,
            delete_mode: Optional[str] = None,
            device: Optional[str] = None,
            ip_duplication_limit: Optional[int] = None,
            ip_duplication_time: Optional[int] = None,
            logging_peer_state: Optional[bool] = None,
            mac_duplication_limit: Optional[int] = None,
            mac_duplication_time: Optional[int] = None,
            replication_type_ingress: Optional[bool] = None,
            replication_type_mp2mp: Optional[bool] = None,
            replication_type_p2mp: Optional[bool] = None,
            replication_type_static: Optional[bool] = None,
            route_target_auto_vni: Optional[bool] = None,
            router_id_loopback: Optional[int] = None) -> Evpn
    func GetEvpn(ctx *Context, name string, id IDInput, state *EvpnState, opts ...ResourceOption) (*Evpn, error)
    public static Evpn Get(string name, Input<string> id, EvpnState? state, CustomResourceOptions? opts = null)
    public static Evpn get(String name, Output<String> id, EvpnState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    DefaultGatewayAdvertise bool
    Advertise Default Gateway MAC/IP routes
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Device string
    A device name from the provider configuration.
    IpDuplicationLimit int
    Number of IP moves within specified time interval - Range: 2-1000
    IpDuplicationTime int
    IP duplication timer - Range: 10-36000
    LoggingPeerState bool
    Peer state transition logging
    MacDuplicationLimit int
    Number of MAC moves within specified time interval - Range: 2-1000
    MacDuplicationTime int
    MAC duplication timer - Range: 10-36000
    ReplicationTypeIngress bool
    Ingress replication
    ReplicationTypeMp2mp bool
    mp2mp replication
    ReplicationTypeP2mp bool
    p2mp replication
    ReplicationTypeStatic bool
    Static replication
    RouteTargetAutoVni bool
    Set vni-based route-target
    RouterIdLoopback int
    Loopback interface - Range: 0-2147483647
    DefaultGatewayAdvertise bool
    Advertise Default Gateway MAC/IP routes
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Device string
    A device name from the provider configuration.
    IpDuplicationLimit int
    Number of IP moves within specified time interval - Range: 2-1000
    IpDuplicationTime int
    IP duplication timer - Range: 10-36000
    LoggingPeerState bool
    Peer state transition logging
    MacDuplicationLimit int
    Number of MAC moves within specified time interval - Range: 2-1000
    MacDuplicationTime int
    MAC duplication timer - Range: 10-36000
    ReplicationTypeIngress bool
    Ingress replication
    ReplicationTypeMp2mp bool
    mp2mp replication
    ReplicationTypeP2mp bool
    p2mp replication
    ReplicationTypeStatic bool
    Static replication
    RouteTargetAutoVni bool
    Set vni-based route-target
    RouterIdLoopback int
    Loopback interface - Range: 0-2147483647
    defaultGatewayAdvertise Boolean
    Advertise Default Gateway MAC/IP routes
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device String
    A device name from the provider configuration.
    ipDuplicationLimit Integer
    Number of IP moves within specified time interval - Range: 2-1000
    ipDuplicationTime Integer
    IP duplication timer - Range: 10-36000
    loggingPeerState Boolean
    Peer state transition logging
    macDuplicationLimit Integer
    Number of MAC moves within specified time interval - Range: 2-1000
    macDuplicationTime Integer
    MAC duplication timer - Range: 10-36000
    replicationTypeIngress Boolean
    Ingress replication
    replicationTypeMp2mp Boolean
    mp2mp replication
    replicationTypeP2mp Boolean
    p2mp replication
    replicationTypeStatic Boolean
    Static replication
    routeTargetAutoVni Boolean
    Set vni-based route-target
    routerIdLoopback Integer
    Loopback interface - Range: 0-2147483647
    defaultGatewayAdvertise boolean
    Advertise Default Gateway MAC/IP routes
    deleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device string
    A device name from the provider configuration.
    ipDuplicationLimit number
    Number of IP moves within specified time interval - Range: 2-1000
    ipDuplicationTime number
    IP duplication timer - Range: 10-36000
    loggingPeerState boolean
    Peer state transition logging
    macDuplicationLimit number
    Number of MAC moves within specified time interval - Range: 2-1000
    macDuplicationTime number
    MAC duplication timer - Range: 10-36000
    replicationTypeIngress boolean
    Ingress replication
    replicationTypeMp2mp boolean
    mp2mp replication
    replicationTypeP2mp boolean
    p2mp replication
    replicationTypeStatic boolean
    Static replication
    routeTargetAutoVni boolean
    Set vni-based route-target
    routerIdLoopback number
    Loopback interface - Range: 0-2147483647
    default_gateway_advertise bool
    Advertise Default Gateway MAC/IP routes
    delete_mode str
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device str
    A device name from the provider configuration.
    ip_duplication_limit int
    Number of IP moves within specified time interval - Range: 2-1000
    ip_duplication_time int
    IP duplication timer - Range: 10-36000
    logging_peer_state bool
    Peer state transition logging
    mac_duplication_limit int
    Number of MAC moves within specified time interval - Range: 2-1000
    mac_duplication_time int
    MAC duplication timer - Range: 10-36000
    replication_type_ingress bool
    Ingress replication
    replication_type_mp2mp bool
    mp2mp replication
    replication_type_p2mp bool
    p2mp replication
    replication_type_static bool
    Static replication
    route_target_auto_vni bool
    Set vni-based route-target
    router_id_loopback int
    Loopback interface - Range: 0-2147483647
    defaultGatewayAdvertise Boolean
    Advertise Default Gateway MAC/IP routes
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    device String
    A device name from the provider configuration.
    ipDuplicationLimit Number
    Number of IP moves within specified time interval - Range: 2-1000
    ipDuplicationTime Number
    IP duplication timer - Range: 10-36000
    loggingPeerState Boolean
    Peer state transition logging
    macDuplicationLimit Number
    Number of MAC moves within specified time interval - Range: 2-1000
    macDuplicationTime Number
    MAC duplication timer - Range: 10-36000
    replicationTypeIngress Boolean
    Ingress replication
    replicationTypeMp2mp Boolean
    mp2mp replication
    replicationTypeP2mp Boolean
    p2mp replication
    replicationTypeStatic Boolean
    Static replication
    routeTargetAutoVni Boolean
    Set vni-based route-target
    routerIdLoopback Number
    Loopback interface - Range: 0-2147483647

    Import

     $ pulumi import iosxe:index/evpn:Evpn example "Cisco-IOS-XE-native:native/l2vpn/Cisco-IOS-XE-l2vpn:evpn_cont/evpn"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

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