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 Exadb Vm Cluster Update History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the maintenance update actions performed on the specified Exadata VM cluster on Exascale Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusterUpdateHistoryEntries = oci.database.getExadbVmClusterUpdateHistoryEntries({ * exadbVmClusterId: testExadbVmCluster.id, * updateType: exadbVmClusterUpdateHistoryEntryUpdateType, * }); * ``` */ export declare function getExadbVmClusterUpdateHistoryEntries(args: GetExadbVmClusterUpdateHistoryEntriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExadbVmClusterUpdateHistoryEntries. */ export interface GetExadbVmClusterUpdateHistoryEntriesArgs { /** * The Exadata VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) on Exascale Infrastructure. */ exadbVmClusterId: string; filters?: inputs.Database.GetExadbVmClusterUpdateHistoryEntriesFilter[]; /** * A filter to return only resources that match the given update type exactly. */ updateType?: string; } /** * A collection of values returned by getExadbVmClusterUpdateHistoryEntries. */ export interface GetExadbVmClusterUpdateHistoryEntriesResult { readonly exadbVmClusterId: string; /** * The list of exadb_vm_cluster_update_history_entries. */ readonly exadbVmClusterUpdateHistoryEntries: outputs.Database.GetExadbVmClusterUpdateHistoryEntriesExadbVmClusterUpdateHistoryEntry[]; readonly filters?: outputs.Database.GetExadbVmClusterUpdateHistoryEntriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The type of cloud VM cluster maintenance update. */ readonly updateType?: string; } /** * This data source provides the list of Exadb Vm Cluster Update History Entries in Oracle Cloud Infrastructure Database service. * * Gets the history of the maintenance update actions performed on the specified Exadata VM cluster on Exascale Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusterUpdateHistoryEntries = oci.database.getExadbVmClusterUpdateHistoryEntries({ * exadbVmClusterId: testExadbVmCluster.id, * updateType: exadbVmClusterUpdateHistoryEntryUpdateType, * }); * ``` */ export declare function getExadbVmClusterUpdateHistoryEntriesOutput(args: GetExadbVmClusterUpdateHistoryEntriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExadbVmClusterUpdateHistoryEntries. */ export interface GetExadbVmClusterUpdateHistoryEntriesOutputArgs { /** * The Exadata VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) on Exascale Infrastructure. */ exadbVmClusterId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given update type exactly. */ updateType?: pulumi.Input; } //# sourceMappingURL=getExadbVmClusterUpdateHistoryEntries.d.ts.map