import * as pulumi from "@pulumi/pulumi"; export declare function getSystemGreTunnel(args: GetSystemGreTunnelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemGreTunnel. */ export interface GetSystemGreTunnelArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemGreTunnel. */ export interface GetSystemGreTunnelResult { readonly checksumReception: string; readonly checksumTransmission: string; readonly diffservcode: string; readonly dscpCopying: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly interface: string; readonly ipVersion: string; readonly keepaliveFailtimes: number; readonly keepaliveInterval: number; readonly keyInbound: number; readonly keyOutbound: number; readonly localGw: string; readonly localGw6: string; readonly name: string; readonly remoteGw: string; readonly remoteGw6: string; readonly sequenceNumberReception: string; readonly sequenceNumberTransmission: string; readonly useSdwan: string; readonly vdomparam?: string; } export declare function getSystemGreTunnelOutput(args: GetSystemGreTunnelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemGreTunnel. */ export interface GetSystemGreTunnelOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }