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 Compute Performances in Oracle Cloud Infrastructure Database service. * * Gets a list of expected compute performance parameters for a virtual machine DB system based on system configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemComputePerformances = oci.database.getDbSystemComputePerformances({ * dbSystemShape: dbSystemComputePerformanceDbSystemShape, * }); * ``` */ export declare function getDbSystemComputePerformances(args?: GetDbSystemComputePerformancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemComputePerformances. */ export interface GetDbSystemComputePerformancesArgs { /** * If provided, filters the results to the set of database versions which are supported for the given shape. */ dbSystemShape?: string; filters?: inputs.Database.GetDbSystemComputePerformancesFilter[]; } /** * A collection of values returned by getDbSystemComputePerformances. */ export interface GetDbSystemComputePerformancesResult { /** * The list of db_system_compute_performances. */ readonly dbSystemComputePerformances: outputs.Database.GetDbSystemComputePerformancesDbSystemComputePerformance[]; readonly dbSystemShape?: string; readonly filters?: outputs.Database.GetDbSystemComputePerformancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Db System Compute Performances in Oracle Cloud Infrastructure Database service. * * Gets a list of expected compute performance parameters for a virtual machine DB system based on system configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemComputePerformances = oci.database.getDbSystemComputePerformances({ * dbSystemShape: dbSystemComputePerformanceDbSystemShape, * }); * ``` */ export declare function getDbSystemComputePerformancesOutput(args?: GetDbSystemComputePerformancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemComputePerformances. */ export interface GetDbSystemComputePerformancesOutputArgs { /** * If provided, filters the results to the set of database versions which are supported for the given shape. */ dbSystemShape?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDbSystemComputePerformances.d.ts.map