nxos.NveInterface
Explore with Pulumi AI
This resource can manage the NVE interface configuration.
- API Documentation: nvoEp
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.
Constructor 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NveInterface resource accepts the following input properties:
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- Advertise
Virtual boolMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- Device string
- A device name from the provider configuration.
- Hold
Down intTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- Host
Reachability stringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- Ingress
Replication boolProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- Multicast
Group stringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- Multicast
Group stringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- Multisite
Source stringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- Source
Interface string - 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 boolRoute - Suppress MAC Route. - Default value:
false
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- Advertise
Virtual boolMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- Device string
- A device name from the provider configuration.
- Hold
Down intTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- Host
Reachability stringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- Ingress
Replication boolProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- Multicast
Group stringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- Multicast
Group stringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- Multisite
Source stringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- Source
Interface string - 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 boolRoute - Suppress MAC Route. - Default value:
false
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise
Virtual BooleanMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device String
- A device name from the provider configuration.
- hold
Down IntegerTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host
Reachability StringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress
Replication BooleanProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast
Group StringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast
Group StringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite
Source StringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- source
Interface String - Source Interface associated with the NVE. Must match first field in the output of
show int brief
. - Default value:unspecified
- suppress
Arp Boolean - Suppress ARP. - Default value:
false
- suppress
Mac BooleanRoute - Suppress MAC Route. - Default value:
false
- admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise
Virtual booleanMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device string
- A device name from the provider configuration.
- hold
Down numberTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host
Reachability stringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress
Replication booleanProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast
Group stringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast
Group stringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite
Source stringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- source
Interface string - Source Interface associated with the NVE. Must match first field in the output of
show int brief
. - Default value:unspecified
- suppress
Arp boolean - Suppress ARP. - Default value:
false
- suppress
Mac booleanRoute - Suppress MAC Route. - Default value:
false
- admin_
state str - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise_
virtual_ boolmac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device str
- A device name from the provider configuration.
- hold_
down_ inttime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host_
reachability_ strprotocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress_
replication_ boolprotocol_ bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast_
group_ strl2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast_
group_ strl3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite_
source_ strinterface - 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_ boolroute - Suppress MAC Route. - Default value:
false
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise
Virtual BooleanMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device String
- A device name from the provider configuration.
- hold
Down NumberTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host
Reachability StringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress
Replication BooleanProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast
Group StringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast
Group StringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite
Source StringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- source
Interface String - Source Interface associated with the NVE. Must match first field in the output of
show int brief
. - Default value:unspecified
- suppress
Arp Boolean - Suppress ARP. - Default value:
false
- suppress
Mac BooleanRoute - 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.
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- Advertise
Virtual boolMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- Device string
- A device name from the provider configuration.
- Hold
Down intTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- Host
Reachability stringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- Ingress
Replication boolProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- Multicast
Group stringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- Multicast
Group stringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- Multisite
Source stringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- Source
Interface string - 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 boolRoute - Suppress MAC Route. - Default value:
false
- Admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- Advertise
Virtual boolMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- Device string
- A device name from the provider configuration.
- Hold
Down intTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- Host
Reachability stringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- Ingress
Replication boolProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- Multicast
Group stringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- Multicast
Group stringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- Multisite
Source stringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- Source
Interface string - 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 boolRoute - Suppress MAC Route. - Default value:
false
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise
Virtual BooleanMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device String
- A device name from the provider configuration.
- hold
Down IntegerTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host
Reachability StringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress
Replication BooleanProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast
Group StringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast
Group StringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite
Source StringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- source
Interface String - Source Interface associated with the NVE. Must match first field in the output of
show int brief
. - Default value:unspecified
- suppress
Arp Boolean - Suppress ARP. - Default value:
false
- suppress
Mac BooleanRoute - Suppress MAC Route. - Default value:
false
- admin
State string - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise
Virtual booleanMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device string
- A device name from the provider configuration.
- hold
Down numberTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host
Reachability stringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress
Replication booleanProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast
Group stringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast
Group stringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite
Source stringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- source
Interface string - Source Interface associated with the NVE. Must match first field in the output of
show int brief
. - Default value:unspecified
- suppress
Arp boolean - Suppress ARP. - Default value:
false
- suppress
Mac booleanRoute - Suppress MAC Route. - Default value:
false
- admin_
state str - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise_
virtual_ boolmac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device str
- A device name from the provider configuration.
- hold_
down_ inttime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host_
reachability_ strprotocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress_
replication_ boolprotocol_ bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast_
group_ strl2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast_
group_ strl3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite_
source_ strinterface - 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_ boolroute - Suppress MAC Route. - Default value:
false
- admin
State String - Administrative state. - Choices:
enabled
,disabled
- Default value:disabled
- advertise
Virtual BooleanMac - Enable or disable Virtual MAC Advertisement in VPC mode. - Default value:
false
- device String
- A device name from the provider configuration.
- hold
Down NumberTime - Hold Down Time. - Range:
1
-1500
- Default value:180
- host
Reachability StringProtocol - Host Reachability Protocol. - Choices:
Flood-and-learn
,bgp
,controller
,openflow
,openflowIR
- Default value:Flood-and-learn
- ingress
Replication BooleanProtocol Bgp - VxLAN Ingress Replication Protocol BGP. - Default value:
false
- multicast
Group StringL2 - Base multicast group address for L2. - Default value:
0.0.0.0
- multicast
Group StringL3 - Base multicast group address for L3. - Default value:
0.0.0.0
- multisite
Source StringInterface - Interface representing the Multisite Border Gateway. Must match first field in the output of
show int brief
. - Default value:unspecified
- source
Interface String - Source Interface associated with the NVE. Must match first field in the output of
show int brief
. - Default value:unspecified
- suppress
Arp Boolean - Suppress ARP. - Default value:
false
- suppress
Mac BooleanRoute - 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.