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 Updates in Oracle Cloud Infrastructure Database service. * * Lists the maintenance updates that can be applied to the specified Exadata VM cluster on Exascale Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusterUpdates = oci.database.getExadbVmClusterUpdates({ * exadbVmClusterId: testExadbVmCluster.id, * updateType: exadbVmClusterUpdateUpdateType, * version: exadbVmClusterUpdateVersion, * }); * ``` */ export declare function getExadbVmClusterUpdates(args: GetExadbVmClusterUpdatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExadbVmClusterUpdates. */ export interface GetExadbVmClusterUpdatesArgs { /** * The Exadata VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) on Exascale Infrastructure. */ exadbVmClusterId: string; filters?: inputs.Database.GetExadbVmClusterUpdatesFilter[]; /** * A filter to return only resources that match the given update type exactly. */ updateType?: string; /** * A filter to return only resources that match the given update version exactly. */ version?: string; } /** * A collection of values returned by getExadbVmClusterUpdates. */ export interface GetExadbVmClusterUpdatesResult { readonly exadbVmClusterId: string; /** * The list of exadb_vm_cluster_updates. */ readonly exadbVmClusterUpdates: outputs.Database.GetExadbVmClusterUpdatesExadbVmClusterUpdate[]; readonly filters?: outputs.Database.GetExadbVmClusterUpdatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The type of cloud VM cluster maintenance update. */ readonly updateType?: string; /** * The version of the maintenance update package. */ readonly version?: string; } /** * This data source provides the list of Exadb Vm Cluster Updates in Oracle Cloud Infrastructure Database service. * * Lists the maintenance updates that can be applied to the specified Exadata VM cluster on Exascale Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusterUpdates = oci.database.getExadbVmClusterUpdates({ * exadbVmClusterId: testExadbVmCluster.id, * updateType: exadbVmClusterUpdateUpdateType, * version: exadbVmClusterUpdateVersion, * }); * ``` */ export declare function getExadbVmClusterUpdatesOutput(args: GetExadbVmClusterUpdatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExadbVmClusterUpdates. */ export interface GetExadbVmClusterUpdatesOutputArgs { /** * 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; /** * A filter to return only resources that match the given update version exactly. */ version?: pulumi.Input; } //# sourceMappingURL=getExadbVmClusterUpdates.d.ts.map