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 Wls Domain Applicable Patches in Oracle Cloud Infrastructure Wlms service. * * Gets the latest patches that can be installed to the WebLogic domains. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainApplicablePatches = oci.oci.getWlmsWlsDomainApplicablePatches({ * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainApplicablePatches(args: GetWlmsWlsDomainApplicablePatchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomainApplicablePatches. */ export interface GetWlmsWlsDomainApplicablePatchesArgs { filters?: inputs.oci.GetWlmsWlsDomainApplicablePatchesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: string; } /** * A collection of values returned by getWlmsWlsDomainApplicablePatches. */ export interface GetWlmsWlsDomainApplicablePatchesResult { /** * The list of applicable_patch_collection. */ readonly applicablePatchCollections: outputs.oci.GetWlmsWlsDomainApplicablePatchesApplicablePatchCollection[]; readonly filters?: outputs.oci.GetWlmsWlsDomainApplicablePatchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly wlsDomainId: string; } /** * This data source provides the list of Wls Domain Applicable Patches in Oracle Cloud Infrastructure Wlms service. * * Gets the latest patches that can be installed to the WebLogic domains. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainApplicablePatches = oci.oci.getWlmsWlsDomainApplicablePatches({ * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainApplicablePatchesOutput(args: GetWlmsWlsDomainApplicablePatchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomainApplicablePatches. */ export interface GetWlmsWlsDomainApplicablePatchesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomainApplicablePatches.d.ts.map