UNPKG

@pulumi/meraki

Version:

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

80 lines (79 loc) 2.28 kB
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.getSmDevicesWlanLists({ * deviceId: "string", * networkId: "string", * }); * export const merakiNetworksSmDevicesWlanListsExample = example.then(example => example.items); * ``` */ export declare function getSmDevicesWlanLists(args: GetSmDevicesWlanListsArgs, opts?: pulumi.InvokeOptions): Promise<GetSmDevicesWlanListsResult>; /** * A collection of arguments for invoking getSmDevicesWlanLists. */ export interface GetSmDevicesWlanListsArgs { /** * deviceId path parameter. Device ID */ deviceId: string; /** * networkId path parameter. Network ID */ networkId: string; } /** * A collection of values returned by getSmDevicesWlanLists. */ export interface GetSmDevicesWlanListsResult { /** * deviceId path parameter. Device ID */ readonly deviceId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of ResponseSmGetNetworkSmDeviceWlanLists */ readonly items: outputs.networks.GetSmDevicesWlanListsItem[]; /** * 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.getSmDevicesWlanLists({ * deviceId: "string", * networkId: "string", * }); * export const merakiNetworksSmDevicesWlanListsExample = example.then(example => example.items); * ``` */ export declare function getSmDevicesWlanListsOutput(args: GetSmDevicesWlanListsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmDevicesWlanListsResult>; /** * A collection of arguments for invoking getSmDevicesWlanLists. */ export interface GetSmDevicesWlanListsOutputArgs { /** * deviceId path parameter. Device ID */ deviceId: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; }