UNPKG

@lubyou/pulumi-fortios

Version:

A Pulumi package for creating and managing fortios cloud resources.

30 lines (29 loc) 1.08 kB
import * as pulumi from "@pulumi/pulumi"; export declare function getRouterbgpNeighborList(args?: GetRouterbgpNeighborListArgs, opts?: pulumi.InvokeOptions): Promise<GetRouterbgpNeighborListResult>; /** * A collection of arguments for invoking GetRouterbgpNeighborList. */ export interface GetRouterbgpNeighborListArgs { filter?: string; vdomparam?: string; } /** * A collection of values returned by GetRouterbgpNeighborList. */ export interface GetRouterbgpNeighborListResult { readonly filter?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly iplists: string[]; readonly vdomparam?: string; } export declare function getRouterbgpNeighborListOutput(args?: GetRouterbgpNeighborListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRouterbgpNeighborListResult>; /** * A collection of arguments for invoking GetRouterbgpNeighborList. */ export interface GetRouterbgpNeighborListOutputArgs { filter?: pulumi.Input<string>; vdomparam?: pulumi.Input<string>; }