import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * BgpRouteMap data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up bgp route map by its ID. * const scmBgpRouteMapDs = scm.getBgpRouteMap({ * id: "f2ffd626-e92d-4de6-8ac1-37742fe80fb9", * }); * export const bgpRouteMapDataSourceResults = { * id: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.id), * name: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.name), * routeMap: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.routeMaps), * folder: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.folder), * }; * ``` */ export declare function getBgpRouteMap(args: GetBgpRouteMapArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpRouteMap. */ export interface GetBgpRouteMapArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getBgpRouteMap. */ export interface GetBgpRouteMapResult { readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly routeMaps: outputs.GetBgpRouteMapRouteMap[]; readonly snippet: string; readonly tfid: string; } /** * BgpRouteMap data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up bgp route map by its ID. * const scmBgpRouteMapDs = scm.getBgpRouteMap({ * id: "f2ffd626-e92d-4de6-8ac1-37742fe80fb9", * }); * export const bgpRouteMapDataSourceResults = { * id: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.id), * name: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.name), * routeMap: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.routeMaps), * folder: scmBgpRouteMapDs.then(scmBgpRouteMapDs => scmBgpRouteMapDs.folder), * }; * ``` */ export declare function getBgpRouteMapOutput(args: GetBgpRouteMapOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpRouteMap. */ export interface GetBgpRouteMapOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getBgpRouteMap.d.ts.map