import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific External 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 testExternalExadataStorageServerOpenAlertHistory = oci.databasemanagement.getExternalExadataStorageServerOpenAlertHistory({ * externalExadataStorageServerId: testExternalExadataStorageServer.id, * }); * ``` */ export declare function getExternalExadataStorageServerOpenAlertHistory(args: GetExternalExadataStorageServerOpenAlertHistoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalExadataStorageServerOpenAlertHistory. */ export interface GetExternalExadataStorageServerOpenAlertHistoryArgs { /** * 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 getExternalExadataStorageServerOpenAlertHistory. */ export interface GetExternalExadataStorageServerOpenAlertHistoryResult { /** * A list of open alerts. */ readonly alerts: outputs.DatabaseManagement.GetExternalExadataStorageServerOpenAlertHistoryAlert[]; 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 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 testExternalExadataStorageServerOpenAlertHistory = oci.databasemanagement.getExternalExadataStorageServerOpenAlertHistory({ * externalExadataStorageServerId: testExternalExadataStorageServer.id, * }); * ``` */ export declare function getExternalExadataStorageServerOpenAlertHistoryOutput(args: GetExternalExadataStorageServerOpenAlertHistoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalExadataStorageServerOpenAlertHistory. */ export interface GetExternalExadataStorageServerOpenAlertHistoryOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ externalExadataStorageServerId: pulumi.Input; } //# sourceMappingURL=getExternalExadataStorageServerOpenAlertHistory.d.ts.map