import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Cloud Exadata Storage Server Open Alert History resource in Oracle Cloud Infrastructure Database Management service. * * Gets the open alerts from the specified Exadata storage server. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataStorageServerOpenAlertHistory = oci.databasemanagement.getCloudExadataStorageServerOpenAlertHistory({ * cloudExadataStorageServerId: testCloudExadataStorageServer.id, * }); * ``` */ export declare function getCloudExadataStorageServerOpenAlertHistory(args: GetCloudExadataStorageServerOpenAlertHistoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataStorageServerOpenAlertHistory. */ export interface GetCloudExadataStorageServerOpenAlertHistoryArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ cloudExadataStorageServerId: string; } /** * A collection of values returned by getCloudExadataStorageServerOpenAlertHistory. */ export interface GetCloudExadataStorageServerOpenAlertHistoryResult { /** * A list of open alerts. */ readonly alerts: outputs.DatabaseManagement.GetCloudExadataStorageServerOpenAlertHistoryAlert[]; readonly cloudExadataStorageServerId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides details about a specific Cloud Exadata Storage Server Open Alert History resource in Oracle Cloud Infrastructure Database Management service. * * Gets the open alerts from the specified Exadata storage server. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataStorageServerOpenAlertHistory = oci.databasemanagement.getCloudExadataStorageServerOpenAlertHistory({ * cloudExadataStorageServerId: testCloudExadataStorageServer.id, * }); * ``` */ export declare function getCloudExadataStorageServerOpenAlertHistoryOutput(args: GetCloudExadataStorageServerOpenAlertHistoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataStorageServerOpenAlertHistory. */ export interface GetCloudExadataStorageServerOpenAlertHistoryOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ cloudExadataStorageServerId: pulumi.Input; } //# sourceMappingURL=getCloudExadataStorageServerOpenAlertHistory.d.ts.map