@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
54 lines • 1.89 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.getNetworksOutput = exports.getNetworks = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* This data source provides the list of WAN Assurance Networks.
*
* The Networks are used in the `servicePolicies` from the Gateway configuration, Gateway templates or HUB Profiles
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const networks = junipermist.org.getNetworks({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getNetworks(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("junipermist:org/getNetworks:getNetworks", {
"orgId": args.orgId,
}, opts);
}
exports.getNetworks = getNetworks;
/**
* This data source provides the list of WAN Assurance Networks.
*
* The Networks are used in the `servicePolicies` from the Gateway configuration, Gateway templates or HUB Profiles
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const networks = junipermist.org.getNetworks({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getNetworksOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("junipermist:org/getNetworks:getNetworks", {
"orgId": args.orgId,
}, opts);
}
exports.getNetworksOutput = getNetworksOutput;
//# sourceMappingURL=getNetworks.js.map