@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
123 lines (122 loc) • 4.38 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
export declare class LiveToolsCable extends pulumi.CustomResource {
/**
* Get an existing LiveToolsCable 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?: LiveToolsCableState, opts?: pulumi.CustomResourceOptions): LiveToolsCable;
/**
* Returns true if the given object is an instance of LiveToolsCable. 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 LiveToolsCable;
/**
* Id of the cable test request. Used to check the status of the request.
*/
readonly cableTestId: pulumi.Output<string>;
/**
* Details for the callback. Please include either an httpServerId OR url and sharedSecret
*/
readonly callback: pulumi.Output<outputs.devices.LiveToolsCableCallback>;
/**
* An error message for a failed execution
*/
readonly error: pulumi.Output<string>;
/**
* A list of ports for which to perform the cable test.
*/
readonly ports: pulumi.Output<string[]>;
/**
* Cable test request parameters
*/
readonly request: pulumi.Output<outputs.devices.LiveToolsCableRequest>;
/**
* Results of the cable test request, one for each requested port.
*/
readonly results: pulumi.Output<outputs.devices.LiveToolsCableResult[]>;
/**
* serial path parameter.
*/
readonly serial: pulumi.Output<string>;
/**
* Status of the cable test request.
*/
readonly status: pulumi.Output<string>;
/**
* GET this url to check the status of your cable test request.
*/
readonly url: pulumi.Output<string>;
/**
* Create a LiveToolsCable 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: LiveToolsCableArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering LiveToolsCable resources.
*/
export interface LiveToolsCableState {
/**
* Id of the cable test request. Used to check the status of the request.
*/
cableTestId?: pulumi.Input<string>;
/**
* Details for the callback. Please include either an httpServerId OR url and sharedSecret
*/
callback?: pulumi.Input<inputs.devices.LiveToolsCableCallback>;
/**
* An error message for a failed execution
*/
error?: pulumi.Input<string>;
/**
* A list of ports for which to perform the cable test.
*/
ports?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Cable test request parameters
*/
request?: pulumi.Input<inputs.devices.LiveToolsCableRequest>;
/**
* Results of the cable test request, one for each requested port.
*/
results?: pulumi.Input<pulumi.Input<inputs.devices.LiveToolsCableResult>[]>;
/**
* serial path parameter.
*/
serial?: pulumi.Input<string>;
/**
* Status of the cable test request.
*/
status?: pulumi.Input<string>;
/**
* GET this url to check the status of your cable test request.
*/
url?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a LiveToolsCable resource.
*/
export interface LiveToolsCableArgs {
/**
* Details for the callback. Please include either an httpServerId OR url and sharedSecret
*/
callback?: pulumi.Input<inputs.devices.LiveToolsCableCallback>;
/**
* A list of ports for which to perform the cable test.
*/
ports?: pulumi.Input<pulumi.Input<string>[]>;
/**
* serial path parameter.
*/
serial: pulumi.Input<string>;
}