import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about existing Oracle Database Systems Versions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getDatabaseSystemVersions({ * location: "eastus", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDatabaseSystemVersions(args: GetDatabaseSystemVersionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseSystemVersions. */ export interface GetDatabaseSystemVersionsArgs { /** * Whether to filter the results to the set of Oracle Database versions that are supported for the database software images. */ databaseSoftwareImageSupported?: boolean; /** * If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is `VM.Standard.x86`. */ databaseSystemShape?: string; /** * The Azure Region to query for the Oracle Database Systems Versions. */ location: string; /** * If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are `EXADATA`, `EXADB_XS`, `SINGLENODE` and `VIRTUALMACHINE`. */ shapeFamily?: string; /** * The database system storage management option. Used to list database versions available for that storage manager. The only possible value is `LVM`. */ storageManagement?: string; /** * Whether to filter the results to the set of database versions which are supported for upgrade. */ upgradeSupported?: boolean; } /** * A collection of values returned by getDatabaseSystemVersions. */ export interface GetDatabaseSystemVersionsResult { readonly databaseSoftwareImageSupported?: boolean; readonly databaseSystemShape?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly shapeFamily?: string; readonly storageManagement?: string; readonly upgradeSupported?: boolean; /** * A `versions` block as defined below. */ readonly versions: outputs.oracle.GetDatabaseSystemVersionsVersion[]; } /** * Use this data source to access information about existing Oracle Database Systems Versions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getDatabaseSystemVersions({ * location: "eastus", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDatabaseSystemVersionsOutput(args: GetDatabaseSystemVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseSystemVersions. */ export interface GetDatabaseSystemVersionsOutputArgs { /** * Whether to filter the results to the set of Oracle Database versions that are supported for the database software images. */ databaseSoftwareImageSupported?: pulumi.Input; /** * If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is `VM.Standard.x86`. */ databaseSystemShape?: pulumi.Input; /** * The Azure Region to query for the Oracle Database Systems Versions. */ location: pulumi.Input; /** * If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are `EXADATA`, `EXADB_XS`, `SINGLENODE` and `VIRTUALMACHINE`. */ shapeFamily?: pulumi.Input; /** * The database system storage management option. Used to list database versions available for that storage manager. The only possible value is `LVM`. */ storageManagement?: pulumi.Input; /** * Whether to filter the results to the set of database versions which are supported for upgrade. */ upgradeSupported?: pulumi.Input; }