UNPKG

@pulumi/meraki

Version:

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

59 lines (58 loc) 1.64 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getSwitchStacks(args?: GetSwitchStacksArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchStacksResult>; /** * A collection of arguments for invoking getSwitchStacks. */ export interface GetSwitchStacksArgs { /** * networkId path parameter. Network ID */ networkId?: string; /** * switchStackId path parameter. Switch stack ID */ switchStackId?: string; } /** * A collection of values returned by getSwitchStacks. */ export interface GetSwitchStacksResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetSwitchStacksItem; /** * Array of ResponseSwitchGetNetworkSwitchStacks */ readonly items: outputs.networks.GetSwitchStacksItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; /** * switchStackId path parameter. Switch stack ID */ readonly switchStackId?: string; } /** * ## Example Usage */ export declare function getSwitchStacksOutput(args?: GetSwitchStacksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchStacksResult>; /** * A collection of arguments for invoking getSwitchStacks. */ export interface GetSwitchStacksOutputArgs { /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * switchStackId path parameter. Switch stack ID */ switchStackId?: pulumi.Input<string>; }