UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

66 lines (65 loc) 2.18 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system proberesponse */ export declare function getProberesponse(args?: GetProberesponseArgs, opts?: pulumi.InvokeOptions): Promise<GetProberesponseResult>; /** * A collection of arguments for invoking getProberesponse. */ export interface GetProberesponseArgs { /** * 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 getProberesponse. */ export interface GetProberesponseResult { /** * Value to respond to the monitoring server. */ readonly httpProbeValue: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * SLA response mode. */ readonly mode: string; /** * Twamp respondor password in authentication mode */ readonly password: string; /** * Port number to response. */ readonly port: number; /** * Twamp respondor security mode. */ readonly securityMode: string; /** * An inactivity timer for a twamp test session. */ readonly timeout: number; /** * Mode for TWAMP packet TTL modification. */ readonly ttlMode: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system proberesponse */ export declare function getProberesponseOutput(args?: GetProberesponseOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetProberesponseResult>; /** * A collection of arguments for invoking getProberesponse. */ export interface GetProberesponseOutputArgs { /** * 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>; }