UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

56 lines 1.98 kB
"use strict"; // *** 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.getRftemplatesOutput = exports.getRftemplates = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source provides the list of RF Templates. * * The RF Templates can be used to define Wireless Access Points radio configuration, and can be assigned to the sites * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const templates = junipermist.org.getRftemplates({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getRftemplates(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getRftemplates:getRftemplates", { "orgId": args.orgId, "page": args.page, }, opts); } exports.getRftemplates = getRftemplates; /** * This data source provides the list of RF Templates. * * The RF Templates can be used to define Wireless Access Points radio configuration, and can be assigned to the sites * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const templates = junipermist.org.getRftemplates({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getRftemplatesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getRftemplates:getRftemplates", { "orgId": args.orgId, "page": args.page, }, opts); } exports.getRftemplatesOutput = getRftemplatesOutput; //# sourceMappingURL=getRftemplates.js.map