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 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 oci from "@pulumi/oci"; * * const testDbSystemShapes = oci.database.getDbSystemShapes({ * compartmentId: compartmentId, * availabilityDomain: dbSystemShapeAvailabilityDomain, * shapeAttribute: dbSystemShapeShapeAttribute, * }); * ``` */ export declare function getDbSystemShapes(args: GetDbSystemShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemShapes. */ export interface GetDbSystemShapesArgs { /** * The name of the Availability Domain. */ availabilityDomain?: string; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; filters?: inputs.Database.GetDbSystemShapesFilter[]; /** * If provided and applicable, return DB System shape parameters based on the shapeAttribute provided */ shapeAttribute?: string; } /** * A collection of values returned by getDbSystemShapes. */ export interface GetDbSystemShapesResult { readonly availabilityDomain?: string; readonly compartmentId: string; /** * The list of db_system_shapes. */ readonly dbSystemShapes: outputs.Database.GetDbSystemShapesDbSystemShape[]; readonly filters?: outputs.Database.GetDbSystemShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly shapeAttribute?: 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 oci from "@pulumi/oci"; * * const testDbSystemShapes = oci.database.getDbSystemShapes({ * compartmentId: compartmentId, * availabilityDomain: dbSystemShapeAvailabilityDomain, * shapeAttribute: dbSystemShapeShapeAttribute, * }); * ``` */ export declare function getDbSystemShapesOutput(args: GetDbSystemShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemShapes. */ export interface GetDbSystemShapesOutputArgs { /** * The name of the Availability Domain. */ availabilityDomain?: pulumi.Input; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * If provided and applicable, return DB System shape parameters based on the shapeAttribute provided */ shapeAttribute?: pulumi.Input; } //# sourceMappingURL=getDbSystemShapes.d.ts.map