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 Vm Cluster Patch History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the patch actions performed on the specified VM cluster in an Exadata Cloud@Customer system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterPatchHistoryEntries = oci.database.getVmClusterPatchHistoryEntries({ * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatchHistoryEntries(args: GetVmClusterPatchHistoryEntriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterPatchHistoryEntries. */ export interface GetVmClusterPatchHistoryEntriesArgs { filters?: inputs.Database.GetVmClusterPatchHistoryEntriesFilter[]; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: string; } /** * A collection of values returned by getVmClusterPatchHistoryEntries. */ export interface GetVmClusterPatchHistoryEntriesResult { readonly filters?: outputs.Database.GetVmClusterPatchHistoryEntriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of patch_history_entries. */ readonly patchHistoryEntries: outputs.Database.GetVmClusterPatchHistoryEntriesPatchHistoryEntry[]; readonly vmClusterId: string; } /** * This data source provides the list of Vm Cluster Patch History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the patch actions performed on the specified VM cluster in an Exadata Cloud@Customer system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterPatchHistoryEntries = oci.database.getVmClusterPatchHistoryEntries({ * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatchHistoryEntriesOutput(args: GetVmClusterPatchHistoryEntriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterPatchHistoryEntries. */ export interface GetVmClusterPatchHistoryEntriesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: pulumi.Input; } //# sourceMappingURL=getVmClusterPatchHistoryEntries.d.ts.map