import * as pulumi from "@pulumi/pulumi"; /** * This data source provides the list of GI Versions in Oracle Cloud Infrastructure Database service. * * Gets a list of supported GI versions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getGiVersions({ * location: "eastus", * zone: "2", * shape: "Exadata.X9M", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getGiVersions(args: GetGiVersionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGiVersions. */ export interface GetGiVersionsArgs { /** * The Azure Region to query for the GI Versions in. */ location: string; /** * The model name of the Cloud Exadata Infrastructure resource. Possible values are `ExaDbXS`, `Exadata.X9M`, and `Exadata.X11M`. This is used to filter out the available GI versions compatible with the given model. */ shape?: string; /** * Indicates the Azure zone for the Cloud Exadata Infrastructure, used to filter the available GI versions within a given zone. */ zone?: string; } /** * A collection of values returned by getGiVersions. */ export interface GetGiVersionsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly shape?: string; /** * A list of valid GI software versions. */ readonly versions: string[]; readonly zone?: string; } /** * This data source provides the list of GI Versions in Oracle Cloud Infrastructure Database service. * * Gets a list of supported GI versions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getGiVersions({ * location: "eastus", * zone: "2", * shape: "Exadata.X9M", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getGiVersionsOutput(args: GetGiVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGiVersions. */ export interface GetGiVersionsOutputArgs { /** * The Azure Region to query for the GI Versions in. */ location: pulumi.Input; /** * The model name of the Cloud Exadata Infrastructure resource. Possible values are `ExaDbXS`, `Exadata.X9M`, and `Exadata.X11M`. This is used to filter out the available GI versions compatible with the given model. */ shape?: pulumi.Input; /** * Indicates the Azure zone for the Cloud Exadata Infrastructure, used to filter the available GI versions within a given zone. */ zone?: pulumi.Input; }