import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Vm Cluster Patch History Entry resource in Oracle Cloud Infrastructure Database service. * * Gets the patch history details for the specified patch history entry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterPatchHistoryEntry = oci.database.getVmClusterPatchHistoryEntry({ * patchHistoryEntryId: testPatchHistoryEntry.id, * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatchHistoryEntry(args: GetVmClusterPatchHistoryEntryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterPatchHistoryEntry. */ export interface GetVmClusterPatchHistoryEntryArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch history entry. */ patchHistoryEntryId: string; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: string; } /** * A collection of values returned by getVmClusterPatchHistoryEntry. */ export interface GetVmClusterPatchHistoryEntryResult { /** * The action being performed or was completed. */ readonly action: 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; readonly patchHistoryEntryId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch. */ readonly patchId: 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; readonly vmClusterId: string; } /** * This data source provides details about a specific Vm Cluster Patch History Entry resource in Oracle Cloud Infrastructure Database service. * * Gets the patch history details for the specified patch history entry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterPatchHistoryEntry = oci.database.getVmClusterPatchHistoryEntry({ * patchHistoryEntryId: testPatchHistoryEntry.id, * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatchHistoryEntryOutput(args: GetVmClusterPatchHistoryEntryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterPatchHistoryEntry. */ export interface GetVmClusterPatchHistoryEntryOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch history entry. */ patchHistoryEntryId: pulumi.Input; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: pulumi.Input; } //# sourceMappingURL=getVmClusterPatchHistoryEntry.d.ts.map