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

nxos.NveInterface

Explore with Pulumi AI

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

    This resource can manage the NVE interface configuration.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nxos = Lbrlabs.PulumiPackage.Nxos;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Nxos.NveInterface("example", new()
        {
            AdminState = "enabled",
            AdvertiseVirtualMac = true,
            HoldDownTime = 60,
            HostReachabilityProtocol = "bgp",
            IngressReplicationProtocolBgp = true,
            MulticastGroupL2 = "0.0.0.0",
            MulticastGroupL3 = "0.0.0.0",
            MultisiteSourceInterface = "unspecified",
            SourceInterface = "lo0",
            SuppressArp = true,
            SuppressMacRoute = false,
        });
    
    });
    
    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.NewNveInterface(ctx, "example", &nxos.NveInterfaceArgs{
    			AdminState:                    pulumi.String("enabled"),
    			AdvertiseVirtualMac:           pulumi.Bool(true),
    			HoldDownTime:                  pulumi.Int(60),
    			HostReachabilityProtocol:      pulumi.String("bgp"),
    			IngressReplicationProtocolBgp: pulumi.Bool(true),
    			MulticastGroupL2:              pulumi.String("0.0.0.0"),
    			MulticastGroupL3:              pulumi.String("0.0.0.0"),
    			MultisiteSourceInterface:      pulumi.String("unspecified"),
    			SourceInterface:               pulumi.String("lo0"),
    			SuppressArp:                   pulumi.Bool(true),
    			SuppressMacRoute:              pulumi.Bool(false),
    		})
    		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.NveInterface;
    import com.pulumi.nxos.NveInterfaceArgs;
    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 NveInterface("example", NveInterfaceArgs.builder()        
                .adminState("enabled")
                .advertiseVirtualMac(true)
                .holdDownTime(60)
                .hostReachabilityProtocol("bgp")
                .ingressReplicationProtocolBgp(true)
                .multicastGroupL2("0.0.0.0")
                .multicastGroupL3("0.0.0.0")
                .multisiteSourceInterface("unspecified")
                .sourceInterface("lo0")
                .suppressArp(true)
                .suppressMacRoute(false)
                .build());
    
        }
    }
    
    import pulumi
    import lbrlabs_pulumi_nxos as nxos
    
    example = nxos.NveInterface("example",
        admin_state="enabled",
        advertise_virtual_mac=True,
        hold_down_time=60,
        host_reachability_protocol="bgp",
        ingress_replication_protocol_bgp=True,
        multicast_group_l2="0.0.0.0",
        multicast_group_l3="0.0.0.0",
        multisite_source_interface="unspecified",
        source_interface="lo0",
        suppress_arp=True,
        suppress_mac_route=False)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as nxos from "@lbrlabs/pulumi-nxos";
    
    const example = new nxos.NveInterface("example", {
        adminState: "enabled",
        advertiseVirtualMac: true,
        holdDownTime: 60,
        hostReachabilityProtocol: "bgp",
        ingressReplicationProtocolBgp: true,
        multicastGroupL2: "0.0.0.0",
        multicastGroupL3: "0.0.0.0",
        multisiteSourceInterface: "unspecified",
        sourceInterface: "lo0",
        suppressArp: true,
        suppressMacRoute: false,
    });
    
    resources:
      example:
        type: nxos:NveInterface
        properties:
          adminState: enabled
          advertiseVirtualMac: true
          holdDownTime: 60
          hostReachabilityProtocol: bgp
          ingressReplicationProtocolBgp: true
          multicastGroupL2: 0.0.0.0
          multicastGroupL3: 0.0.0.0
          multisiteSourceInterface: unspecified
          sourceInterface: lo0
          suppressArp: true
          suppressMacRoute: false
    

    Create NveInterface Resource

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

    Constructor syntax

    new NveInterface(name: string, args?: NveInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def NveInterface(resource_name: str,
                     args: Optional[NveInterfaceArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def NveInterface(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     admin_state: Optional[str] = None,
                     advertise_virtual_mac: Optional[bool] = None,
                     device: Optional[str] = None,
                     hold_down_time: Optional[int] = None,
                     host_reachability_protocol: Optional[str] = None,
                     ingress_replication_protocol_bgp: Optional[bool] = None,
                     multicast_group_l2: Optional[str] = None,
                     multicast_group_l3: Optional[str] = None,
                     multisite_source_interface: Optional[str] = None,
                     source_interface: Optional[str] = None,
                     suppress_arp: Optional[bool] = None,
                     suppress_mac_route: Optional[bool] = None)
    func NewNveInterface(ctx *Context, name string, args *NveInterfaceArgs, opts ...ResourceOption) (*NveInterface, error)
    public NveInterface(string name, NveInterfaceArgs? args = null, CustomResourceOptions? opts = null)
    public NveInterface(String name, NveInterfaceArgs args)
    public NveInterface(String name, NveInterfaceArgs args, CustomResourceOptions options)
    
    type: nxos:NveInterface
    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 NveInterfaceArgs
    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 NveInterfaceArgs
    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 NveInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NveInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NveInterfaceArgs
    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 nveInterfaceResource = new Nxos.NveInterface("nveInterfaceResource", new()
    {
        AdminState = "string",
        AdvertiseVirtualMac = false,
        Device = "string",
        HoldDownTime = 0,
        HostReachabilityProtocol = "string",
        IngressReplicationProtocolBgp = false,
        MulticastGroupL2 = "string",
        MulticastGroupL3 = "string",
        MultisiteSourceInterface = "string",
        SourceInterface = "string",
        SuppressArp = false,
        SuppressMacRoute = false,
    });
    
    example, err := nxos.NewNveInterface(ctx, "nveInterfaceResource", &nxos.NveInterfaceArgs{
    	AdminState:                    pulumi.String("string"),
    	AdvertiseVirtualMac:           pulumi.Bool(false),
    	Device:                        pulumi.String("string"),
    	HoldDownTime:                  pulumi.Int(0),
    	HostReachabilityProtocol:      pulumi.String("string"),
    	IngressReplicationProtocolBgp: pulumi.Bool(false),
    	MulticastGroupL2:              pulumi.String("string"),
    	MulticastGroupL3:              pulumi.String("string"),
    	MultisiteSourceInterface:      pulumi.String("string"),
    	SourceInterface:               pulumi.String("string"),
    	SuppressArp:                   pulumi.Bool(false),
    	SuppressMacRoute:              pulumi.Bool(false),
    })
    
    var nveInterfaceResource = new NveInterface("nveInterfaceResource", NveInterfaceArgs.builder()
        .adminState("string")
        .advertiseVirtualMac(false)
        .device("string")
        .holdDownTime(0)
        .hostReachabilityProtocol("string")
        .ingressReplicationProtocolBgp(false)
        .multicastGroupL2("string")
        .multicastGroupL3("string")
        .multisiteSourceInterface("string")
        .sourceInterface("string")
        .suppressArp(false)
        .suppressMacRoute(false)
        .build());
    
    nve_interface_resource = nxos.NveInterface("nveInterfaceResource",
        admin_state="string",
        advertise_virtual_mac=False,
        device="string",
        hold_down_time=0,
        host_reachability_protocol="string",
        ingress_replication_protocol_bgp=False,
        multicast_group_l2="string",
        multicast_group_l3="string",
        multisite_source_interface="string",
        source_interface="string",
        suppress_arp=False,
        suppress_mac_route=False)
    
    const nveInterfaceResource = new nxos.NveInterface("nveInterfaceResource", {
        adminState: "string",
        advertiseVirtualMac: false,
        device: "string",
        holdDownTime: 0,
        hostReachabilityProtocol: "string",
        ingressReplicationProtocolBgp: false,
        multicastGroupL2: "string",
        multicastGroupL3: "string",
        multisiteSourceInterface: "string",
        sourceInterface: "string",
        suppressArp: false,
        suppressMacRoute: false,
    });
    
    type: nxos:NveInterface
    properties:
        adminState: string
        advertiseVirtualMac: false
        device: string
        holdDownTime: 0
        hostReachabilityProtocol: string
        ingressReplicationProtocolBgp: false
        multicastGroupL2: string
        multicastGroupL3: string
        multisiteSourceInterface: string
        sourceInterface: string
        suppressArp: false
        suppressMacRoute: false
    

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

    AdminState string
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    AdvertiseVirtualMac bool
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    Device string
    A device name from the provider configuration.
    HoldDownTime int
    Hold Down Time. - Range: 1-1500 - Default value: 180
    HostReachabilityProtocol string
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    IngressReplicationProtocolBgp bool
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    MulticastGroupL2 string
    Base multicast group address for L2. - Default value: 0.0.0.0
    MulticastGroupL3 string
    Base multicast group address for L3. - Default value: 0.0.0.0
    MultisiteSourceInterface string
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    SourceInterface string
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    SuppressArp bool
    Suppress ARP. - Default value: false
    SuppressMacRoute bool
    Suppress MAC Route. - Default value: false
    AdminState string
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    AdvertiseVirtualMac bool
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    Device string
    A device name from the provider configuration.
    HoldDownTime int
    Hold Down Time. - Range: 1-1500 - Default value: 180
    HostReachabilityProtocol string
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    IngressReplicationProtocolBgp bool
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    MulticastGroupL2 string
    Base multicast group address for L2. - Default value: 0.0.0.0
    MulticastGroupL3 string
    Base multicast group address for L3. - Default value: 0.0.0.0
    MultisiteSourceInterface string
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    SourceInterface string
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    SuppressArp bool
    Suppress ARP. - Default value: false
    SuppressMacRoute bool
    Suppress MAC Route. - Default value: false
    adminState String
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertiseVirtualMac Boolean
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device String
    A device name from the provider configuration.
    holdDownTime Integer
    Hold Down Time. - Range: 1-1500 - Default value: 180
    hostReachabilityProtocol String
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingressReplicationProtocolBgp Boolean
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicastGroupL2 String
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicastGroupL3 String
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisiteSourceInterface String
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    sourceInterface String
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppressArp Boolean
    Suppress ARP. - Default value: false
    suppressMacRoute Boolean
    Suppress MAC Route. - Default value: false
    adminState string
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertiseVirtualMac boolean
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device string
    A device name from the provider configuration.
    holdDownTime number
    Hold Down Time. - Range: 1-1500 - Default value: 180
    hostReachabilityProtocol string
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingressReplicationProtocolBgp boolean
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicastGroupL2 string
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicastGroupL3 string
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisiteSourceInterface string
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    sourceInterface string
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppressArp boolean
    Suppress ARP. - Default value: false
    suppressMacRoute boolean
    Suppress MAC Route. - Default value: false
    admin_state str
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    bool
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device str
    A device name from the provider configuration.
    hold_down_time int
    Hold Down Time. - Range: 1-1500 - Default value: 180
    host_reachability_protocol str
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingress_replication_protocol_bgp bool
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicast_group_l2 str
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicast_group_l3 str
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisite_source_interface str
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    source_interface str
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppress_arp bool
    Suppress ARP. - Default value: false
    suppress_mac_route bool
    Suppress MAC Route. - Default value: false
    adminState String
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertiseVirtualMac Boolean
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device String
    A device name from the provider configuration.
    holdDownTime Number
    Hold Down Time. - Range: 1-1500 - Default value: 180
    hostReachabilityProtocol String
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingressReplicationProtocolBgp Boolean
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicastGroupL2 String
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicastGroupL3 String
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisiteSourceInterface String
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    sourceInterface String
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppressArp Boolean
    Suppress ARP. - Default value: false
    suppressMacRoute Boolean
    Suppress MAC Route. - Default value: false

    Outputs

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

    Get an existing NveInterface 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?: NveInterfaceState, opts?: CustomResourceOptions): NveInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_state: Optional[str] = None,
            advertise_virtual_mac: Optional[bool] = None,
            device: Optional[str] = None,
            hold_down_time: Optional[int] = None,
            host_reachability_protocol: Optional[str] = None,
            ingress_replication_protocol_bgp: Optional[bool] = None,
            multicast_group_l2: Optional[str] = None,
            multicast_group_l3: Optional[str] = None,
            multisite_source_interface: Optional[str] = None,
            source_interface: Optional[str] = None,
            suppress_arp: Optional[bool] = None,
            suppress_mac_route: Optional[bool] = None) -> NveInterface
    func GetNveInterface(ctx *Context, name string, id IDInput, state *NveInterfaceState, opts ...ResourceOption) (*NveInterface, error)
    public static NveInterface Get(string name, Input<string> id, NveInterfaceState? state, CustomResourceOptions? opts = null)
    public static NveInterface get(String name, Output<String> id, NveInterfaceState 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:
    AdminState string
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    AdvertiseVirtualMac bool
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    Device string
    A device name from the provider configuration.
    HoldDownTime int
    Hold Down Time. - Range: 1-1500 - Default value: 180
    HostReachabilityProtocol string
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    IngressReplicationProtocolBgp bool
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    MulticastGroupL2 string
    Base multicast group address for L2. - Default value: 0.0.0.0
    MulticastGroupL3 string
    Base multicast group address for L3. - Default value: 0.0.0.0
    MultisiteSourceInterface string
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    SourceInterface string
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    SuppressArp bool
    Suppress ARP. - Default value: false
    SuppressMacRoute bool
    Suppress MAC Route. - Default value: false
    AdminState string
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    AdvertiseVirtualMac bool
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    Device string
    A device name from the provider configuration.
    HoldDownTime int
    Hold Down Time. - Range: 1-1500 - Default value: 180
    HostReachabilityProtocol string
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    IngressReplicationProtocolBgp bool
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    MulticastGroupL2 string
    Base multicast group address for L2. - Default value: 0.0.0.0
    MulticastGroupL3 string
    Base multicast group address for L3. - Default value: 0.0.0.0
    MultisiteSourceInterface string
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    SourceInterface string
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    SuppressArp bool
    Suppress ARP. - Default value: false
    SuppressMacRoute bool
    Suppress MAC Route. - Default value: false
    adminState String
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertiseVirtualMac Boolean
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device String
    A device name from the provider configuration.
    holdDownTime Integer
    Hold Down Time. - Range: 1-1500 - Default value: 180
    hostReachabilityProtocol String
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingressReplicationProtocolBgp Boolean
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicastGroupL2 String
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicastGroupL3 String
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisiteSourceInterface String
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    sourceInterface String
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppressArp Boolean
    Suppress ARP. - Default value: false
    suppressMacRoute Boolean
    Suppress MAC Route. - Default value: false
    adminState string
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertiseVirtualMac boolean
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device string
    A device name from the provider configuration.
    holdDownTime number
    Hold Down Time. - Range: 1-1500 - Default value: 180
    hostReachabilityProtocol string
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingressReplicationProtocolBgp boolean
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicastGroupL2 string
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicastGroupL3 string
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisiteSourceInterface string
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    sourceInterface string
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppressArp boolean
    Suppress ARP. - Default value: false
    suppressMacRoute boolean
    Suppress MAC Route. - Default value: false
    admin_state str
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertise_virtual_mac bool
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device str
    A device name from the provider configuration.
    hold_down_time int
    Hold Down Time. - Range: 1-1500 - Default value: 180
    host_reachability_protocol str
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingress_replication_protocol_bgp bool
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicast_group_l2 str
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicast_group_l3 str
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisite_source_interface str
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    source_interface str
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppress_arp bool
    Suppress ARP. - Default value: false
    suppress_mac_route bool
    Suppress MAC Route. - Default value: false
    adminState String
    Administrative state. - Choices: enabled, disabled - Default value: disabled
    advertiseVirtualMac Boolean
    Enable or disable Virtual MAC Advertisement in VPC mode. - Default value: false
    device String
    A device name from the provider configuration.
    holdDownTime Number
    Hold Down Time. - Range: 1-1500 - Default value: 180
    hostReachabilityProtocol String
    Host Reachability Protocol. - Choices: Flood-and-learn, bgp, controller, openflow, openflowIR - Default value: Flood-and-learn
    ingressReplicationProtocolBgp Boolean
    VxLAN Ingress Replication Protocol BGP. - Default value: false
    multicastGroupL2 String
    Base multicast group address for L2. - Default value: 0.0.0.0
    multicastGroupL3 String
    Base multicast group address for L3. - Default value: 0.0.0.0
    multisiteSourceInterface String
    Interface representing the Multisite Border Gateway. Must match first field in the output of show int brief. - Default value: unspecified
    sourceInterface String
    Source Interface associated with the NVE. Must match first field in the output of show int brief. - Default value: unspecified
    suppressArp Boolean
    Suppress ARP. - Default value: false
    suppressMacRoute Boolean
    Suppress MAC Route. - Default value: false

    Import

     $ pulumi import nxos:index/nveInterface:NveInterface example "sys/eps/epId-[1]"
    

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

    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