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 Bds Instance Patches in Oracle Cloud Infrastructure Big Data Service service. * * List all the available patches for this cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstancePatches = oci.bigdataservice.getBdsInstancePatches({ * bdsInstanceId: testBdsInstance.id, * }); * ``` */ export declare function getBdsInstancePatches(args: GetBdsInstancePatchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBdsInstancePatches. */ export interface GetBdsInstancePatchesArgs { /** * The OCID of the cluster. */ bdsInstanceId: string; filters?: inputs.BigDataService.GetBdsInstancePatchesFilter[]; } /** * A collection of values returned by getBdsInstancePatches. */ export interface GetBdsInstancePatchesResult { readonly bdsInstanceId: string; readonly filters?: outputs.BigDataService.GetBdsInstancePatchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of patches. */ readonly patches: outputs.BigDataService.GetBdsInstancePatchesPatch[]; } /** * This data source provides the list of Bds Instance Patches in Oracle Cloud Infrastructure Big Data Service service. * * List all the available patches for this cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstancePatches = oci.bigdataservice.getBdsInstancePatches({ * bdsInstanceId: testBdsInstance.id, * }); * ``` */ export declare function getBdsInstancePatchesOutput(args: GetBdsInstancePatchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBdsInstancePatches. */ export interface GetBdsInstancePatchesOutputArgs { /** * The OCID of the cluster. */ bdsInstanceId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getBdsInstancePatches.d.ts.map