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