UNPKG

@pulumi/meraki

Version:

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

71 lines (70 loc) 2.23 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getSwitchStacksRoutingStaticRoutes(args?: GetSwitchStacksRoutingStaticRoutesArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchStacksRoutingStaticRoutesResult>; /** * A collection of arguments for invoking getSwitchStacksRoutingStaticRoutes. */ export interface GetSwitchStacksRoutingStaticRoutesArgs { /** * networkId path parameter. Network ID */ networkId?: string; /** * staticRouteId path parameter. Static route ID */ staticRouteId?: string; /** * switchStackId path parameter. Switch stack ID */ switchStackId?: string; } /** * A collection of values returned by getSwitchStacksRoutingStaticRoutes. */ export interface GetSwitchStacksRoutingStaticRoutesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetSwitchStacksRoutingStaticRoutesItem; /** * Array of ResponseSwitchGetNetworkSwitchStackRoutingStaticRoutes */ readonly items: outputs.networks.GetSwitchStacksRoutingStaticRoutesItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; /** * staticRouteId path parameter. Static route ID */ readonly staticRouteId?: string; /** * switchStackId path parameter. Switch stack ID */ readonly switchStackId?: string; } /** * ## Example Usage */ export declare function getSwitchStacksRoutingStaticRoutesOutput(args?: GetSwitchStacksRoutingStaticRoutesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchStacksRoutingStaticRoutesResult>; /** * A collection of arguments for invoking getSwitchStacksRoutingStaticRoutes. */ export interface GetSwitchStacksRoutingStaticRoutesOutputArgs { /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * staticRouteId path parameter. Static route ID */ staticRouteId?: pulumi.Input<string>; /** * switchStackId path parameter. Switch stack ID */ switchStackId?: pulumi.Input<string>; }