UNPKG

@pulumiverse/fortios

Version:

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

62 lines (61 loc) 2.03 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on an fortios system sessionhelper */ export declare function getSessionhelper(args: GetSessionhelperArgs, opts?: pulumi.InvokeOptions): Promise<GetSessionhelperResult>; /** * A collection of arguments for invoking getSessionhelper. */ export interface GetSessionhelperArgs { /** * Specify the fosid of the desired system sessionhelper. */ fosid: number; /** * 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 getSessionhelper. */ export interface GetSessionhelperResult { /** * Session helper ID. */ readonly fosid: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Helper name. */ readonly name: string; /** * Protocol port. */ readonly port: number; /** * Protocol number. */ readonly protocol: number; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system sessionhelper */ export declare function getSessionhelperOutput(args: GetSessionhelperOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSessionhelperResult>; /** * A collection of arguments for invoking getSessionhelper. */ export interface GetSessionhelperOutputArgs { /** * Specify the fosid of the desired system sessionhelper. */ fosid: pulumi.Input<number>; /** * 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>; }