import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Ipsec Connection Tunnel Error resource in Oracle Cloud Infrastructure Core service. * * Gets the identified error for the specified IPSec tunnel ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIpsecConnectionTunnelError = oci.core.getIpsecConnectionTunnelError({ * ipsecId: testIpsec.id, * tunnelId: testTunnel.id, * }); * ``` */ export declare function getIpsecConnectionTunnelError(args: GetIpsecConnectionTunnelErrorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIpsecConnectionTunnelError. */ export interface GetIpsecConnectionTunnelErrorArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IPSec connection. */ ipsecId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tunnel. */ tunnelId: string; } /** * A collection of values returned by getIpsecConnectionTunnelError. */ export interface GetIpsecConnectionTunnelErrorResult { /** * Unique code describes the error type. */ readonly errorCode: string; /** * A detailed description of the error. */ readonly errorDescription: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ipsecId: string; /** * Link to more Oracle resources or relevant documentation. */ readonly ociResourcesLink: string; /** * Resolution for the error. */ readonly solution: string; /** * Timestamp when the error occurred. */ readonly timestamp: string; readonly tunnelId: string; } /** * This data source provides details about a specific Ipsec Connection Tunnel Error resource in Oracle Cloud Infrastructure Core service. * * Gets the identified error for the specified IPSec tunnel ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIpsecConnectionTunnelError = oci.core.getIpsecConnectionTunnelError({ * ipsecId: testIpsec.id, * tunnelId: testTunnel.id, * }); * ``` */ export declare function getIpsecConnectionTunnelErrorOutput(args: GetIpsecConnectionTunnelErrorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIpsecConnectionTunnelError. */ export interface GetIpsecConnectionTunnelErrorOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IPSec connection. */ ipsecId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tunnel. */ tunnelId: pulumi.Input; } //# sourceMappingURL=getIpsecConnectionTunnelError.d.ts.map