@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
56 lines (55 loc) • 1.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* This data source provide the list of the Org VPNs.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const vpns = junipermist.org.getVpns({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
export declare function getVpns(args: GetVpnsArgs, opts?: pulumi.InvokeOptions): Promise<GetVpnsResult>;
/**
* A collection of arguments for invoking getVpns.
*/
export interface GetVpnsArgs {
orgId: string;
}
/**
* A collection of values returned by getVpns.
*/
export interface GetVpnsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly orgId: string;
readonly orgVpns: outputs.org.GetVpnsOrgVpn[];
}
/**
* This data source provide the list of the Org VPNs.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const vpns = junipermist.org.getVpns({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
export declare function getVpnsOutput(args: GetVpnsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVpnsResult>;
/**
* A collection of arguments for invoking getVpns.
*/
export interface GetVpnsOutputArgs {
orgId: pulumi.Input<string>;
}