UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

54 lines 2.14 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.getGatewaytemplatesOutput = exports.getGatewaytemplates = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source provides the list of Gateway Templates. * * A Gateway template can be used to define generic gateway configuration at the org level and be applied to one or multiple Sites. It works like a blueprint of the network of the site. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const templates = junipermist.org.getGatewaytemplates({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getGatewaytemplates(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:org/getGatewaytemplates:getGatewaytemplates", { "orgId": args.orgId, }, opts); } exports.getGatewaytemplates = getGatewaytemplates; /** * This data source provides the list of Gateway Templates. * * A Gateway template can be used to define generic gateway configuration at the org level and be applied to one or multiple Sites. It works like a blueprint of the network of the site. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const templates = junipermist.org.getGatewaytemplates({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getGatewaytemplatesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:org/getGatewaytemplates:getGatewaytemplates", { "orgId": args.orgId, }, opts); } exports.getGatewaytemplatesOutput = getGatewaytemplatesOutput; //# sourceMappingURL=getGatewaytemplates.js.map