import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Ip Sec Connection Device Config resource in Oracle Cloud Infrastructure Core service. * * Deprecated. To get tunnel information, instead use: * * * [GetIPSecConnectionTunnel](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnectionTunnel/GetIPSecConnectionTunnel) * * [GetIPSecConnectionTunnelSharedSecret](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnectionTunnelSharedSecret/GetIPSecConnectionTunnelSharedSecret) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIpSecConnectionDeviceConfig = oci.core.getIpsecConfig({ * ipsecId: testIpsec.id, * }); * ``` */ export declare function getIpsecConfig(args: GetIpsecConfigArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIpsecConfig. */ export interface GetIpsecConfigArgs { filters?: inputs.Core.GetIpsecConfigFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IPSec connection. */ ipsecId: string; } /** * A collection of values returned by getIpsecConfig. */ export interface GetIpsecConfigResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the IPSec connection. */ readonly compartmentId: string; readonly filters?: outputs.Core.GetIpsecConfigFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ipsecId: string; /** * The date and time the IPSec connection was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * Two [TunnelConfig](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/TunnelConfig/) objects. */ readonly tunnels: outputs.Core.GetIpsecConfigTunnel[]; } /** * This data source provides details about a specific Ip Sec Connection Device Config resource in Oracle Cloud Infrastructure Core service. * * Deprecated. To get tunnel information, instead use: * * * [GetIPSecConnectionTunnel](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnectionTunnel/GetIPSecConnectionTunnel) * * [GetIPSecConnectionTunnelSharedSecret](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/IPSecConnectionTunnelSharedSecret/GetIPSecConnectionTunnelSharedSecret) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIpSecConnectionDeviceConfig = oci.core.getIpsecConfig({ * ipsecId: testIpsec.id, * }); * ``` */ export declare function getIpsecConfigOutput(args: GetIpsecConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIpsecConfig. */ export interface GetIpsecConfigOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IPSec connection. */ ipsecId: pulumi.Input; } //# sourceMappingURL=getIpsecConfig.d.ts.map