UNPKG

@pulumiverse/fortios

Version:

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

74 lines (73 loc) 2.29 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on an fortios system sittunnel */ export declare function getSittunnel(args: GetSittunnelArgs, opts?: pulumi.InvokeOptions): Promise<GetSittunnelResult>; /** * A collection of arguments for invoking getSittunnel. */ export interface GetSittunnelArgs { /** * Specify the name of the desired system sittunnel. */ name: string; /** * 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 getSittunnel. */ export interface GetSittunnelResult { /** * Enable/disable tunnel ASIC offloading. */ readonly autoAsicOffload: string; /** * Destination IP address of the tunnel. */ readonly destination: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Interface name. */ readonly interface: string; /** * IPv6 address of the tunnel. */ readonly ip6: string; /** * Tunnel name. */ readonly name: string; /** * Source IP address of the tunnel. */ readonly source: string; /** * Enable/disable use of SD-WAN to reach remote gateway. */ readonly useSdwan: string; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system sittunnel */ export declare function getSittunnelOutput(args: GetSittunnelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSittunnelResult>; /** * A collection of arguments for invoking getSittunnel. */ export interface GetSittunnelOutputArgs { /** * Specify the name of the desired system sittunnel. */ name: pulumi.Input<string>; /** * 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>; }