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.32 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.getLiveToolsThroughputTest({ * serial: "string", * throughputTestId: "string", * }); * export const merakiDevicesLiveToolsThroughputTestExample = example.then(example => example.item); * ``` */ export declare function getLiveToolsThroughputTest(args: GetLiveToolsThroughputTestArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsThroughputTestResult>; /** * A collection of arguments for invoking getLiveToolsThroughputTest. */ export interface GetLiveToolsThroughputTestArgs { /** * serial path parameter. */ serial: string; /** * throughputTestId path parameter. Throughput test ID */ throughputTestId: string; } /** * A collection of values returned by getLiveToolsThroughputTest. */ export interface GetLiveToolsThroughputTestResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.devices.GetLiveToolsThroughputTestItem; /** * serial path parameter. */ readonly serial: string; /** * throughputTestId path parameter. Throughput test ID */ readonly throughputTestId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.devices.getLiveToolsThroughputTest({ * serial: "string", * throughputTestId: "string", * }); * export const merakiDevicesLiveToolsThroughputTestExample = example.then(example => example.item); * ``` */ export declare function getLiveToolsThroughputTestOutput(args: GetLiveToolsThroughputTestOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsThroughputTestResult>; /** * A collection of arguments for invoking getLiveToolsThroughputTest. */ export interface GetLiveToolsThroughputTestOutputArgs { /** * serial path parameter. */ serial: pulumi.Input<string>; /** * throughputTestId path parameter. Throughput test ID */ throughputTestId: pulumi.Input<string>; }