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 Server Installed Patches in Oracle Cloud Infrastructure Wlms service. * * Gets a list of installed patches on a server for a domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainServerInstalledPatches = oci.oci.getWlmsWlsDomainServerInstalledPatches({ * serverId: testServer.id, * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainServerInstalledPatches(args: GetWlmsWlsDomainServerInstalledPatchesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomainServerInstalledPatches. */ export interface GetWlmsWlsDomainServerInstalledPatchesArgs { filters?: inputs.oci.GetWlmsWlsDomainServerInstalledPatchesFilter[]; /** * The unique identifier of a server. * * **Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ serverId: string; /** * 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 getWlmsWlsDomainServerInstalledPatches. */ export interface GetWlmsWlsDomainServerInstalledPatchesResult { readonly filters?: outputs.oci.GetWlmsWlsDomainServerInstalledPatchesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of installed_patch_collection. */ readonly installedPatchCollections: outputs.oci.GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollection[]; readonly serverId: string; readonly wlsDomainId: string; } /** * This data source provides the list of Wls Domain Server Installed Patches in Oracle Cloud Infrastructure Wlms service. * * Gets a list of installed patches on a server for a domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainServerInstalledPatches = oci.oci.getWlmsWlsDomainServerInstalledPatches({ * serverId: testServer.id, * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainServerInstalledPatchesOutput(args: GetWlmsWlsDomainServerInstalledPatchesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomainServerInstalledPatches. */ export interface GetWlmsWlsDomainServerInstalledPatchesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The unique identifier of a server. * * **Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ serverId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomainServerInstalledPatches.d.ts.map