UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

64 lines (63 loc) 2.61 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This datasource provides the list of WLAN Templates in a Mist Organization. * * A WLAN template is a collection of WLANs, tunneling policies, and wxlan policies. It is used to create and manage wlan configurations at an organizational level.\ * WLAN templates allow for modular, scalable, and easy-to-manage configuration of ssids and their application to specific sites, site groups, or ap device profiles.\ * They are valuable for automating configuration across multiple sites and profiles, making it easier to scale efficiently. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/junipermist"; * * const templates = junipermist.org.getWlantemplates({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ export declare function getWlantemplates(args: GetWlantemplatesArgs, opts?: pulumi.InvokeOptions): Promise<GetWlantemplatesResult>; /** * A collection of arguments for invoking getWlantemplates. */ export interface GetWlantemplatesArgs { orgId: string; } /** * A collection of values returned by getWlantemplates. */ export interface GetWlantemplatesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly orgId: string; readonly orgWlantemplates: outputs.org.GetWlantemplatesOrgWlantemplate[]; } /** * This datasource provides the list of WLAN Templates in a Mist Organization. * * A WLAN template is a collection of WLANs, tunneling policies, and wxlan policies. It is used to create and manage wlan configurations at an organizational level.\ * WLAN templates allow for modular, scalable, and easy-to-manage configuration of ssids and their application to specific sites, site groups, or ap device profiles.\ * They are valuable for automating configuration across multiple sites and profiles, making it easier to scale efficiently. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/junipermist"; * * const templates = junipermist.org.getWlantemplates({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ export declare function getWlantemplatesOutput(args: GetWlantemplatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWlantemplatesResult>; /** * A collection of arguments for invoking getWlantemplates. */ export interface GetWlantemplatesOutputArgs { orgId: pulumi.Input<string>; }