UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

150 lines 5.86 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Mxtunnel = void 0; const pulumi = __importStar(require("@pulumi/pulumi")); const utilities = __importStar(require("../utilities")); /** * This resource manages Mist Tunnels in the Mist Organization. * * A Mist Tunnel (MxTunnel) defines tunneling configuration used to carry AP user VLANs to Mist Edge clusters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const mxtunnelOne = new junipermist.org.Mxtunnel("mxtunnel_one", { * orgId: terraformTest.id, * name: "mxtunnel_one", * protocol: "udp", * helloInterval: 60, * helloRetries: 7, * mtu: 0, * vlanIds: [ * 10, * 20, * 30, * ], * mxclusterIds: [mxclusterOne.id], * autoPreemption: { * enabled: true, * dayOfWeek: "mon", * timeOfDay: "02:00", * }, * ipsec: { * enabled: true, * splitTunnel: true, * useMxedge: true, * dnsServers: [ * "8.8.8.8", * "8.8.4.4", * ], * dnsSuffixes: ["corp.example.com"], * extraRoutes: [{ * dest: "10.0.0.0/8", * nextHop: "192.168.1.1", * }], * }, * }); * ``` * * ## Import * * Using `pulumi import`, import `junipermist.org.Mxtunnel` with: * Mist Org MxTunnel can be imported by specifying the orgId and the mxtunnelId * * ```sh * $ pulumi import junipermist:org/mxtunnel:Mxtunnel mxtunnel_one 17f90707-aebe-4274-af42-f42952a665a3.d3c42998-9012-4859-9743-6a9f30d68218 * ``` */ class Mxtunnel extends pulumi.CustomResource { /** * Get an existing Mxtunnel 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, id, state, opts) { return new Mxtunnel(name, state, { ...opts, id: id }); } /** @internal */ static __pulumiType = 'junipermist:org/mxtunnel:Mxtunnel'; /** * Returns true if the given object is an instance of Mxtunnel. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === Mxtunnel.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["anchorMxtunnelIds"] = state?.anchorMxtunnelIds; resourceInputs["autoPreemption"] = state?.autoPreemption; resourceInputs["helloInterval"] = state?.helloInterval; resourceInputs["helloRetries"] = state?.helloRetries; resourceInputs["ipsec"] = state?.ipsec; resourceInputs["mtu"] = state?.mtu; resourceInputs["mxclusterIds"] = state?.mxclusterIds; resourceInputs["name"] = state?.name; resourceInputs["orgId"] = state?.orgId; resourceInputs["protocol"] = state?.protocol; resourceInputs["vlanIds"] = state?.vlanIds; } else { const args = argsOrState; if (args?.orgId === undefined && !opts.urn) { throw new Error("Missing required property 'orgId'"); } resourceInputs["anchorMxtunnelIds"] = args?.anchorMxtunnelIds; resourceInputs["autoPreemption"] = args?.autoPreemption; resourceInputs["helloInterval"] = args?.helloInterval; resourceInputs["helloRetries"] = args?.helloRetries; resourceInputs["ipsec"] = args?.ipsec; resourceInputs["mtu"] = args?.mtu; resourceInputs["mxclusterIds"] = args?.mxclusterIds; resourceInputs["name"] = args?.name; resourceInputs["orgId"] = args?.orgId; resourceInputs["protocol"] = args?.protocol; resourceInputs["vlanIds"] = args?.vlanIds; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(Mxtunnel.__pulumiType, name, resourceInputs, opts); } } exports.Mxtunnel = Mxtunnel; //# sourceMappingURL=mxtunnel.js.map