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 Mysql Versions in Oracle Cloud Infrastructure MySQL Database service. * * Get a list of supported and available MySQL database major versions. * * The list is sorted by version family. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMysqlVersions = oci.mysql.getMysqlVersion({ * compartmentId: compartmentId, * }); * ``` */ export declare function getMysqlVersion(args: GetMysqlVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMysqlVersion. */ export interface GetMysqlVersionArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; filters?: inputs.Mysql.GetMysqlVersionFilter[]; } /** * A collection of values returned by getMysqlVersion. */ export interface GetMysqlVersionResult { readonly compartmentId: string; readonly filters?: outputs.Mysql.GetMysqlVersionFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of supported MySQL Versions. */ readonly versions: outputs.Mysql.GetMysqlVersionVersion[]; } /** * This data source provides the list of Mysql Versions in Oracle Cloud Infrastructure MySQL Database service. * * Get a list of supported and available MySQL database major versions. * * The list is sorted by version family. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMysqlVersions = oci.mysql.getMysqlVersion({ * compartmentId: compartmentId, * }); * ``` */ export declare function getMysqlVersionOutput(args: GetMysqlVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMysqlVersion. */ export interface GetMysqlVersionOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getMysqlVersion.d.ts.map