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.5 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getSwitchPorts(args?: GetSwitchPortsArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchPortsResult>; /** * A collection of arguments for invoking getSwitchPorts. */ export interface GetSwitchPortsArgs { /** * portId path parameter. Port ID */ portId?: string; /** * serial path parameter. */ serial?: string; } /** * A collection of values returned by getSwitchPorts. */ export interface GetSwitchPortsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.devices.GetSwitchPortsItem; /** * Array of ResponseSwitchGetDeviceSwitchPorts */ readonly items: outputs.devices.GetSwitchPortsItem[]; /** * portId path parameter. Port ID */ readonly portId?: string; /** * serial path parameter. */ readonly serial?: string; } /** * ## Example Usage */ export declare function getSwitchPortsOutput(args?: GetSwitchPortsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchPortsResult>; /** * A collection of arguments for invoking getSwitchPorts. */ export interface GetSwitchPortsOutputArgs { /** * portId path parameter. Port ID */ portId?: pulumi.Input<string>; /** * serial path parameter. */ serial?: pulumi.Input<string>; }