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 Update History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the maintenance update actions performed on the specified VM cluster. Applies to Exadata Cloud@Customer instances only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterUpdateHistoryEntries = oci.database.getVmClusterUpdateHistoryEntries({ * vmClusterId: testVmCluster.id, * state: vmClusterUpdateHistoryEntryState, * updateType: vmClusterUpdateHistoryEntryUpdateType, * }); * ``` */ export declare function getVmClusterUpdateHistoryEntries(args: GetVmClusterUpdateHistoryEntriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterUpdateHistoryEntries. */ export interface GetVmClusterUpdateHistoryEntriesArgs { filters?: inputs.Database.GetVmClusterUpdateHistoryEntriesFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; /** * A filter to return only resources that match the given update type exactly. */ updateType?: string; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: string; } /** * A collection of values returned by getVmClusterUpdateHistoryEntries. */ export interface GetVmClusterUpdateHistoryEntriesResult { readonly filters?: outputs.Database.GetVmClusterUpdateHistoryEntriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current lifecycle state of the maintenance update operation. */ readonly state?: string; /** * The type of VM cluster maintenance update. */ readonly updateType?: string; readonly vmClusterId: string; /** * The list of vm_cluster_update_history_entries. */ readonly vmClusterUpdateHistoryEntries: outputs.Database.GetVmClusterUpdateHistoryEntriesVmClusterUpdateHistoryEntry[]; } /** * This data source provides the list of Vm Cluster Update History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the maintenance update actions performed on the specified VM cluster. Applies to Exadata Cloud@Customer instances only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterUpdateHistoryEntries = oci.database.getVmClusterUpdateHistoryEntries({ * vmClusterId: testVmCluster.id, * state: vmClusterUpdateHistoryEntryState, * updateType: vmClusterUpdateHistoryEntryUpdateType, * }); * ``` */ export declare function getVmClusterUpdateHistoryEntriesOutput(args: GetVmClusterUpdateHistoryEntriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterUpdateHistoryEntries. */ export interface GetVmClusterUpdateHistoryEntriesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; /** * A filter to return only resources that match the given update type exactly. */ updateType?: pulumi.Input; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: pulumi.Input; } //# sourceMappingURL=getVmClusterUpdateHistoryEntries.d.ts.map