@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.89 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.networks.getSwitchStormControl({
* networkId: "string",
* });
* export const merakiNetworksSwitchStormControlExample = example.then(example => example.item);
* ```
*/
export declare function getSwitchStormControl(args: GetSwitchStormControlArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchStormControlResult>;
/**
* A collection of arguments for invoking getSwitchStormControl.
*/
export interface GetSwitchStormControlArgs {
/**
* networkId path parameter. Network ID
*/
networkId: string;
}
/**
* A collection of values returned by getSwitchStormControl.
*/
export interface GetSwitchStormControlResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.networks.GetSwitchStormControlItem;
/**
* networkId path parameter. Network ID
*/
readonly networkId: string;
}
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getSwitchStormControl({
* networkId: "string",
* });
* export const merakiNetworksSwitchStormControlExample = example.then(example => example.item);
* ```
*/
export declare function getSwitchStormControlOutput(args: GetSwitchStormControlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchStormControlResult>;
/**
* A collection of arguments for invoking getSwitchStormControl.
*/
export interface GetSwitchStormControlOutputArgs {
/**
* networkId path parameter. Network ID
*/
networkId: pulumi.Input<string>;
}