import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 *
 * ## Import
 *
 * ```sh
 * $ pulumi import meraki:devices/liveToolsArpTable:LiveToolsArpTable example "arp_table_id,serial"
 * ```
 */
export declare class LiveToolsArpTable extends pulumi.CustomResource {
    /**
     * Get an existing LiveToolsArpTable resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LiveToolsArpTableState, opts?: pulumi.CustomResourceOptions): LiveToolsArpTable;
    /**
     * Returns true if the given object is an instance of LiveToolsArpTable.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is LiveToolsArpTable;
    /**
     * Id of the ARP table request. Used to check the status of the request.
     */
    readonly arpTableId: pulumi.Output<string>;
    /**
     * Details for the callback. Please include either an httpServerId OR url and sharedSecret
     */
    readonly callback: pulumi.Output<outputs.devices.LiveToolsArpTableCallback>;
    /**
     * The ARP table entries
     */
    readonly entries: pulumi.Output<outputs.devices.LiveToolsArpTableEntry[]>;
    /**
     * An error message for a failed execution
     */
    readonly error: pulumi.Output<string>;
    /**
     * ARP table request parameters
     */
    readonly request: pulumi.Output<outputs.devices.LiveToolsArpTableRequest>;
    /**
     * serial path parameter.
     */
    readonly serial: pulumi.Output<string>;
    /**
     * Status of the ARP table request.
     */
    readonly status: pulumi.Output<string>;
    /**
     * GET this url to check the status of your ARP table request.
     */
    readonly url: pulumi.Output<string>;
    /**
     * Create a LiveToolsArpTable resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: LiveToolsArpTableArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering LiveToolsArpTable resources.
 */
export interface LiveToolsArpTableState {
    /**
     * Id of the ARP table request. Used to check the status of the request.
     */
    arpTableId?: pulumi.Input<string>;
    /**
     * Details for the callback. Please include either an httpServerId OR url and sharedSecret
     */
    callback?: pulumi.Input<inputs.devices.LiveToolsArpTableCallback>;
    /**
     * The ARP table entries
     */
    entries?: pulumi.Input<pulumi.Input<inputs.devices.LiveToolsArpTableEntry>[]>;
    /**
     * An error message for a failed execution
     */
    error?: pulumi.Input<string>;
    /**
     * ARP table request parameters
     */
    request?: pulumi.Input<inputs.devices.LiveToolsArpTableRequest>;
    /**
     * serial path parameter.
     */
    serial?: pulumi.Input<string>;
    /**
     * Status of the ARP table request.
     */
    status?: pulumi.Input<string>;
    /**
     * GET this url to check the status of your ARP table request.
     */
    url?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a LiveToolsArpTable resource.
 */
export interface LiveToolsArpTableArgs {
    /**
     * Id of the ARP table request. Used to check the status of the request.
     */
    arpTableId?: pulumi.Input<string>;
    /**
     * Details for the callback. Please include either an httpServerId OR url and sharedSecret
     */
    callback?: pulumi.Input<inputs.devices.LiveToolsArpTableCallback>;
    /**
     * serial path parameter.
     */
    serial: pulumi.Input<string>;
}
