@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.87 kB
TypeScript
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.getLiveToolsPing({
* id: "string",
* serial: "string",
* });
* export const merakiDevicesLiveToolsPingExample = example.then(example => example.item);
* ```
*/
export declare function getLiveToolsPing(args: GetLiveToolsPingArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsPingResult>;
/**
* A collection of arguments for invoking getLiveToolsPing.
*/
export interface GetLiveToolsPingArgs {
/**
* id path parameter.
*/
id: string;
/**
* serial path parameter.
*/
serial: string;
}
/**
* A collection of values returned by getLiveToolsPing.
*/
export interface GetLiveToolsPingResult {
/**
* id path parameter.
*/
readonly id: string;
readonly item: outputs.devices.GetLiveToolsPingItem;
/**
* 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.getLiveToolsPing({
* id: "string",
* serial: "string",
* });
* export const merakiDevicesLiveToolsPingExample = example.then(example => example.item);
* ```
*/
export declare function getLiveToolsPingOutput(args: GetLiveToolsPingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsPingResult>;
/**
* A collection of arguments for invoking getLiveToolsPing.
*/
export interface GetLiveToolsPingOutputArgs {
/**
* id path parameter.
*/
id: pulumi.Input<string>;
/**
* serial path parameter.
*/
serial: pulumi.Input<string>;
}