UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

77 lines (76 loc) 2.15 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.devices.getLiveToolsArpTable({ * arpTableId: "string", * serial: "string", * }); * export const merakiDevicesLiveToolsArpTableExample = example.then(example => example.item); * ``` */ export declare function getLiveToolsArpTable(args: GetLiveToolsArpTableArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsArpTableResult>; /** * A collection of arguments for invoking getLiveToolsArpTable. */ export interface GetLiveToolsArpTableArgs { /** * arpTableId path parameter. Arp table ID */ arpTableId: string; /** * serial path parameter. */ serial: string; } /** * A collection of values returned by getLiveToolsArpTable. */ export interface GetLiveToolsArpTableResult { /** * arpTableId path parameter. Arp table ID */ readonly arpTableId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.devices.GetLiveToolsArpTableItem; /** * serial path parameter. */ readonly serial: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.devices.getLiveToolsArpTable({ * arpTableId: "string", * serial: "string", * }); * export const merakiDevicesLiveToolsArpTableExample = example.then(example => example.item); * ``` */ export declare function getLiveToolsArpTableOutput(args: GetLiveToolsArpTableOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsArpTableResult>; /** * A collection of arguments for invoking getLiveToolsArpTable. */ export interface GetLiveToolsArpTableOutputArgs { /** * arpTableId path parameter. Arp table ID */ arpTableId: pulumi.Input<string>; /** * serial path parameter. */ serial: pulumi.Input<string>; }