UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

54 lines 2.11 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! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getEvpnTopologiesOutput = exports.getEvpnTopologies = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * This data source provides the list of Site Evpn Topologies * * EVPN allows an alternative but more efficient LAN architecture utilizing VxLAN / MP-BGP to separate the control plane (MAC / IP Learning) from the forwarding plane. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const siteEvpnTopologies = junipermist.site.getEvpnTopologies({ * siteId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getEvpnTopologies(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:site/getEvpnTopologies:getEvpnTopologies", { "siteId": args.siteId, }, opts); } exports.getEvpnTopologies = getEvpnTopologies; /** * This data source provides the list of Site Evpn Topologies * * EVPN allows an alternative but more efficient LAN architecture utilizing VxLAN / MP-BGP to separate the control plane (MAC / IP Learning) from the forwarding plane. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const siteEvpnTopologies = junipermist.site.getEvpnTopologies({ * siteId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ function getEvpnTopologiesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:site/getEvpnTopologies:getEvpnTopologies", { "siteId": args.siteId, }, opts); } exports.getEvpnTopologiesOutput = getEvpnTopologiesOutput; //# sourceMappingURL=getEvpnTopologies.js.map