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.18 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getSwitchStacksRoutingInterfaces(args?: GetSwitchStacksRoutingInterfacesArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchStacksRoutingInterfacesResult>; /** * A collection of arguments for invoking getSwitchStacksRoutingInterfaces. */ export interface GetSwitchStacksRoutingInterfacesArgs { /** * interfaceId path parameter. Interface ID */ interfaceId?: string; /** * networkId path parameter. Network ID */ networkId?: string; /** * switchStackId path parameter. Switch stack ID */ switchStackId?: string; } /** * A collection of values returned by getSwitchStacksRoutingInterfaces. */ export interface GetSwitchStacksRoutingInterfacesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * interfaceId path parameter. Interface ID */ readonly interfaceId?: string; readonly item: outputs.networks.GetSwitchStacksRoutingInterfacesItem; /** * Array of ResponseSwitchGetNetworkSwitchStackRoutingInterfaces */ readonly items: outputs.networks.GetSwitchStacksRoutingInterfacesItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; /** * switchStackId path parameter. Switch stack ID */ readonly switchStackId?: string; } /** * ## Example Usage */ export declare function getSwitchStacksRoutingInterfacesOutput(args?: GetSwitchStacksRoutingInterfacesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchStacksRoutingInterfacesResult>; /** * A collection of arguments for invoking getSwitchStacksRoutingInterfaces. */ export interface GetSwitchStacksRoutingInterfacesOutputArgs { /** * interfaceId path parameter. Interface ID */ interfaceId?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * switchStackId path parameter. Switch stack ID */ switchStackId?: pulumi.Input<string>; }