1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getWlmsWlsDomainServerInstalledPatches
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.oci.getWlmsWlsDomainServerInstalledPatches

Get Started
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    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

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWlsDomainServerInstalledPatches = oci.oci.getWlmsWlsDomainServerInstalledPatches({
        serverId: testServer.id,
        wlsDomainId: testWlsDomain.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_wls_domain_server_installed_patches = oci.oci.get_wlms_wls_domain_server_installed_patches(server_id=test_server["id"],
        wls_domain_id=test_wls_domain["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.GetWlmsWlsDomainServerInstalledPatches(ctx, &oci.GetWlmsWlsDomainServerInstalledPatchesArgs{
    			ServerId:    testServer.Id,
    			WlsDomainId: testWlsDomain.Id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testWlsDomainServerInstalledPatches = Oci.Oci.GetWlmsWlsDomainServerInstalledPatches.Invoke(new()
        {
            ServerId = testServer.Id,
            WlsDomainId = testWlsDomain.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetWlmsWlsDomainServerInstalledPatchesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testWlsDomainServerInstalledPatches = OciFunctions.getWlmsWlsDomainServerInstalledPatches(GetWlmsWlsDomainServerInstalledPatchesArgs.builder()
                .serverId(testServer.id())
                .wlsDomainId(testWlsDomain.id())
                .build());
    
        }
    }
    
    variables:
      testWlsDomainServerInstalledPatches:
        fn::invoke:
          function: oci:oci:getWlmsWlsDomainServerInstalledPatches
          arguments:
            serverId: ${testServer.id}
            wlsDomainId: ${testWlsDomain.id}
    

    Using getWlmsWlsDomainServerInstalledPatches

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getWlmsWlsDomainServerInstalledPatches(args: GetWlmsWlsDomainServerInstalledPatchesArgs, opts?: InvokeOptions): Promise<GetWlmsWlsDomainServerInstalledPatchesResult>
    function getWlmsWlsDomainServerInstalledPatchesOutput(args: GetWlmsWlsDomainServerInstalledPatchesOutputArgs, opts?: InvokeOptions): Output<GetWlmsWlsDomainServerInstalledPatchesResult>
    def get_wlms_wls_domain_server_installed_patches(filters: Optional[Sequence[GetWlmsWlsDomainServerInstalledPatchesFilter]] = None,
                                                     server_id: Optional[str] = None,
                                                     wls_domain_id: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetWlmsWlsDomainServerInstalledPatchesResult
    def get_wlms_wls_domain_server_installed_patches_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetWlmsWlsDomainServerInstalledPatchesFilterArgs]]]] = None,
                                                     server_id: Optional[pulumi.Input[str]] = None,
                                                     wls_domain_id: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetWlmsWlsDomainServerInstalledPatchesResult]
    func GetWlmsWlsDomainServerInstalledPatches(ctx *Context, args *GetWlmsWlsDomainServerInstalledPatchesArgs, opts ...InvokeOption) (*GetWlmsWlsDomainServerInstalledPatchesResult, error)
    func GetWlmsWlsDomainServerInstalledPatchesOutput(ctx *Context, args *GetWlmsWlsDomainServerInstalledPatchesOutputArgs, opts ...InvokeOption) GetWlmsWlsDomainServerInstalledPatchesResultOutput

    > Note: This function is named GetWlmsWlsDomainServerInstalledPatches in the Go SDK.

    public static class GetWlmsWlsDomainServerInstalledPatches 
    {
        public static Task<GetWlmsWlsDomainServerInstalledPatchesResult> InvokeAsync(GetWlmsWlsDomainServerInstalledPatchesArgs args, InvokeOptions? opts = null)
        public static Output<GetWlmsWlsDomainServerInstalledPatchesResult> Invoke(GetWlmsWlsDomainServerInstalledPatchesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWlmsWlsDomainServerInstalledPatchesResult> getWlmsWlsDomainServerInstalledPatches(GetWlmsWlsDomainServerInstalledPatchesArgs args, InvokeOptions options)
    public static Output<GetWlmsWlsDomainServerInstalledPatchesResult> getWlmsWlsDomainServerInstalledPatches(GetWlmsWlsDomainServerInstalledPatchesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getWlmsWlsDomainServerInstalledPatches:getWlmsWlsDomainServerInstalledPatches
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ServerId string

    The unique identifier of a server.

    Note: Not an OCID.

    WlsDomainId string
    The OCID of the WebLogic domain.
    Filters List<GetWlmsWlsDomainServerInstalledPatchesFilter>
    ServerId string

    The unique identifier of a server.

    Note: Not an OCID.

    WlsDomainId string
    The OCID of the WebLogic domain.
    Filters []GetWlmsWlsDomainServerInstalledPatchesFilter
    serverId String

    The unique identifier of a server.

    Note: Not an OCID.

    wlsDomainId String
    The OCID of the WebLogic domain.
    filters List<GetWlmsWlsDomainServerInstalledPatchesFilter>
    serverId string

    The unique identifier of a server.

    Note: Not an OCID.

    wlsDomainId string
    The OCID of the WebLogic domain.
    filters GetWlmsWlsDomainServerInstalledPatchesFilter[]
    server_id str

    The unique identifier of a server.

    Note: Not an OCID.

    wls_domain_id str
    The OCID of the WebLogic domain.
    filters Sequence[GetWlmsWlsDomainServerInstalledPatchesFilter]
    serverId String

    The unique identifier of a server.

    Note: Not an OCID.

    wlsDomainId String
    The OCID of the WebLogic domain.
    filters List<Property Map>

    getWlmsWlsDomainServerInstalledPatches Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    InstalledPatchCollections List<GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollection>
    The list of installed_patch_collection.
    ServerId string
    WlsDomainId string
    Filters List<GetWlmsWlsDomainServerInstalledPatchesFilter>
    Id string
    The provider-assigned unique ID for this managed resource.
    InstalledPatchCollections []GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollection
    The list of installed_patch_collection.
    ServerId string
    WlsDomainId string
    Filters []GetWlmsWlsDomainServerInstalledPatchesFilter
    id String
    The provider-assigned unique ID for this managed resource.
    installedPatchCollections List<GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollection>
    The list of installed_patch_collection.
    serverId String
    wlsDomainId String
    filters List<GetWlmsWlsDomainServerInstalledPatchesFilter>
    id string
    The provider-assigned unique ID for this managed resource.
    installedPatchCollections GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollection[]
    The list of installed_patch_collection.
    serverId string
    wlsDomainId string
    filters GetWlmsWlsDomainServerInstalledPatchesFilter[]
    id String
    The provider-assigned unique ID for this managed resource.
    installedPatchCollections List<Property Map>
    The list of installed_patch_collection.
    serverId String
    wlsDomainId String
    filters List<Property Map>

    Supporting Types

    GetWlmsWlsDomainServerInstalledPatchesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollection

    items List<Property Map>
    List of installed patches per server

    GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollectionItem

    Description string
    The description of the WebLogic patch.
    DisplayName string
    The name of the WebLogic patch.
    Id string
    The ID of the WebLogic patch.
    Description string
    The description of the WebLogic patch.
    DisplayName string
    The name of the WebLogic patch.
    Id string
    The ID of the WebLogic patch.
    description String
    The description of the WebLogic patch.
    displayName String
    The name of the WebLogic patch.
    id String
    The ID of the WebLogic patch.
    description string
    The description of the WebLogic patch.
    displayName string
    The name of the WebLogic patch.
    id string
    The ID of the WebLogic patch.
    description str
    The description of the WebLogic patch.
    display_name str
    The name of the WebLogic patch.
    id str
    The ID of the WebLogic patch.
    description String
    The description of the WebLogic patch.
    displayName String
    The name of the WebLogic patch.
    id String
    The ID of the WebLogic patch.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate