UNPKG

@pulumi/meraki

Version:

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

73 lines (72 loc) 1.98 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.getLiveToolsPingDevice({ * id: "string", * serial: "string", * }); * export const merakiDevicesLiveToolsPingDeviceExample = example.then(example => example.item); * ``` */ export declare function getLiveToolsPingDevice(args: GetLiveToolsPingDeviceArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsPingDeviceResult>; /** * A collection of arguments for invoking getLiveToolsPingDevice. */ export interface GetLiveToolsPingDeviceArgs { /** * id path parameter. */ id: string; /** * serial path parameter. */ serial: string; } /** * A collection of values returned by getLiveToolsPingDevice. */ export interface GetLiveToolsPingDeviceResult { /** * id path parameter. */ readonly id: string; readonly item: outputs.devices.GetLiveToolsPingDeviceItem; /** * 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.getLiveToolsPingDevice({ * id: "string", * serial: "string", * }); * export const merakiDevicesLiveToolsPingDeviceExample = example.then(example => example.item); * ``` */ export declare function getLiveToolsPingDeviceOutput(args: GetLiveToolsPingDeviceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsPingDeviceResult>; /** * A collection of arguments for invoking getLiveToolsPingDevice. */ export interface GetLiveToolsPingDeviceOutputArgs { /** * id path parameter. */ id: pulumi.Input<string>; /** * serial path parameter. */ serial: pulumi.Input<string>; }