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 Patches in Oracle Cloud Infrastructure Database service. * * Lists the patches applicable to 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 testVmClusterPatches = oci.database.getVmClusterPatches({ * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatches(args: GetVmClusterPatchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterPatches. */ export interface GetVmClusterPatchesArgs { filters?: inputs.Database.GetVmClusterPatchesFilter[]; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: string; } /** * A collection of values returned by getVmClusterPatches. */ export interface GetVmClusterPatchesResult { readonly filters?: outputs.Database.GetVmClusterPatchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of patches. */ readonly patches: outputs.Database.GetVmClusterPatchesPatch[]; readonly vmClusterId: string; } /** * This data source provides the list of Vm Cluster Patches in Oracle Cloud Infrastructure Database service. * * Lists the patches applicable to 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 testVmClusterPatches = oci.database.getVmClusterPatches({ * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatchesOutput(args: GetVmClusterPatchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterPatches. */ export interface GetVmClusterPatchesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: pulumi.Input; } //# sourceMappingURL=getVmClusterPatches.d.ts.map