import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * IpsecTunnel data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Example of looking up an individual IPsec Tunnel by its ID. * const scmIpsecTunnelDs = scm.getIpsecTunnel({ * id: "7c237a82-8c11-4f09-bdbf-599e159019ce", * }); * export const ipsecTunnelById = scmIpsecTunnelDs; * ``` */ export declare function getIpsecTunnel(args: GetIpsecTunnelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIpsecTunnel. */ export interface GetIpsecTunnelArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getIpsecTunnel. */ export interface GetIpsecTunnelResult { readonly antiReplay: boolean; readonly autoKey: outputs.GetIpsecTunnelAutoKey; readonly copyTos: boolean; /** * The device in which the resource is defined */ readonly device: string; readonly enableGreEncapsulation: boolean; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly snippet: string; readonly tfid: string; readonly tunnelInterface: string; readonly tunnelMonitor: outputs.GetIpsecTunnelTunnelMonitor; } /** * IpsecTunnel data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Example of looking up an individual IPsec Tunnel by its ID. * const scmIpsecTunnelDs = scm.getIpsecTunnel({ * id: "7c237a82-8c11-4f09-bdbf-599e159019ce", * }); * export const ipsecTunnelById = scmIpsecTunnelDs; * ``` */ export declare function getIpsecTunnelOutput(args: GetIpsecTunnelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIpsecTunnel. */ export interface GetIpsecTunnelOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getIpsecTunnel.d.ts.map