@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
63 lines (62 loc) • 1.86 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.getAppliancePerformance({
* serial: "string",
* });
* export const merakiDevicesAppliancePerformanceExample = example.then(example => example.item);
* ```
*/
export declare function getAppliancePerformance(args: GetAppliancePerformanceArgs, opts?: pulumi.InvokeOptions): Promise<GetAppliancePerformanceResult>;
/**
* A collection of arguments for invoking getAppliancePerformance.
*/
export interface GetAppliancePerformanceArgs {
/**
* serial path parameter.
*/
serial: string;
}
/**
* A collection of values returned by getAppliancePerformance.
*/
export interface GetAppliancePerformanceResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.devices.GetAppliancePerformanceItem;
/**
* 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.getAppliancePerformance({
* serial: "string",
* });
* export const merakiDevicesAppliancePerformanceExample = example.then(example => example.item);
* ```
*/
export declare function getAppliancePerformanceOutput(args: GetAppliancePerformanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppliancePerformanceResult>;
/**
* A collection of arguments for invoking getAppliancePerformance.
*/
export interface GetAppliancePerformanceOutputArgs {
/**
* serial path parameter.
*/
serial: pulumi.Input<string>;
}