@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
56 lines • 2.42 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.getSitegroupsOutput = exports.getSitegroups = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* This data source provides the list of Org Site Groups (sitegroups).
*
* A site group is a feature that allows users to group multiple sites together based on regions, functions, or other parameters for efficient management of devices.\
* Sites can exist in multiple groups simultaneously, and site groups can be used to ensure consistent settings, manage administrator access, and apply specific templates to groups of sites.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const sitegroups = junipermist.org.getSitegroups({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getSitegroups(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("junipermist:org/getSitegroups:getSitegroups", {
"orgId": args.orgId,
}, opts);
}
exports.getSitegroups = getSitegroups;
/**
* This data source provides the list of Org Site Groups (sitegroups).
*
* A site group is a feature that allows users to group multiple sites together based on regions, functions, or other parameters for efficient management of devices.\
* Sites can exist in multiple groups simultaneously, and site groups can be used to ensure consistent settings, manage administrator access, and apply specific templates to groups of sites.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const sitegroups = junipermist.org.getSitegroups({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
function getSitegroupsOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("junipermist:org/getSitegroups:getSitegroups", {
"orgId": args.orgId,
}, opts);
}
exports.getSitegroupsOutput = getSitegroupsOutput;
//# sourceMappingURL=getSitegroups.js.map