@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
54 lines • 2.69 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.getDeviceprofilesApOutput = exports.getDeviceprofilesAp = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* This data source provides the list of AP Device Profiles.
*
* AP Device profiles are used to specify a configuration that can be applied to a select set of aps from any site in the organization. They are providing efficient application of configurations based on ap groups, wlan groups, RF settings, and sites. Device profiles enable various use cases such as activating ethernet passthrough, applying different rf settings, applying mesh configuration, activating specific features like esl or vble, and more.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const deviceprofile = junipermist.org.getDeviceprofilesAp({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getDeviceprofilesAp(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("junipermist:org/getDeviceprofilesAp:getDeviceprofilesAp", {
"orgId": args.orgId,
}, opts);
}
exports.getDeviceprofilesAp = getDeviceprofilesAp;
/**
* This data source provides the list of AP Device Profiles.
*
* AP Device profiles are used to specify a configuration that can be applied to a select set of aps from any site in the organization. They are providing efficient application of configurations based on ap groups, wlan groups, RF settings, and sites. Device profiles enable various use cases such as activating ethernet passthrough, applying different rf settings, applying mesh configuration, activating specific features like esl or vble, and more.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const deviceprofile = junipermist.org.getDeviceprofilesAp({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getDeviceprofilesApOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("junipermist:org/getDeviceprofilesAp:getDeviceprofilesAp", {
"orgId": args.orgId,
}, opts);
}
exports.getDeviceprofilesApOutput = getDeviceprofilesApOutput;
//# sourceMappingURL=getDeviceprofilesAp.js.map