import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Private Endpoint Reachable Ip resource in Oracle Cloud Infrastructure Resource Manager service. * * Gets the reachable, or alternative, IP address for a nonpublic IP address that is associated with the private endpoint. * Resource Manager uses this IP address to connect to nonpublic resources through the associated private endpoint. * For more information, see * [Getting the Reachable IP Address for a Private Endpoint](https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/get-private-endpoint-reachable-ip.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateEndpointReachableIp = oci.resourcemanager.getPrivateEndpointReachableIp({ * privateEndpointId: testPrivateEndpoint.id, * privateIp: privateEndpointReachableIpPrivateIp, * }); * ``` */ export declare function getPrivateEndpointReachableIp(args: GetPrivateEndpointReachableIpArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrivateEndpointReachableIp. */ export interface GetPrivateEndpointReachableIpArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint. */ privateEndpointId: string; /** * The IP address of the resource in the private subnet. */ privateIp: string; } /** * A collection of values returned by getPrivateEndpointReachableIp. */ export interface GetPrivateEndpointReachableIpResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Reachable IP address associated with the private endpoint. */ readonly ipAddress: string; readonly privateEndpointId: string; readonly privateIp: string; } /** * This data source provides details about a specific Private Endpoint Reachable Ip resource in Oracle Cloud Infrastructure Resource Manager service. * * Gets the reachable, or alternative, IP address for a nonpublic IP address that is associated with the private endpoint. * Resource Manager uses this IP address to connect to nonpublic resources through the associated private endpoint. * For more information, see * [Getting the Reachable IP Address for a Private Endpoint](https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/get-private-endpoint-reachable-ip.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateEndpointReachableIp = oci.resourcemanager.getPrivateEndpointReachableIp({ * privateEndpointId: testPrivateEndpoint.id, * privateIp: privateEndpointReachableIpPrivateIp, * }); * ``` */ export declare function getPrivateEndpointReachableIpOutput(args: GetPrivateEndpointReachableIpOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPrivateEndpointReachableIp. */ export interface GetPrivateEndpointReachableIpOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint. */ privateEndpointId: pulumi.Input; /** * The IP address of the resource in the private subnet. */ privateIp: pulumi.Input; } //# sourceMappingURL=getPrivateEndpointReachableIp.d.ts.map