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 Database Connectors in Oracle Cloud Infrastructure Database Management service. * * Gets the list of External MySQL Database connectors. * * 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 testExternalMySqlDatabaseConnectors = oci.databasemanagement.getExternalMySqlDatabaseConnectors({ * compartmentId: compartmentId, * name: externalMySqlDatabaseConnectorName, * }); * ``` */ export declare function getExternalMySqlDatabaseConnectors(args: GetExternalMySqlDatabaseConnectorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalMySqlDatabaseConnectors. */ export interface GetExternalMySqlDatabaseConnectorsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DatabaseManagement.GetExternalMySqlDatabaseConnectorsFilter[]; /** * The parameter to filter by MySQL Database System type. */ name?: string; } /** * A collection of values returned by getExternalMySqlDatabaseConnectors. */ export interface GetExternalMySqlDatabaseConnectorsResult { /** * OCID of compartment for the External MySQL connector. */ readonly compartmentId: string; readonly filters?: outputs.DatabaseManagement.GetExternalMySqlDatabaseConnectorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of my_sql_connector_collection. */ readonly mySqlConnectorCollections: outputs.DatabaseManagement.GetExternalMySqlDatabaseConnectorsMySqlConnectorCollection[]; /** * External MySQL Database Connector Name. */ readonly name?: string; } /** * This data source provides the list of External My Sql Database Connectors in Oracle Cloud Infrastructure Database Management service. * * Gets the list of External MySQL Database connectors. * * 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 testExternalMySqlDatabaseConnectors = oci.databasemanagement.getExternalMySqlDatabaseConnectors({ * compartmentId: compartmentId, * name: externalMySqlDatabaseConnectorName, * }); * ``` */ export declare function getExternalMySqlDatabaseConnectorsOutput(args: GetExternalMySqlDatabaseConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalMySqlDatabaseConnectors. */ export interface GetExternalMySqlDatabaseConnectorsOutputArgs { /** * 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=getExternalMySqlDatabaseConnectors.d.ts.map