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