import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Db Management Private Endpoint Associated Database resource in Oracle Cloud Infrastructure Database Management service. * * Gets the list of databases using a specific Database Management private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbManagementPrivateEndpointAssociatedDatabase = oci.databasemanagement.getDbManagementPrivateEndpointAssociatedDatabase({ * compartmentId: compartmentId, * dbManagementPrivateEndpointId: testDbManagementPrivateEndpoint.id, * }); * ``` */ export declare function getDbManagementPrivateEndpointAssociatedDatabase(args: GetDbManagementPrivateEndpointAssociatedDatabaseArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbManagementPrivateEndpointAssociatedDatabase. */ export interface GetDbManagementPrivateEndpointAssociatedDatabaseArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. */ dbManagementPrivateEndpointId: string; } /** * A collection of values returned by getDbManagementPrivateEndpointAssociatedDatabase. */ export interface GetDbManagementPrivateEndpointAssociatedDatabaseResult { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database. */ readonly compartmentId: string; readonly dbManagementPrivateEndpointId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of databases using a Database Management private endpoint. */ readonly items: outputs.DatabaseManagement.GetDbManagementPrivateEndpointAssociatedDatabaseItem[]; } /** * This data source provides details about a specific Db Management Private Endpoint Associated Database resource in Oracle Cloud Infrastructure Database Management service. * * Gets the list of databases using a specific Database Management private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbManagementPrivateEndpointAssociatedDatabase = oci.databasemanagement.getDbManagementPrivateEndpointAssociatedDatabase({ * compartmentId: compartmentId, * dbManagementPrivateEndpointId: testDbManagementPrivateEndpoint.id, * }); * ``` */ export declare function getDbManagementPrivateEndpointAssociatedDatabaseOutput(args: GetDbManagementPrivateEndpointAssociatedDatabaseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbManagementPrivateEndpointAssociatedDatabase. */ export interface GetDbManagementPrivateEndpointAssociatedDatabaseOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. */ dbManagementPrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getDbManagementPrivateEndpointAssociatedDatabase.d.ts.map