@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
62 lines (61 loc) • 2.35 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* 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",
* });
* ```
*/
export declare function getSitegroups(args: GetSitegroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetSitegroupsResult>;
/**
* A collection of arguments for invoking getSitegroups.
*/
export interface GetSitegroupsArgs {
orgId: string;
}
/**
* A collection of values returned by getSitegroups.
*/
export interface GetSitegroupsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly orgId: string;
readonly orgSitegroups: outputs.org.GetSitegroupsOrgSitegroup[];
}
/**
* 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",
* });
* ```
*/
export declare function getSitegroupsOutput(args: GetSitegroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSitegroupsResult>;
/**
* A collection of arguments for invoking getSitegroups.
*/
export interface GetSitegroupsOutputArgs {
orgId: pulumi.Input<string>;
}