@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.96 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.getLiveToolsCableTest({
* id: "string",
* serial: "string",
* });
* export const merakiDevicesLiveToolsCableTestExample = example.then(example => example.item);
* ```
*/
export declare function getLiveToolsCableTest(args: GetLiveToolsCableTestArgs, opts?: pulumi.InvokeOptions): Promise<GetLiveToolsCableTestResult>;
/**
* A collection of arguments for invoking getLiveToolsCableTest.
*/
export interface GetLiveToolsCableTestArgs {
/**
* id path parameter.
*/
id: string;
/**
* serial path parameter.
*/
serial: string;
}
/**
* A collection of values returned by getLiveToolsCableTest.
*/
export interface GetLiveToolsCableTestResult {
/**
* id path parameter.
*/
readonly id: string;
readonly item: outputs.devices.GetLiveToolsCableTestItem;
/**
* 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.getLiveToolsCableTest({
* id: "string",
* serial: "string",
* });
* export const merakiDevicesLiveToolsCableTestExample = example.then(example => example.item);
* ```
*/
export declare function getLiveToolsCableTestOutput(args: GetLiveToolsCableTestOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLiveToolsCableTestResult>;
/**
* A collection of arguments for invoking getLiveToolsCableTest.
*/
export interface GetLiveToolsCableTestOutputArgs {
/**
* id path parameter.
*/
id: pulumi.Input<string>;
/**
* serial path parameter.
*/
serial: pulumi.Input<string>;
}