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 Db Home Patches in Oracle Cloud Infrastructure Database service. * * Lists patches applicable to the requested Database Home. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbHomePatches = oci.database.getDbHomePatches({ * dbHomeId: testDbHome.id, * }); * ``` */ export declare function getDbHomePatches(args: GetDbHomePatchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbHomePatches. */ export interface GetDbHomePatchesArgs { /** * The Database Home [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbHomeId: string; filters?: inputs.Database.GetDbHomePatchesFilter[]; } /** * A collection of values returned by getDbHomePatches. */ export interface GetDbHomePatchesResult { readonly dbHomeId: string; readonly filters?: outputs.Database.GetDbHomePatchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of patches. */ readonly patches: outputs.Database.GetDbHomePatchesPatch[]; } /** * This data source provides the list of Db Home Patches in Oracle Cloud Infrastructure Database service. * * Lists patches applicable to the requested Database Home. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbHomePatches = oci.database.getDbHomePatches({ * dbHomeId: testDbHome.id, * }); * ``` */ export declare function getDbHomePatchesOutput(args: GetDbHomePatchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbHomePatches. */ export interface GetDbHomePatchesOutputArgs { /** * The Database Home [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbHomeId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDbHomePatches.d.ts.map