import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the ARP configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getArp({}); * ``` */ export declare function getArp(args?: GetArpArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getArp. */ export interface GetArpArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getArp. */ export interface GetArpResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * Maximum learn entry limit */ readonly entryLearn: number; /** * The path of the retrieved object. */ readonly id: string; /** * Specify the number of IP addresses to resolve */ readonly incompleteEntries: number; /** * Specify ARP acl to be applied */ readonly inspectionFilters: outputs.GetArpInspectionFilter[]; /** * Number of entries for log buffer */ readonly inspectionLogBufferEntries: number; /** * Number of entries for log buffer */ readonly inspectionLogBufferLogsEntries: number; /** * Interval for controlling logging rate */ readonly inspectionLogBufferLogsInterval: number; /** * Allow 0.0.0.0 sender IP address */ readonly inspectionValidateAllowZeros: boolean; /** * Validate destination MAC address */ readonly inspectionValidateDstMac: boolean; /** * Validate IP addresses */ readonly inspectionValidateIp: boolean; /** * Validate source MAC address */ readonly inspectionValidateSrcMac: boolean; /** * Enable/Disable ARP Inspection on vlans */ readonly inspectionVlan: string; /** * Disable proxy ARP on all interfaces */ readonly proxyDisable: boolean; } /** * This data source can read the ARP configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getArp({}); * ``` */ export declare function getArpOutput(args?: GetArpOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getArp. */ export interface GetArpOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }