import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific External Exadata Storage Server Top Sql Cpu Activity resource in Oracle Cloud Infrastructure Database Management service. * * Gets the SQL IDs with the top CPU activity from the Exadata storage server. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalExadataStorageServerTopSqlCpuActivity = oci.databasemanagement.getExternalExadataStorageServerTopSqlCpuActivity({ * externalExadataStorageServerId: testExternalExadataStorageServer.id, * }); * ``` */ export declare function getExternalExadataStorageServerTopSqlCpuActivity(args: GetExternalExadataStorageServerTopSqlCpuActivityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalExadataStorageServerTopSqlCpuActivity. */ export interface GetExternalExadataStorageServerTopSqlCpuActivityArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ externalExadataStorageServerId: string; } /** * A collection of values returned by getExternalExadataStorageServerTopSqlCpuActivity. */ export interface GetExternalExadataStorageServerTopSqlCpuActivityResult { /** * A list of sql CPU activity. */ readonly activities: outputs.DatabaseManagement.GetExternalExadataStorageServerTopSqlCpuActivityActivity[]; readonly externalExadataStorageServerId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides details about a specific External Exadata Storage Server Top Sql Cpu Activity resource in Oracle Cloud Infrastructure Database Management service. * * Gets the SQL IDs with the top CPU activity from the Exadata storage server. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalExadataStorageServerTopSqlCpuActivity = oci.databasemanagement.getExternalExadataStorageServerTopSqlCpuActivity({ * externalExadataStorageServerId: testExternalExadataStorageServer.id, * }); * ``` */ export declare function getExternalExadataStorageServerTopSqlCpuActivityOutput(args: GetExternalExadataStorageServerTopSqlCpuActivityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalExadataStorageServerTopSqlCpuActivity. */ export interface GetExternalExadataStorageServerTopSqlCpuActivityOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ externalExadataStorageServerId: pulumi.Input; } //# sourceMappingURL=getExternalExadataStorageServerTopSqlCpuActivity.d.ts.map