@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
103 lines (102 loc) • 3.33 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on fortios router rip
*/
export declare function getRip(args?: GetRipArgs, opts?: pulumi.InvokeOptions): Promise<GetRipResult>;
/**
* A collection of arguments for invoking getRip.
*/
export interface GetRipArgs {
/**
* Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: string;
}
/**
* A collection of values returned by getRip.
*/
export interface GetRipResult {
/**
* Enable/disable generation of default route.
*/
readonly defaultInformationOriginate: string;
/**
* Default metric.
*/
readonly defaultMetric: number;
/**
* Distance (1 - 255).
*/
readonly distances: outputs.router.GetRipDistance[];
/**
* Distribute list. The structure of `distributeList` block is documented below.
*/
readonly distributeLists: outputs.router.GetRipDistributeList[];
/**
* Garbage timer in seconds.
*/
readonly garbageTimer: number;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Interface name.
*/
readonly interfaces: outputs.router.GetRipInterface[];
/**
* Maximum metric allowed to output(0 means 'not set').
*/
readonly maxOutMetric: number;
/**
* neighbor The structure of `neighbor` block is documented below.
*/
readonly neighbors: outputs.router.GetRipNeighbor[];
/**
* network The structure of `network` block is documented below.
*/
readonly networks: outputs.router.GetRipNetwork[];
/**
* Offset list. The structure of `offsetList` block is documented below.
*/
readonly offsetLists: outputs.router.GetRipOffsetList[];
/**
* Passive interface configuration. The structure of `passiveInterface` block is documented below.
*/
readonly passiveInterfaces: outputs.router.GetRipPassiveInterface[];
/**
* Receiving buffer size.
*/
readonly recvBufferSize: number;
/**
* Redistribute configuration. The structure of `redistribute` block is documented below.
*/
readonly redistributes: outputs.router.GetRipRedistribute[];
/**
* Timeout timer in seconds.
*/
readonly timeoutTimer: number;
/**
* Update timer in seconds.
*/
readonly updateTimer: number;
readonly vdomparam?: string;
/**
* RIP version.
*/
readonly version: string;
}
/**
* Use this data source to get information on fortios router rip
*/
export declare function getRipOutput(args?: GetRipOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRipResult>;
/**
* A collection of arguments for invoking getRip.
*/
export interface GetRipOutputArgs {
/**
* Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: pulumi.Input<string>;
}