1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getWlmsWlsDomains
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    This data source provides the list of Wls Domains in Oracle Cloud Infrastructure Wlms service.

    Gets all WebLogic domains in a given compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWlsDomains = oci.oci.getWlmsWlsDomains({
        compartmentId: compartmentId,
        displayName: wlsDomainDisplayName,
        id: wlsDomainId,
        middlewareType: wlsDomainMiddlewareType,
        patchReadinessStatus: wlsDomainPatchReadinessStatus,
        state: wlsDomainState,
        weblogicVersion: wlsDomainWeblogicVersion,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_wls_domains = oci.oci.get_wlms_wls_domains(compartment_id=compartment_id,
        display_name=wls_domain_display_name,
        id=wls_domain_id,
        middleware_type=wls_domain_middleware_type,
        patch_readiness_status=wls_domain_patch_readiness_status,
        state=wls_domain_state,
        weblogic_version=wls_domain_weblogic_version)
    
    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.GetWlmsWlsDomains(ctx, &oci.GetWlmsWlsDomainsArgs{
    			CompartmentId:        pulumi.StringRef(compartmentId),
    			DisplayName:          pulumi.StringRef(wlsDomainDisplayName),
    			Id:                   pulumi.StringRef(wlsDomainId),
    			MiddlewareType:       pulumi.StringRef(wlsDomainMiddlewareType),
    			PatchReadinessStatus: pulumi.StringRef(wlsDomainPatchReadinessStatus),
    			State:                pulumi.StringRef(wlsDomainState),
    			WeblogicVersion:      pulumi.StringRef(wlsDomainWeblogicVersion),
    		}, 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 testWlsDomains = Oci.Oci.GetWlmsWlsDomains.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = wlsDomainDisplayName,
            Id = wlsDomainId,
            MiddlewareType = wlsDomainMiddlewareType,
            PatchReadinessStatus = wlsDomainPatchReadinessStatus,
            State = wlsDomainState,
            WeblogicVersion = wlsDomainWeblogicVersion,
        });
    
    });
    
    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.GetWlmsWlsDomainsArgs;
    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 testWlsDomains = OciFunctions.getWlmsWlsDomains(GetWlmsWlsDomainsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(wlsDomainDisplayName)
                .id(wlsDomainId)
                .middlewareType(wlsDomainMiddlewareType)
                .patchReadinessStatus(wlsDomainPatchReadinessStatus)
                .state(wlsDomainState)
                .weblogicVersion(wlsDomainWeblogicVersion)
                .build());
    
        }
    }
    
    variables:
      testWlsDomains:
        fn::invoke:
          function: oci:oci:getWlmsWlsDomains
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${wlsDomainDisplayName}
            id: ${wlsDomainId}
            middlewareType: ${wlsDomainMiddlewareType}
            patchReadinessStatus: ${wlsDomainPatchReadinessStatus}
            state: ${wlsDomainState}
            weblogicVersion: ${wlsDomainWeblogicVersion}
    

    Using getWlmsWlsDomains

    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 getWlmsWlsDomains(args: GetWlmsWlsDomainsArgs, opts?: InvokeOptions): Promise<GetWlmsWlsDomainsResult>
    function getWlmsWlsDomainsOutput(args: GetWlmsWlsDomainsOutputArgs, opts?: InvokeOptions): Output<GetWlmsWlsDomainsResult>
    def get_wlms_wls_domains(compartment_id: Optional[str] = None,
                             display_name: Optional[str] = None,
                             filters: Optional[Sequence[GetWlmsWlsDomainsFilter]] = None,
                             id: Optional[str] = None,
                             middleware_type: Optional[str] = None,
                             patch_readiness_status: Optional[str] = None,
                             state: Optional[str] = None,
                             weblogic_version: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetWlmsWlsDomainsResult
    def get_wlms_wls_domains_output(compartment_id: Optional[pulumi.Input[str]] = None,
                             display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetWlmsWlsDomainsFilterArgs]]]] = None,
                             id: Optional[pulumi.Input[str]] = None,
                             middleware_type: Optional[pulumi.Input[str]] = None,
                             patch_readiness_status: Optional[pulumi.Input[str]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             weblogic_version: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetWlmsWlsDomainsResult]
    func GetWlmsWlsDomains(ctx *Context, args *GetWlmsWlsDomainsArgs, opts ...InvokeOption) (*GetWlmsWlsDomainsResult, error)
    func GetWlmsWlsDomainsOutput(ctx *Context, args *GetWlmsWlsDomainsOutputArgs, opts ...InvokeOption) GetWlmsWlsDomainsResultOutput

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

    public static class GetWlmsWlsDomains 
    {
        public static Task<GetWlmsWlsDomainsResult> InvokeAsync(GetWlmsWlsDomainsArgs args, InvokeOptions? opts = null)
        public static Output<GetWlmsWlsDomainsResult> Invoke(GetWlmsWlsDomainsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWlmsWlsDomainsResult> getWlmsWlsDomains(GetWlmsWlsDomainsArgs args, InvokeOptions options)
    public static Output<GetWlmsWlsDomainsResult> getWlmsWlsDomains(GetWlmsWlsDomainsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getWlmsWlsDomains:getWlmsWlsDomains
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    DisplayName string
    The display name.
    Filters List<GetWlmsWlsDomainsFilter>
    Id string
    The OCID of the WebLogic domain.
    MiddlewareType string
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    PatchReadinessStatus string
    A filter to return domains based on the patch readiness status.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    WeblogicVersion string
    A filter to return WebLogic domains based on the WebLogic version.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    DisplayName string
    The display name.
    Filters []GetWlmsWlsDomainsFilter
    Id string
    The OCID of the WebLogic domain.
    MiddlewareType string
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    PatchReadinessStatus string
    A filter to return domains based on the patch readiness status.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    WeblogicVersion string
    A filter to return WebLogic domains based on the WebLogic version.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    displayName String
    The display name.
    filters List<GetWlmsWlsDomainsFilter>
    id String
    The OCID of the WebLogic domain.
    middlewareType String
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patchReadinessStatus String
    A filter to return domains based on the patch readiness status.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    weblogicVersion String
    A filter to return WebLogic domains based on the WebLogic version.
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    displayName string
    The display name.
    filters GetWlmsWlsDomainsFilter[]
    id string
    The OCID of the WebLogic domain.
    middlewareType string
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patchReadinessStatus string
    A filter to return domains based on the patch readiness status.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    weblogicVersion string
    A filter to return WebLogic domains based on the WebLogic version.
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    display_name str
    The display name.
    filters Sequence[GetWlmsWlsDomainsFilter]
    id str
    The OCID of the WebLogic domain.
    middleware_type str
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patch_readiness_status str
    A filter to return domains based on the patch readiness status.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    weblogic_version str
    A filter to return WebLogic domains based on the WebLogic version.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    displayName String
    The display name.
    filters List<Property Map>
    id String
    The OCID of the WebLogic domain.
    middlewareType String
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patchReadinessStatus String
    A filter to return domains based on the patch readiness status.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    weblogicVersion String
    A filter to return WebLogic domains based on the WebLogic version.

    getWlmsWlsDomains Result

    The following output properties are available:

    WlsDomainCollections List<GetWlmsWlsDomainsWlsDomainCollection>
    The list of wls_domain_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name that does not have to be unique and is changeable.
    Filters List<GetWlmsWlsDomainsFilter>
    Id string
    The OCID of the WebLogic domain.
    MiddlewareType string
    The middleware type on the administration server of the WebLogic domain.
    PatchReadinessStatus string
    The patch readiness status of the WebLogic domain.
    State string
    The current state of the WebLogic service domain.
    WeblogicVersion string
    The version of the WebLogic domain.
    WlsDomainCollections []GetWlmsWlsDomainsWlsDomainCollection
    The list of wls_domain_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name that does not have to be unique and is changeable.
    Filters []GetWlmsWlsDomainsFilter
    Id string
    The OCID of the WebLogic domain.
    MiddlewareType string
    The middleware type on the administration server of the WebLogic domain.
    PatchReadinessStatus string
    The patch readiness status of the WebLogic domain.
    State string
    The current state of the WebLogic service domain.
    WeblogicVersion string
    The version of the WebLogic domain.
    wlsDomainCollections List<GetWlmsWlsDomainsWlsDomainCollection>
    The list of wls_domain_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name that does not have to be unique and is changeable.
    filters List<GetWlmsWlsDomainsFilter>
    id String
    The OCID of the WebLogic domain.
    middlewareType String
    The middleware type on the administration server of the WebLogic domain.
    patchReadinessStatus String
    The patch readiness status of the WebLogic domain.
    state String
    The current state of the WebLogic service domain.
    weblogicVersion String
    The version of the WebLogic domain.
    wlsDomainCollections GetWlmsWlsDomainsWlsDomainCollection[]
    The list of wls_domain_collection.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A user-friendly name that does not have to be unique and is changeable.
    filters GetWlmsWlsDomainsFilter[]
    id string
    The OCID of the WebLogic domain.
    middlewareType string
    The middleware type on the administration server of the WebLogic domain.
    patchReadinessStatus string
    The patch readiness status of the WebLogic domain.
    state string
    The current state of the WebLogic service domain.
    weblogicVersion string
    The version of the WebLogic domain.
    wls_domain_collections Sequence[GetWlmsWlsDomainsWlsDomainCollection]
    The list of wls_domain_collection.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A user-friendly name that does not have to be unique and is changeable.
    filters Sequence[GetWlmsWlsDomainsFilter]
    id str
    The OCID of the WebLogic domain.
    middleware_type str
    The middleware type on the administration server of the WebLogic domain.
    patch_readiness_status str
    The patch readiness status of the WebLogic domain.
    state str
    The current state of the WebLogic service domain.
    weblogic_version str
    The version of the WebLogic domain.
    wlsDomainCollections List<Property Map>
    The list of wls_domain_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name that does not have to be unique and is changeable.
    filters List<Property Map>
    id String
    The OCID of the WebLogic domain.
    middlewareType String
    The middleware type on the administration server of the WebLogic domain.
    patchReadinessStatus String
    The patch readiness status of the WebLogic domain.
    state String
    The current state of the WebLogic service domain.
    weblogicVersion String
    The version of the WebLogic domain.

    Supporting Types

    GetWlmsWlsDomainsFilter

    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

    GetWlmsWlsDomainsWlsDomainCollection

    GetWlmsWlsDomainsWlsDomainCollectionItem

    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    Configurations List<GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration>
    The WebLogic domain configuration.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    The display name.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the WebLogic domain.
    IsAcceptedTermsAndConditions bool
    Whether or not the terms of use agreement has been accepted for the WebLogic domain.
    LifecycleDetails string
    A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state.
    MiddlewareType string
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    PatchReadinessStatus string
    A filter to return domains based on the patch readiness status.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the WebLogic domain was created (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the WebLogic domain was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    WeblogicVersion string
    A filter to return WebLogic domains based on the WebLogic version.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    Configurations []GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration
    The WebLogic domain configuration.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    The display name.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the WebLogic domain.
    IsAcceptedTermsAndConditions bool
    Whether or not the terms of use agreement has been accepted for the WebLogic domain.
    LifecycleDetails string
    A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state.
    MiddlewareType string
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    PatchReadinessStatus string
    A filter to return domains based on the patch readiness status.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the WebLogic domain was created (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the WebLogic domain was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    WeblogicVersion string
    A filter to return WebLogic domains based on the WebLogic version.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    configurations List<GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration>
    The WebLogic domain configuration.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    The display name.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the WebLogic domain.
    isAcceptedTermsAndConditions Boolean
    Whether or not the terms of use agreement has been accepted for the WebLogic domain.
    lifecycleDetails String
    A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state.
    middlewareType String
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patchReadinessStatus String
    A filter to return domains based on the patch readiness status.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the WebLogic domain was created (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the WebLogic domain was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    weblogicVersion String
    A filter to return WebLogic domains based on the WebLogic version.
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    configurations GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration[]
    The WebLogic domain configuration.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    The display name.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the WebLogic domain.
    isAcceptedTermsAndConditions boolean
    Whether or not the terms of use agreement has been accepted for the WebLogic domain.
    lifecycleDetails string
    A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state.
    middlewareType string
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patchReadinessStatus string
    A filter to return domains based on the patch readiness status.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the WebLogic domain was created (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the WebLogic domain was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    weblogicVersion string
    A filter to return WebLogic domains based on the WebLogic version.
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    configurations Sequence[GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration]
    The WebLogic domain configuration.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    The display name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the WebLogic domain.
    is_accepted_terms_and_conditions bool
    Whether or not the terms of use agreement has been accepted for the WebLogic domain.
    lifecycle_details str
    A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state.
    middleware_type str
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patch_readiness_status str
    A filter to return domains based on the patch readiness status.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the WebLogic domain was created (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the WebLogic domain was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    weblogic_version str
    A filter to return WebLogic domains based on the WebLogic version.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    configurations List<Property Map>
    The WebLogic domain configuration.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    The display name.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the WebLogic domain.
    isAcceptedTermsAndConditions Boolean
    Whether or not the terms of use agreement has been accepted for the WebLogic domain.
    lifecycleDetails String
    A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state.
    middlewareType String
    A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
    patchReadinessStatus String
    A filter to return domains based on the patch readiness status.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the WebLogic domain was created (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the WebLogic domain was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
    weblogicVersion String
    A filter to return WebLogic domains based on the WebLogic version.

    GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration

    AdminServerControlMode string
    Whether to manage the admin server using Node Manager or scripts.
    AdminServerStartScriptPath string
    Path to admin server start script.
    AdminServerStopScriptPath string
    Path to admin server stop script.
    IsPatchEnabled bool
    Whether or not the WebLogic domain is enabled for patching.
    IsRollbackOnFailure bool
    Whether or not to rollback on failure during patching of WebLogic domain.
    ManagedServerControlMode string
    Whether to manage the managed server using Node Manager or scripts.
    ManagedServerStartScriptPath string
    Path to managed server start script.
    ManagedServerStopScriptPath string
    Path to managed server stop script.
    ServersShutdownTimeout int
    Servers shutdown timeout.
    AdminServerControlMode string
    Whether to manage the admin server using Node Manager or scripts.
    AdminServerStartScriptPath string
    Path to admin server start script.
    AdminServerStopScriptPath string
    Path to admin server stop script.
    IsPatchEnabled bool
    Whether or not the WebLogic domain is enabled for patching.
    IsRollbackOnFailure bool
    Whether or not to rollback on failure during patching of WebLogic domain.
    ManagedServerControlMode string
    Whether to manage the managed server using Node Manager or scripts.
    ManagedServerStartScriptPath string
    Path to managed server start script.
    ManagedServerStopScriptPath string
    Path to managed server stop script.
    ServersShutdownTimeout int
    Servers shutdown timeout.
    adminServerControlMode String
    Whether to manage the admin server using Node Manager or scripts.
    adminServerStartScriptPath String
    Path to admin server start script.
    adminServerStopScriptPath String
    Path to admin server stop script.
    isPatchEnabled Boolean
    Whether or not the WebLogic domain is enabled for patching.
    isRollbackOnFailure Boolean
    Whether or not to rollback on failure during patching of WebLogic domain.
    managedServerControlMode String
    Whether to manage the managed server using Node Manager or scripts.
    managedServerStartScriptPath String
    Path to managed server start script.
    managedServerStopScriptPath String
    Path to managed server stop script.
    serversShutdownTimeout Integer
    Servers shutdown timeout.
    adminServerControlMode string
    Whether to manage the admin server using Node Manager or scripts.
    adminServerStartScriptPath string
    Path to admin server start script.
    adminServerStopScriptPath string
    Path to admin server stop script.
    isPatchEnabled boolean
    Whether or not the WebLogic domain is enabled for patching.
    isRollbackOnFailure boolean
    Whether or not to rollback on failure during patching of WebLogic domain.
    managedServerControlMode string
    Whether to manage the managed server using Node Manager or scripts.
    managedServerStartScriptPath string
    Path to managed server start script.
    managedServerStopScriptPath string
    Path to managed server stop script.
    serversShutdownTimeout number
    Servers shutdown timeout.
    admin_server_control_mode str
    Whether to manage the admin server using Node Manager or scripts.
    admin_server_start_script_path str
    Path to admin server start script.
    admin_server_stop_script_path str
    Path to admin server stop script.
    is_patch_enabled bool
    Whether or not the WebLogic domain is enabled for patching.
    is_rollback_on_failure bool
    Whether or not to rollback on failure during patching of WebLogic domain.
    managed_server_control_mode str
    Whether to manage the managed server using Node Manager or scripts.
    managed_server_start_script_path str
    Path to managed server start script.
    managed_server_stop_script_path str
    Path to managed server stop script.
    servers_shutdown_timeout int
    Servers shutdown timeout.
    adminServerControlMode String
    Whether to manage the admin server using Node Manager or scripts.
    adminServerStartScriptPath String
    Path to admin server start script.
    adminServerStopScriptPath String
    Path to admin server stop script.
    isPatchEnabled Boolean
    Whether or not the WebLogic domain is enabled for patching.
    isRollbackOnFailure Boolean
    Whether or not to rollback on failure during patching of WebLogic domain.
    managedServerControlMode String
    Whether to manage the managed server using Node Manager or scripts.
    managedServerStartScriptPath String
    Path to managed server start script.
    managedServerStopScriptPath String
    Path to managed server stop script.
    serversShutdownTimeout Number
    Servers shutdown timeout.

    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.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate