UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

115 lines (114 loc) 3.91 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * BgpRouteMapRedistribution data source */ export declare function getBgpRouteMapRedistribution(args: GetBgpRouteMapRedistributionArgs, opts?: pulumi.InvokeOptions): Promise<GetBgpRouteMapRedistributionResult>; /** * A collection of arguments for invoking getBgpRouteMapRedistribution. */ export interface GetBgpRouteMapRedistributionArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * BGP Route Map Redistributions UUID of the resource */ id: string; /** * BGP Route Map Redistributions Name */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getBgpRouteMapRedistribution. */ export interface GetBgpRouteMapRedistributionResult { /** * Bgp * > ℹ️ **Note:** You must specify exactly one of `bgp`, `connectedStatic`, and `ospf`. */ readonly bgp: outputs.GetBgpRouteMapRedistributionBgp; /** * Connected static * > ℹ️ **Note:** You must specify exactly one of `bgp`, `connectedStatic`, and `ospf`. */ readonly connectedStatic: outputs.GetBgpRouteMapRedistributionConnectedStatic; /** * BGP Route Map Redistributions Description */ readonly description: string; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * BGP Route Map Redistributions UUID of the resource */ readonly id: string; /** * BGP Route Map Redistributions Name */ readonly name: string; /** * Ospf * > ℹ️ **Note:** You must specify exactly one of `bgp`, `connectedStatic`, and `ospf`. */ readonly ospf: outputs.GetBgpRouteMapRedistributionOspf; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; readonly tfid: string; } /** * BgpRouteMapRedistribution data source */ export declare function getBgpRouteMapRedistributionOutput(args: GetBgpRouteMapRedistributionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBgpRouteMapRedistributionResult>; /** * A collection of arguments for invoking getBgpRouteMapRedistribution. */ export interface GetBgpRouteMapRedistributionOutputArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * BGP Route Map Redistributions UUID of the resource */ id: pulumi.Input<string>; /** * BGP Route Map Redistributions Name */ name?: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }