import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides the list of DB System Shapes in Oracle Cloud Infrastructure Database service. * * Gets a list of the shapes that can be used to launch a new DB system. The shape determines resources to allocate to the DB system - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getDbSystemShapes({ * location: "eastus", * zone: "2", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDbSystemShapes(args: GetDbSystemShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemShapes. */ export interface GetDbSystemShapesArgs { /** * The Azure Region to query for the system shapes in. */ location: string; /** * The Cloud Exadata Infrastructure Azure zone, used to filter out the available DB System Shapes in the specific zone. */ zone?: string; } /** * A collection of values returned by getDbSystemShapes. */ export interface GetDbSystemShapesResult { /** * A `dbSystemShapes` block as defined below. */ readonly dbSystemShapes: outputs.oracle.GetDbSystemShapesDbSystemShape[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly zone?: string; } /** * This data source provides the list of DB System Shapes in Oracle Cloud Infrastructure Database service. * * Gets a list of the shapes that can be used to launch a new DB system. The shape determines resources to allocate to the DB system - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getDbSystemShapes({ * location: "eastus", * zone: "2", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDbSystemShapesOutput(args: GetDbSystemShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemShapes. */ export interface GetDbSystemShapesOutputArgs { /** * The Azure Region to query for the system shapes in. */ location: pulumi.Input; /** * The Cloud Exadata Infrastructure Azure zone, used to filter out the available DB System Shapes in the specific zone. */ zone?: pulumi.Input; }