import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * This resource manages the Org VPN.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/juniper-mist";
 *
 * const terraformTest = new junipermist.org.Setting("terraform_test", {
 *     orgId: terraformTestMistOrg.id,
 *     passwordPolicy: {
 *         enabled: true,
 *         minLength: 8,
 *         requiresSpecialChar: true,
 *         requiresTwoFactorAuth: true,
 *     },
 *     mistNac: {
 *         euOnly: true,
 *     },
 *     syntheticTest: {
 *         disabled: false,
 *         vlans: [{
 *             vlanIds: [
 *                 "8",
 *                 "999",
 *             ],
 *             disabled: true,
 *         }],
 *     },
 *     apiPolicy: {
 *         noReveal: false,
 *     },
 * });
 * ```
 *
 * ## Import
 *
 * Using `pulumi import`, import `junipermist.org.Vpn` with:
 * Org VPN can be imported by specifying the orgId and the vpnId
 *
 * ```sh
 * $ pulumi import junipermist:org/vpn:Vpn vpn_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
 * ```
 */
export declare class Vpn extends pulumi.CustomResource {
    /**
     * Get an existing Vpn resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: VpnState, opts?: pulumi.CustomResourceOptions): Vpn;
    /**
     * Returns true if the given object is an instance of Vpn.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is Vpn;
    /**
     * Display name of the VPN configuration
     */
    readonly name: pulumi.Output<string>;
    /**
     * Organization that owns the VPN configuration
     */
    readonly orgId: pulumi.Output<string | undefined>;
    /**
     * Path selection settings used when `type`==`hubSpoke`
     */
    readonly pathSelection: pulumi.Output<outputs.org.VpnPathSelection | undefined>;
    /**
     * VPN path definitions keyed by VPN name for `hubSpoke` mode or interface name for `mesh` mode
     */
    readonly paths: pulumi.Output<{
        [key: string]: outputs.org.VpnPaths;
    }>;
    /**
     * VPN topology mode for this configuration
     */
    readonly type: pulumi.Output<string | undefined>;
    /**
     * Create a Vpn resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: VpnArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering Vpn resources.
 */
export interface VpnState {
    /**
     * Display name of the VPN configuration
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * Organization that owns the VPN configuration
     */
    orgId?: pulumi.Input<string | undefined>;
    /**
     * Path selection settings used when `type`==`hubSpoke`
     */
    pathSelection?: pulumi.Input<inputs.org.VpnPathSelection | undefined>;
    /**
     * VPN path definitions keyed by VPN name for `hubSpoke` mode or interface name for `mesh` mode
     */
    paths?: pulumi.Input<{
        [key: string]: pulumi.Input<inputs.org.VpnPaths>;
    } | undefined>;
    /**
     * VPN topology mode for this configuration
     */
    type?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a Vpn resource.
 */
export interface VpnArgs {
    /**
     * Display name of the VPN configuration
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * Organization that owns the VPN configuration
     */
    orgId?: pulumi.Input<string | undefined>;
    /**
     * Path selection settings used when `type`==`hubSpoke`
     */
    pathSelection?: pulumi.Input<inputs.org.VpnPathSelection | undefined>;
    /**
     * VPN path definitions keyed by VPN name for `hubSpoke` mode or interface name for `mesh` mode
     */
    paths: pulumi.Input<{
        [key: string]: pulumi.Input<inputs.org.VpnPaths>;
    }>;
    /**
     * VPN topology mode for this configuration
     */
    type?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=vpn.d.ts.map