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 Blockchain Platform Patches in Oracle Cloud Infrastructure Blockchain service. * * List Blockchain Platform Patches * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBlockchainPlatformPatches = oci.blockchain.getBlockchainPlatformPatches({ * blockchainPlatformId: testBlockchainPlatform.id, * }); * ``` */ export declare function getBlockchainPlatformPatches(args: GetBlockchainPlatformPatchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBlockchainPlatformPatches. */ export interface GetBlockchainPlatformPatchesArgs { /** * Unique service identifier. */ blockchainPlatformId: string; filters?: inputs.Blockchain.GetBlockchainPlatformPatchesFilter[]; } /** * A collection of values returned by getBlockchainPlatformPatches. */ export interface GetBlockchainPlatformPatchesResult { readonly blockchainPlatformId: string; /** * The list of blockchain_platform_patch_collection. */ readonly blockchainPlatformPatchCollections: outputs.Blockchain.GetBlockchainPlatformPatchesBlockchainPlatformPatchCollection[]; readonly filters?: outputs.Blockchain.GetBlockchainPlatformPatchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Blockchain Platform Patches in Oracle Cloud Infrastructure Blockchain service. * * List Blockchain Platform Patches * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBlockchainPlatformPatches = oci.blockchain.getBlockchainPlatformPatches({ * blockchainPlatformId: testBlockchainPlatform.id, * }); * ``` */ export declare function getBlockchainPlatformPatchesOutput(args: GetBlockchainPlatformPatchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBlockchainPlatformPatches. */ export interface GetBlockchainPlatformPatchesOutputArgs { /** * Unique service identifier. */ blockchainPlatformId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getBlockchainPlatformPatches.d.ts.map