UNPKG

@pulumiverse/fortios

Version:

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

50 lines (49 loc) 1.8 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system hamonitor */ export declare function getHamonitor(args?: GetHamonitorArgs, opts?: pulumi.InvokeOptions): Promise<GetHamonitorResult>; /** * A collection of arguments for invoking getHamonitor. */ export interface GetHamonitorArgs { /** * 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 getHamonitor. */ export interface GetHamonitorResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Enable/disable monitor VLAN interfaces. */ readonly monitorVlan: string; readonly vdomparam?: string; /** * Configure heartbeat interval (seconds). */ readonly vlanHbInterval: number; /** * VLAN lost heartbeat threshold (1 - 60). */ readonly vlanHbLostThreshold: number; } /** * Use this data source to get information on fortios system hamonitor */ export declare function getHamonitorOutput(args?: GetHamonitorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHamonitorResult>; /** * A collection of arguments for invoking getHamonitor. */ export interface GetHamonitorOutputArgs { /** * 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>; }