import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Db Management Private Endpoint Associated Databases 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 testDbManagementPrivateEndpointAssociatedDatabases = oci.databasemanagement.getDbManagementPrivateEndpointAssociatedDatabases({ * compartmentId: compartmentId, * dbManagementPrivateEndpointId: testDbManagementPrivateEndpoint.id, * }); * ``` */ export declare function getDbManagementPrivateEndpointAssociatedDatabases(args: GetDbManagementPrivateEndpointAssociatedDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbManagementPrivateEndpointAssociatedDatabases. */ export interface GetDbManagementPrivateEndpointAssociatedDatabasesArgs { /** * 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; filters?: inputs.DatabaseManagement.GetDbManagementPrivateEndpointAssociatedDatabasesFilter[]; } /** * A collection of values returned by getDbManagementPrivateEndpointAssociatedDatabases. */ export interface GetDbManagementPrivateEndpointAssociatedDatabasesResult { /** * The list of associated_database_collection. */ readonly associatedDatabaseCollections: outputs.DatabaseManagement.GetDbManagementPrivateEndpointAssociatedDatabasesAssociatedDatabaseCollection[]; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database. */ readonly compartmentId: string; readonly dbManagementPrivateEndpointId: string; readonly filters?: outputs.DatabaseManagement.GetDbManagementPrivateEndpointAssociatedDatabasesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Db Management Private Endpoint Associated Databases 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 testDbManagementPrivateEndpointAssociatedDatabases = oci.databasemanagement.getDbManagementPrivateEndpointAssociatedDatabases({ * compartmentId: compartmentId, * dbManagementPrivateEndpointId: testDbManagementPrivateEndpoint.id, * }); * ``` */ export declare function getDbManagementPrivateEndpointAssociatedDatabasesOutput(args: GetDbManagementPrivateEndpointAssociatedDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbManagementPrivateEndpointAssociatedDatabases. */ export interface GetDbManagementPrivateEndpointAssociatedDatabasesOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDbManagementPrivateEndpointAssociatedDatabases.d.ts.map