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