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 Os Patch History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the OS patch actions performed on the specified DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemOsPatchHistoryEntries = oci.database.getDbSystemOsPatchHistoryEntries({ * dbSystemId: testDbSystem.id, * action: dbSystemOsPatchHistoryEntryAction, * state: dbSystemOsPatchHistoryEntryState, * }); * ``` */ export declare function getDbSystemOsPatchHistoryEntries(args: GetDbSystemOsPatchHistoryEntriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemOsPatchHistoryEntries. */ export interface GetDbSystemOsPatchHistoryEntriesArgs { /** * A filter to return only OS patch history entries that match the specified OS patch action. */ action?: string; /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: string; filters?: inputs.Database.GetDbSystemOsPatchHistoryEntriesFilter[]; /** * A filter to return only OS patch history entries that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getDbSystemOsPatchHistoryEntries. */ export interface GetDbSystemOsPatchHistoryEntriesResult { /** * The action being performed or was completed. */ readonly action?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system. */ readonly dbSystemId: string; /** * The list of db_system_os_patch_history_entry_collection. */ readonly dbSystemOsPatchHistoryEntryCollections: outputs.Database.GetDbSystemOsPatchHistoryEntriesDbSystemOsPatchHistoryEntryCollection[]; readonly filters?: outputs.Database.GetDbSystemOsPatchHistoryEntriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the action. */ readonly state?: string; } /** * This data source provides the list of Db System Os Patch History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the OS patch actions performed on the specified DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemOsPatchHistoryEntries = oci.database.getDbSystemOsPatchHistoryEntries({ * dbSystemId: testDbSystem.id, * action: dbSystemOsPatchHistoryEntryAction, * state: dbSystemOsPatchHistoryEntryState, * }); * ``` */ export declare function getDbSystemOsPatchHistoryEntriesOutput(args: GetDbSystemOsPatchHistoryEntriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemOsPatchHistoryEntries. */ export interface GetDbSystemOsPatchHistoryEntriesOutputArgs { /** * A filter to return only OS patch history entries that match the specified OS patch action. */ action?: pulumi.Input; /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only OS patch history entries that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getDbSystemOsPatchHistoryEntries.d.ts.map