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 Patch History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the patch actions performed on the specified DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemPatchHistoryEntries = oci.database.getDbSystemHistoryEntries({ * dbSystemId: testDbSystem.id, * }); * ``` */ export declare function getDbSystemHistoryEntries(args: GetDbSystemHistoryEntriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemHistoryEntries. */ export interface GetDbSystemHistoryEntriesArgs { /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: string; filters?: inputs.Database.GetDbSystemHistoryEntriesFilter[]; } /** * A collection of values returned by getDbSystemHistoryEntries. */ export interface GetDbSystemHistoryEntriesResult { readonly dbSystemId: string; readonly filters?: outputs.Database.GetDbSystemHistoryEntriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of patch_history_entries. */ readonly patchHistoryEntries: outputs.Database.GetDbSystemHistoryEntriesPatchHistoryEntry[]; } /** * This data source provides the list of Db System Patch History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the patch actions performed on the specified DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemPatchHistoryEntries = oci.database.getDbSystemHistoryEntries({ * dbSystemId: testDbSystem.id, * }); * ``` */ export declare function getDbSystemHistoryEntriesOutput(args: GetDbSystemHistoryEntriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemHistoryEntries. */ export interface GetDbSystemHistoryEntriesOutputArgs { /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDbSystemHistoryEntries.d.ts.map