iosxe.Arp
Explore with Pulumi AI
This resource can manage the ARP 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.Arp("example", new()
{
IncompleteEntries = 10,
ProxyDisable = true,
});
});
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.NewArp(ctx, "example", &iosxe.ArpArgs{
IncompleteEntries: pulumi.Int(10),
ProxyDisable: pulumi.Bool(true),
})
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.Arp;
import com.pulumi.iosxe.ArpArgs;
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 Arp("example", ArpArgs.builder()
.incompleteEntries(10)
.proxyDisable(true)
.build());
}
}
import pulumi
import lbrlabs_pulumi_iosxe as iosxe
example = iosxe.Arp("example",
incomplete_entries=10,
proxy_disable=True)
import * as pulumi from "@pulumi/pulumi";
import * as iosxe from "@lbrlabs/pulumi-iosxe";
const example = new iosxe.Arp("example", {
incompleteEntries: 10,
proxyDisable: true,
});
resources:
example:
type: iosxe:Arp
properties:
incompleteEntries: 10
proxyDisable: true
Create Arp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Arp(name: string, args?: ArpArgs, opts?: CustomResourceOptions);
@overload
def Arp(resource_name: str,
args: Optional[ArpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Arp(resource_name: str,
opts: Optional[ResourceOptions] = None,
delete_mode: Optional[str] = None,
device: Optional[str] = None,
entry_learn: Optional[int] = None,
incomplete_entries: Optional[int] = None,
inspection_filters: Optional[Sequence[ArpInspectionFilterArgs]] = None,
inspection_log_buffer_entries: Optional[int] = None,
inspection_log_buffer_logs_entries: Optional[int] = None,
inspection_log_buffer_logs_interval: Optional[int] = None,
inspection_validate_allow_zeros: Optional[bool] = None,
inspection_validate_dst_mac: Optional[bool] = None,
inspection_validate_ip: Optional[bool] = None,
inspection_validate_src_mac: Optional[bool] = None,
inspection_vlan: Optional[str] = None,
proxy_disable: Optional[bool] = None)
func NewArp(ctx *Context, name string, args *ArpArgs, opts ...ResourceOption) (*Arp, error)
public Arp(string name, ArpArgs? args = null, CustomResourceOptions? opts = null)
type: iosxe:Arp
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 ArpArgs
- 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 ArpArgs
- 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 ArpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ArpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ArpArgs
- 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 arpResource = new Iosxe.Arp("arpResource", new()
{
DeleteMode = "string",
Device = "string",
EntryLearn = 0,
IncompleteEntries = 0,
InspectionFilters = new[]
{
new Iosxe.Inputs.ArpInspectionFilterArgs
{
Name = "string",
Vlans = new[]
{
new Iosxe.Inputs.ArpInspectionFilterVlanArgs
{
VlanRange = "string",
Static = false,
},
},
},
},
InspectionLogBufferEntries = 0,
InspectionLogBufferLogsEntries = 0,
InspectionLogBufferLogsInterval = 0,
InspectionValidateAllowZeros = false,
InspectionValidateDstMac = false,
InspectionValidateIp = false,
InspectionValidateSrcMac = false,
InspectionVlan = "string",
ProxyDisable = false,
});
example, err := iosxe.NewArp(ctx, "arpResource", &iosxe.ArpArgs{
DeleteMode: pulumi.String("string"),
Device: pulumi.String("string"),
EntryLearn: pulumi.Int(0),
IncompleteEntries: pulumi.Int(0),
InspectionFilters: iosxe.ArpInspectionFilterArray{
&iosxe.ArpInspectionFilterArgs{
Name: pulumi.String("string"),
Vlans: iosxe.ArpInspectionFilterVlanArray{
&iosxe.ArpInspectionFilterVlanArgs{
VlanRange: pulumi.String("string"),
Static: pulumi.Bool(false),
},
},
},
},
InspectionLogBufferEntries: pulumi.Int(0),
InspectionLogBufferLogsEntries: pulumi.Int(0),
InspectionLogBufferLogsInterval: pulumi.Int(0),
InspectionValidateAllowZeros: pulumi.Bool(false),
InspectionValidateDstMac: pulumi.Bool(false),
InspectionValidateIp: pulumi.Bool(false),
InspectionValidateSrcMac: pulumi.Bool(false),
InspectionVlan: pulumi.String("string"),
ProxyDisable: pulumi.Bool(false),
})
var arpResource = new Arp("arpResource", ArpArgs.builder()
.deleteMode("string")
.device("string")
.entryLearn(0)
.incompleteEntries(0)
.inspectionFilters(ArpInspectionFilterArgs.builder()
.name("string")
.vlans(ArpInspectionFilterVlanArgs.builder()
.vlanRange("string")
.static_(false)
.build())
.build())
.inspectionLogBufferEntries(0)
.inspectionLogBufferLogsEntries(0)
.inspectionLogBufferLogsInterval(0)
.inspectionValidateAllowZeros(false)
.inspectionValidateDstMac(false)
.inspectionValidateIp(false)
.inspectionValidateSrcMac(false)
.inspectionVlan("string")
.proxyDisable(false)
.build());
arp_resource = iosxe.Arp("arpResource",
delete_mode="string",
device="string",
entry_learn=0,
incomplete_entries=0,
inspection_filters=[iosxe.ArpInspectionFilterArgs(
name="string",
vlans=[iosxe.ArpInspectionFilterVlanArgs(
vlan_range="string",
static=False,
)],
)],
inspection_log_buffer_entries=0,
inspection_log_buffer_logs_entries=0,
inspection_log_buffer_logs_interval=0,
inspection_validate_allow_zeros=False,
inspection_validate_dst_mac=False,
inspection_validate_ip=False,
inspection_validate_src_mac=False,
inspection_vlan="string",
proxy_disable=False)
const arpResource = new iosxe.Arp("arpResource", {
deleteMode: "string",
device: "string",
entryLearn: 0,
incompleteEntries: 0,
inspectionFilters: [{
name: "string",
vlans: [{
vlanRange: "string",
static: false,
}],
}],
inspectionLogBufferEntries: 0,
inspectionLogBufferLogsEntries: 0,
inspectionLogBufferLogsInterval: 0,
inspectionValidateAllowZeros: false,
inspectionValidateDstMac: false,
inspectionValidateIp: false,
inspectionValidateSrcMac: false,
inspectionVlan: "string",
proxyDisable: false,
});
type: iosxe:Arp
properties:
deleteMode: string
device: string
entryLearn: 0
incompleteEntries: 0
inspectionFilters:
- name: string
vlans:
- static: false
vlanRange: string
inspectionLogBufferEntries: 0
inspectionLogBufferLogsEntries: 0
inspectionLogBufferLogsInterval: 0
inspectionValidateAllowZeros: false
inspectionValidateDstMac: false
inspectionValidateIp: false
inspectionValidateSrcMac: false
inspectionVlan: string
proxyDisable: false
Arp 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 Arp resource accepts the following input properties:
- Delete
Mode 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.
- Entry
Learn int - Maximum learn entry limit - Range:
255
-512000
- Incomplete
Entries int - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- Inspection
Filters List<Lbrlabs.Pulumi Package. Iosxe. Inputs. Arp Inspection Filter> - Specify ARP acl to be applied
- Inspection
Log intBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- Inspection
Validate boolAllow Zeros - Allow 0.0.0.0 sender IP address
- Inspection
Validate boolDst Mac - Validate destination MAC address
- Inspection
Validate boolIp - Validate IP addresses
- Inspection
Validate boolSrc Mac - Validate source MAC address
- Inspection
Vlan string - Enable/Disable ARP Inspection on vlans
- Proxy
Disable bool - Disable proxy ARP on all interfaces
- Delete
Mode 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.
- Entry
Learn int - Maximum learn entry limit - Range:
255
-512000
- Incomplete
Entries int - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- Inspection
Filters []ArpInspection Filter Args - Specify ARP acl to be applied
- Inspection
Log intBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- Inspection
Validate boolAllow Zeros - Allow 0.0.0.0 sender IP address
- Inspection
Validate boolDst Mac - Validate destination MAC address
- Inspection
Validate boolIp - Validate IP addresses
- Inspection
Validate boolSrc Mac - Validate source MAC address
- Inspection
Vlan string - Enable/Disable ARP Inspection on vlans
- Proxy
Disable bool - Disable proxy ARP on all interfaces
- delete
Mode 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.
- entry
Learn Integer - Maximum learn entry limit - Range:
255
-512000
- incomplete
Entries Integer - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection
Filters List<ArpInspection Filter> - Specify ARP acl to be applied
- inspection
Log IntegerBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log IntegerBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log IntegerBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- inspection
Validate BooleanAllow Zeros - Allow 0.0.0.0 sender IP address
- inspection
Validate BooleanDst Mac - Validate destination MAC address
- inspection
Validate BooleanIp - Validate IP addresses
- inspection
Validate BooleanSrc Mac - Validate source MAC address
- inspection
Vlan String - Enable/Disable ARP Inspection on vlans
- proxy
Disable Boolean - Disable proxy ARP on all interfaces
- delete
Mode 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.
- entry
Learn number - Maximum learn entry limit - Range:
255
-512000
- incomplete
Entries number - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection
Filters ArpInspection Filter[] - Specify ARP acl to be applied
- inspection
Log numberBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log numberBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log numberBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- inspection
Validate booleanAllow Zeros - Allow 0.0.0.0 sender IP address
- inspection
Validate booleanDst Mac - Validate destination MAC address
- inspection
Validate booleanIp - Validate IP addresses
- inspection
Validate booleanSrc Mac - Validate source MAC address
- inspection
Vlan string - Enable/Disable ARP Inspection on vlans
- proxy
Disable boolean - Disable proxy ARP on all interfaces
- 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.
- entry_
learn int - Maximum learn entry limit - Range:
255
-512000
- incomplete_
entries int - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection_
filters Sequence[ArpInspection Filter Args] - Specify ARP acl to be applied
- inspection_
log_ intbuffer_ entries - Number of entries for log buffer - Range:
0
-1024
- inspection_
log_ intbuffer_ logs_ entries - Number of entries for log buffer - Range:
0
-1024
- inspection_
log_ intbuffer_ logs_ interval - Interval for controlling logging rate - Range:
0
-86400
- inspection_
validate_ boolallow_ zeros - Allow 0.0.0.0 sender IP address
- inspection_
validate_ booldst_ mac - Validate destination MAC address
- inspection_
validate_ boolip - Validate IP addresses
- inspection_
validate_ boolsrc_ mac - Validate source MAC address
- inspection_
vlan str - Enable/Disable ARP Inspection on vlans
- proxy_
disable bool - Disable proxy ARP on all interfaces
- delete
Mode 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.
- entry
Learn Number - Maximum learn entry limit - Range:
255
-512000
- incomplete
Entries Number - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection
Filters List<Property Map> - Specify ARP acl to be applied
- inspection
Log NumberBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log NumberBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log NumberBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- inspection
Validate BooleanAllow Zeros - Allow 0.0.0.0 sender IP address
- inspection
Validate BooleanDst Mac - Validate destination MAC address
- inspection
Validate BooleanIp - Validate IP addresses
- inspection
Validate BooleanSrc Mac - Validate source MAC address
- inspection
Vlan String - Enable/Disable ARP Inspection on vlans
- proxy
Disable Boolean - Disable proxy ARP on all interfaces
Outputs
All input properties are implicitly available as output properties. Additionally, the Arp 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 Arp Resource
Get an existing Arp 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?: ArpState, opts?: CustomResourceOptions): Arp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
delete_mode: Optional[str] = None,
device: Optional[str] = None,
entry_learn: Optional[int] = None,
incomplete_entries: Optional[int] = None,
inspection_filters: Optional[Sequence[ArpInspectionFilterArgs]] = None,
inspection_log_buffer_entries: Optional[int] = None,
inspection_log_buffer_logs_entries: Optional[int] = None,
inspection_log_buffer_logs_interval: Optional[int] = None,
inspection_validate_allow_zeros: Optional[bool] = None,
inspection_validate_dst_mac: Optional[bool] = None,
inspection_validate_ip: Optional[bool] = None,
inspection_validate_src_mac: Optional[bool] = None,
inspection_vlan: Optional[str] = None,
proxy_disable: Optional[bool] = None) -> Arp
func GetArp(ctx *Context, name string, id IDInput, state *ArpState, opts ...ResourceOption) (*Arp, error)
public static Arp Get(string name, Input<string> id, ArpState? state, CustomResourceOptions? opts = null)
public static Arp get(String name, Output<String> id, ArpState 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.
- Delete
Mode 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.
- Entry
Learn int - Maximum learn entry limit - Range:
255
-512000
- Incomplete
Entries int - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- Inspection
Filters List<Lbrlabs.Pulumi Package. Iosxe. Inputs. Arp Inspection Filter> - Specify ARP acl to be applied
- Inspection
Log intBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- Inspection
Validate boolAllow Zeros - Allow 0.0.0.0 sender IP address
- Inspection
Validate boolDst Mac - Validate destination MAC address
- Inspection
Validate boolIp - Validate IP addresses
- Inspection
Validate boolSrc Mac - Validate source MAC address
- Inspection
Vlan string - Enable/Disable ARP Inspection on vlans
- Proxy
Disable bool - Disable proxy ARP on all interfaces
- Delete
Mode 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.
- Entry
Learn int - Maximum learn entry limit - Range:
255
-512000
- Incomplete
Entries int - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- Inspection
Filters []ArpInspection Filter Args - Specify ARP acl to be applied
- Inspection
Log intBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- Inspection
Log intBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- Inspection
Validate boolAllow Zeros - Allow 0.0.0.0 sender IP address
- Inspection
Validate boolDst Mac - Validate destination MAC address
- Inspection
Validate boolIp - Validate IP addresses
- Inspection
Validate boolSrc Mac - Validate source MAC address
- Inspection
Vlan string - Enable/Disable ARP Inspection on vlans
- Proxy
Disable bool - Disable proxy ARP on all interfaces
- delete
Mode 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.
- entry
Learn Integer - Maximum learn entry limit - Range:
255
-512000
- incomplete
Entries Integer - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection
Filters List<ArpInspection Filter> - Specify ARP acl to be applied
- inspection
Log IntegerBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log IntegerBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log IntegerBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- inspection
Validate BooleanAllow Zeros - Allow 0.0.0.0 sender IP address
- inspection
Validate BooleanDst Mac - Validate destination MAC address
- inspection
Validate BooleanIp - Validate IP addresses
- inspection
Validate BooleanSrc Mac - Validate source MAC address
- inspection
Vlan String - Enable/Disable ARP Inspection on vlans
- proxy
Disable Boolean - Disable proxy ARP on all interfaces
- delete
Mode 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.
- entry
Learn number - Maximum learn entry limit - Range:
255
-512000
- incomplete
Entries number - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection
Filters ArpInspection Filter[] - Specify ARP acl to be applied
- inspection
Log numberBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log numberBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log numberBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- inspection
Validate booleanAllow Zeros - Allow 0.0.0.0 sender IP address
- inspection
Validate booleanDst Mac - Validate destination MAC address
- inspection
Validate booleanIp - Validate IP addresses
- inspection
Validate booleanSrc Mac - Validate source MAC address
- inspection
Vlan string - Enable/Disable ARP Inspection on vlans
- proxy
Disable boolean - Disable proxy ARP on all interfaces
- 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.
- entry_
learn int - Maximum learn entry limit - Range:
255
-512000
- incomplete_
entries int - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection_
filters Sequence[ArpInspection Filter Args] - Specify ARP acl to be applied
- inspection_
log_ intbuffer_ entries - Number of entries for log buffer - Range:
0
-1024
- inspection_
log_ intbuffer_ logs_ entries - Number of entries for log buffer - Range:
0
-1024
- inspection_
log_ intbuffer_ logs_ interval - Interval for controlling logging rate - Range:
0
-86400
- inspection_
validate_ boolallow_ zeros - Allow 0.0.0.0 sender IP address
- inspection_
validate_ booldst_ mac - Validate destination MAC address
- inspection_
validate_ boolip - Validate IP addresses
- inspection_
validate_ boolsrc_ mac - Validate source MAC address
- inspection_
vlan str - Enable/Disable ARP Inspection on vlans
- proxy_
disable bool - Disable proxy ARP on all interfaces
- delete
Mode 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.
- entry
Learn Number - Maximum learn entry limit - Range:
255
-512000
- incomplete
Entries Number - Specify the number of IP addresses to resolve - Range:
1
-2147483647
- inspection
Filters List<Property Map> - Specify ARP acl to be applied
- inspection
Log NumberBuffer Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log NumberBuffer Logs Entries - Number of entries for log buffer - Range:
0
-1024
- inspection
Log NumberBuffer Logs Interval - Interval for controlling logging rate - Range:
0
-86400
- inspection
Validate BooleanAllow Zeros - Allow 0.0.0.0 sender IP address
- inspection
Validate BooleanDst Mac - Validate destination MAC address
- inspection
Validate BooleanIp - Validate IP addresses
- inspection
Validate BooleanSrc Mac - Validate source MAC address
- inspection
Vlan String - Enable/Disable ARP Inspection on vlans
- proxy
Disable Boolean - Disable proxy ARP on all interfaces
Supporting Types
ArpInspectionFilter, ArpInspectionFilterArgs
- name String
- vlans List<Property Map>
ArpInspectionFilterVlan, ArpInspectionFilterVlanArgs
- vlan_
range str - static bool
Import
$ pulumi import iosxe:index/arp:Arp example "Cisco-IOS-XE-native:native/ip/arp"
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.