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 Managed My Sql Databases in Oracle Cloud Infrastructure Database Management service. * * Gets the list of Managed MySQL Databases in a specific compartment. * 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 testManagedMySqlDatabases = oci.databasemanagement.getManagedMySqlDatabases({ * compartmentId: compartmentId, * filterByMySqlDatabaseTypeParam: managedMySqlDatabaseFilterByMySqlDatabaseTypeParam, * }); * ``` */ export declare function getManagedMySqlDatabases(args: GetManagedMySqlDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedMySqlDatabases. */ export interface GetManagedMySqlDatabasesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The parameter to filter by MySQL database type. Allowed values are EXTERNAL or MDS. */ filterByMySqlDatabaseTypeParam?: string; filters?: inputs.DatabaseManagement.GetManagedMySqlDatabasesFilter[]; } /** * A collection of values returned by getManagedMySqlDatabases. */ export interface GetManagedMySqlDatabasesResult { /** * The OCID of the compartment. */ readonly compartmentId: string; readonly filterByMySqlDatabaseTypeParam?: string; readonly filters?: outputs.DatabaseManagement.GetManagedMySqlDatabasesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of managed_my_sql_database_collection. */ readonly managedMySqlDatabaseCollections: outputs.DatabaseManagement.GetManagedMySqlDatabasesManagedMySqlDatabaseCollection[]; } /** * This data source provides the list of Managed My Sql Databases in Oracle Cloud Infrastructure Database Management service. * * Gets the list of Managed MySQL Databases in a specific compartment. * 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 testManagedMySqlDatabases = oci.databasemanagement.getManagedMySqlDatabases({ * compartmentId: compartmentId, * filterByMySqlDatabaseTypeParam: managedMySqlDatabaseFilterByMySqlDatabaseTypeParam, * }); * ``` */ export declare function getManagedMySqlDatabasesOutput(args: GetManagedMySqlDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedMySqlDatabases. */ export interface GetManagedMySqlDatabasesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The parameter to filter by MySQL database type. Allowed values are EXTERNAL or MDS. */ filterByMySqlDatabaseTypeParam?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getManagedMySqlDatabases.d.ts.map