import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Db System Os Patch History Entry resource in Oracle Cloud Infrastructure Database service. * * Gets the details of the specified OS patch action for the specified DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemOsPatchHistoryEntry = oci.database.getDbSystemOsPatchHistoryEntry({ * dbSystemId: testDbSystem.id, * osPatchHistoryEntryId: testOsPatchHistoryEntry.id, * }); * ``` */ export declare function getDbSystemOsPatchHistoryEntry(args: GetDbSystemOsPatchHistoryEntryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemOsPatchHistoryEntry. */ export interface GetDbSystemOsPatchHistoryEntryArgs { /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch history entry. */ osPatchHistoryEntryId: string; } /** * A collection of values returned by getDbSystemOsPatchHistoryEntry. */ export interface GetDbSystemOsPatchHistoryEntryResult { /** * 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 provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A descriptive text associated with the lifecycleState. Typically contains additional displayable text. */ readonly lifecycleDetails: string; /** * Results of OS patch details for a DB System. */ readonly osPatchDetails: outputs.Database.GetDbSystemOsPatchHistoryEntryOsPatchDetail[]; readonly osPatchHistoryEntryId: string; /** * The current state of the action. */ readonly state: string; /** * The date and time when the patch action completed */ readonly timeEnded: string; /** * The date and time when the patch action started. */ readonly timeStarted: string; } /** * This data source provides details about a specific Db System Os Patch History Entry resource in Oracle Cloud Infrastructure Database service. * * Gets the details of the specified OS patch action for the specified DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemOsPatchHistoryEntry = oci.database.getDbSystemOsPatchHistoryEntry({ * dbSystemId: testDbSystem.id, * osPatchHistoryEntryId: testOsPatchHistoryEntry.id, * }); * ``` */ export declare function getDbSystemOsPatchHistoryEntryOutput(args: GetDbSystemOsPatchHistoryEntryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemOsPatchHistoryEntry. */ export interface GetDbSystemOsPatchHistoryEntryOutputArgs { /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch history entry. */ osPatchHistoryEntryId: pulumi.Input; } //# sourceMappingURL=getDbSystemOsPatchHistoryEntry.d.ts.map