UNPKG

@pulumi/meraki

Version:

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

124 lines (123 loc) 4.32 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ## Import * * ```sh * $ pulumi import meraki:devices/liveToolsThroughputTest:LiveToolsThroughputTest example "serial,throughput_test_id" * ``` */ export declare class LiveToolsThroughputTest extends pulumi.CustomResource { /** * Get an existing LiveToolsThroughputTest resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LiveToolsThroughputTestState, opts?: pulumi.CustomResourceOptions): LiveToolsThroughputTest; /** * Returns true if the given object is an instance of LiveToolsThroughputTest. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LiveToolsThroughputTest; /** * Details for the callback. Please include either an httpServerId OR url and sharedSecret */ readonly callback: pulumi.Output<outputs.devices.LiveToolsThroughputTestCallback>; /** * Description of the error. */ readonly error: pulumi.Output<string>; /** * The parameters of the throughput test request */ readonly request: pulumi.Output<outputs.devices.LiveToolsThroughputTestRequest>; /** * Result of the throughput test request */ readonly result: pulumi.Output<outputs.devices.LiveToolsThroughputTestResult>; /** * serial path parameter. */ readonly serial: pulumi.Output<string>; /** * Status of the throughput test request */ readonly status: pulumi.Output<string>; /** * ID of throughput test job */ readonly throughputTestId: pulumi.Output<string>; /** * GET this url to check the status of your throughput test request */ readonly url: pulumi.Output<string>; /** * Create a LiveToolsThroughputTest resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LiveToolsThroughputTestArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LiveToolsThroughputTest resources. */ export interface LiveToolsThroughputTestState { /** * Details for the callback. Please include either an httpServerId OR url and sharedSecret */ callback?: pulumi.Input<inputs.devices.LiveToolsThroughputTestCallback>; /** * Description of the error. */ error?: pulumi.Input<string>; /** * The parameters of the throughput test request */ request?: pulumi.Input<inputs.devices.LiveToolsThroughputTestRequest>; /** * Result of the throughput test request */ result?: pulumi.Input<inputs.devices.LiveToolsThroughputTestResult>; /** * serial path parameter. */ serial?: pulumi.Input<string>; /** * Status of the throughput test request */ status?: pulumi.Input<string>; /** * ID of throughput test job */ throughputTestId?: pulumi.Input<string>; /** * GET this url to check the status of your throughput test request */ url?: pulumi.Input<string>; } /** * The set of arguments for constructing a LiveToolsThroughputTest resource. */ export interface LiveToolsThroughputTestArgs { /** * Details for the callback. Please include either an httpServerId OR url and sharedSecret */ callback?: pulumi.Input<inputs.devices.LiveToolsThroughputTestCallback>; /** * serial path parameter. */ serial: pulumi.Input<string>; /** * ID of throughput test job */ throughputTestId?: pulumi.Input<string>; }