@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
58 lines • 2.68 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getWlantemplatesOutput = exports.getWlantemplates = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* 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/juniper-mist";
*
* const templates = junipermist.org.getWlantemplates({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getWlantemplates(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("junipermist:org/getWlantemplates:getWlantemplates", {
"orgId": args.orgId,
}, opts);
}
exports.getWlantemplates = getWlantemplates;
/**
* 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/juniper-mist";
*
* const templates = junipermist.org.getWlantemplates({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getWlantemplatesOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("junipermist:org/getWlantemplates:getWlantemplates", {
"orgId": args.orgId,
}, opts);
}
exports.getWlantemplatesOutput = getWlantemplatesOutput;
//# sourceMappingURL=getWlantemplates.js.map