UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

60 lines (59 loc) 2.03 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides the list of Org 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 orgEvpnTopologies = junipermist.org.getEvpnTopologies({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ export declare function getEvpnTopologies(args: GetEvpnTopologiesArgs, opts?: pulumi.InvokeOptions): Promise<GetEvpnTopologiesResult>; /** * A collection of arguments for invoking getEvpnTopologies. */ export interface GetEvpnTopologiesArgs { orgId: string; } /** * A collection of values returned by getEvpnTopologies. */ export interface GetEvpnTopologiesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly orgEvpnTopologies: outputs.org.GetEvpnTopologiesOrgEvpnTopology[]; readonly orgId: string; } /** * This data source provides the list of Org 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 orgEvpnTopologies = junipermist.org.getEvpnTopologies({ * orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550", * }); * ``` */ export declare function getEvpnTopologiesOutput(args: GetEvpnTopologiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEvpnTopologiesResult>; /** * A collection of arguments for invoking getEvpnTopologies. */ export interface GetEvpnTopologiesOutputArgs { orgId: pulumi.Input<string>; }