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 External My Sql Databases in Oracle Cloud Infrastructure Database Management service. * * Gets the list of External MySQL Databases. * * MySQL support within Oracle Cloud Infrastructure Database Management service has been deprecated as of January 29, 2026. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalMySqlDatabases = oci.databasemanagement.getExternalMySqlDatabases({ * compartmentId: compartmentId, * name: externalMySqlDatabaseName, * }); * ``` */ export declare function getExternalMySqlDatabases(args: GetExternalMySqlDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalMySqlDatabases. */ export interface GetExternalMySqlDatabasesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DatabaseManagement.GetExternalMySqlDatabasesFilter[]; /** * The parameter to filter by MySQL Database System type. */ name?: string; } /** * A collection of values returned by getExternalMySqlDatabases. */ export interface GetExternalMySqlDatabasesResult { /** * OCID of compartment for the External MySQL Database. */ readonly compartmentId: string; /** * The list of external_my_sql_database_collection. */ readonly externalMySqlDatabaseCollections: outputs.DatabaseManagement.GetExternalMySqlDatabasesExternalMySqlDatabaseCollection[]; readonly filters?: outputs.DatabaseManagement.GetExternalMySqlDatabasesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name?: string; } /** * This data source provides the list of External My Sql Databases in Oracle Cloud Infrastructure Database Management service. * * Gets the list of External MySQL Databases. * * MySQL support within Oracle Cloud Infrastructure Database Management service has been deprecated as of January 29, 2026. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalMySqlDatabases = oci.databasemanagement.getExternalMySqlDatabases({ * compartmentId: compartmentId, * name: externalMySqlDatabaseName, * }); * ``` */ export declare function getExternalMySqlDatabasesOutput(args: GetExternalMySqlDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalMySqlDatabases. */ export interface GetExternalMySqlDatabasesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The parameter to filter by MySQL Database System type. */ name?: pulumi.Input; } //# sourceMappingURL=getExternalMySqlDatabases.d.ts.map