Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
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 dictionaryThe following arguments are supported:
- Compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Display
Name string - The display name.
- Filters
List<Get
Wlms Wls Domains Filter> - Id string
- The OCID of the WebLogic domain.
- Middleware
Type string - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- Patch
Readiness stringStatus - 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.
- Weblogic
Version string - A filter to return WebLogic domains based on the WebLogic version.
- Compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Display
Name string - The display name.
- Filters
[]Get
Wlms Wls Domains Filter - Id string
- The OCID of the WebLogic domain.
- Middleware
Type string - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- Patch
Readiness stringStatus - 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.
- Weblogic
Version string - A filter to return WebLogic domains based on the WebLogic version.
- compartment
Id String - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display
Name String - The display name.
- filters
List<Get
Wlms Wls Domains Filter> - id String
- The OCID of the WebLogic domain.
- middleware
Type String - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- patch
Readiness StringStatus - 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.
- weblogic
Version String - A filter to return WebLogic domains based on the WebLogic version.
- compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display
Name string - The display name.
- filters
Get
Wlms Wls Domains Filter[] - id string
- The OCID of the WebLogic domain.
- middleware
Type string - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- patch
Readiness stringStatus - 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.
- weblogic
Version 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[Get
Wlms Wls Domains Filter] - 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_ strstatus - 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.
- compartment
Id String - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display
Name String - The display name.
- filters List<Property Map>
- id String
- The OCID of the WebLogic domain.
- middleware
Type String - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- patch
Readiness StringStatus - 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.
- weblogic
Version String - A filter to return WebLogic domains based on the WebLogic version.
getWlmsWlsDomains Result
The following output properties are available:
- Wls
Domain List<GetCollections Wlms Wls Domains Wls Domain Collection> - The list of wls_domain_collection.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name that does not have to be unique and is changeable.
- Filters
List<Get
Wlms Wls Domains Filter> - Id string
- The OCID of the WebLogic domain.
- Middleware
Type string - The middleware type on the administration server of the WebLogic domain.
- Patch
Readiness stringStatus - The patch readiness status of the WebLogic domain.
- State string
- The current state of the WebLogic service domain.
- Weblogic
Version string - The version of the WebLogic domain.
- Wls
Domain []GetCollections Wlms Wls Domains Wls Domain Collection - The list of wls_domain_collection.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name that does not have to be unique and is changeable.
- Filters
[]Get
Wlms Wls Domains Filter - Id string
- The OCID of the WebLogic domain.
- Middleware
Type string - The middleware type on the administration server of the WebLogic domain.
- Patch
Readiness stringStatus - The patch readiness status of the WebLogic domain.
- State string
- The current state of the WebLogic service domain.
- Weblogic
Version string - The version of the WebLogic domain.
- wls
Domain List<GetCollections Wlms Wls Domains Wls Domain Collection> - The list of wls_domain_collection.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name that does not have to be unique and is changeable.
- filters
List<Get
Wlms Wls Domains Filter> - id String
- The OCID of the WebLogic domain.
- middleware
Type String - The middleware type on the administration server of the WebLogic domain.
- patch
Readiness StringStatus - The patch readiness status of the WebLogic domain.
- state String
- The current state of the WebLogic service domain.
- weblogic
Version String - The version of the WebLogic domain.
- wls
Domain GetCollections Wlms Wls Domains Wls Domain Collection[] - The list of wls_domain_collection.
- compartment
Id string - The OCID of the compartment.
- display
Name string - A user-friendly name that does not have to be unique and is changeable.
- filters
Get
Wlms Wls Domains Filter[] - id string
- The OCID of the WebLogic domain.
- middleware
Type string - The middleware type on the administration server of the WebLogic domain.
- patch
Readiness stringStatus - The patch readiness status of the WebLogic domain.
- state string
- The current state of the WebLogic service domain.
- weblogic
Version string - The version of the WebLogic domain.
- wls_
domain_ Sequence[Getcollections Wlms Wls Domains Wls Domain Collection] - 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[Get
Wlms Wls Domains Filter] - id str
- The OCID of the WebLogic domain.
- middleware_
type str - The middleware type on the administration server of the WebLogic domain.
- patch_
readiness_ strstatus - 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.
- wls
Domain List<Property Map>Collections - The list of wls_domain_collection.
- compartment
Id String - The OCID of the compartment.
- display
Name 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.
- middleware
Type String - The middleware type on the administration server of the WebLogic domain.
- patch
Readiness StringStatus - The patch readiness status of the WebLogic domain.
- state String
- The current state of the WebLogic service domain.
- weblogic
Version String - The version of the WebLogic domain.
Supporting Types
GetWlmsWlsDomainsFilter
GetWlmsWlsDomainsWlsDomainCollection
GetWlmsWlsDomainsWlsDomainCollectionItem
- Compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Configurations
List<Get
Wlms Wls Domains Wls Domain Collection Item Configuration> - The WebLogic domain configuration.
- 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"} - Display
Name string - The display name.
- 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.
- Is
Accepted boolTerms And Conditions - Whether or not the terms of use agreement has been accepted for the WebLogic domain.
- Lifecycle
Details 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.
- Middleware
Type string - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- Patch
Readiness stringStatus - 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.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the WebLogic domain was created (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the WebLogic domain was updated (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - Weblogic
Version string - A filter to return WebLogic domains based on the WebLogic version.
- Compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Configurations
[]Get
Wlms Wls Domains Wls Domain Collection Item Configuration - The WebLogic domain configuration.
- 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"} - Display
Name string - The display name.
- 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.
- Is
Accepted boolTerms And Conditions - Whether or not the terms of use agreement has been accepted for the WebLogic domain.
- Lifecycle
Details 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.
- Middleware
Type string - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- Patch
Readiness stringStatus - 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.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the WebLogic domain was created (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the WebLogic domain was updated (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - Weblogic
Version string - A filter to return WebLogic domains based on the WebLogic version.
- compartment
Id String - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- configurations
List<Get
Wlms Wls Domains Wls Domain Collection Item Configuration> - The WebLogic domain configuration.
- 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"} - display
Name String - The display name.
- 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.
- is
Accepted BooleanTerms And Conditions - Whether or not the terms of use agreement has been accepted for the WebLogic domain.
- lifecycle
Details 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.
- middleware
Type String - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- patch
Readiness StringStatus - 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.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the WebLogic domain was created (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the WebLogic domain was updated (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - weblogic
Version String - A filter to return WebLogic domains based on the WebLogic version.
- compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- configurations
Get
Wlms Wls Domains Wls Domain Collection Item Configuration[] - The WebLogic domain configuration.
- {[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"} - display
Name string - The display name.
- {[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.
- is
Accepted booleanTerms And Conditions - Whether or not the terms of use agreement has been accepted for the WebLogic domain.
- lifecycle
Details 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.
- middleware
Type string - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- patch
Readiness stringStatus - 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.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the WebLogic domain was created (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the WebLogic domain was updated (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - weblogic
Version 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[Get
Wlms Wls Domains Wls Domain Collection Item Configuration] - The WebLogic domain configuration.
- 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.
- 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_ boolterms_ and_ conditions - 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_ strstatus - 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.
- 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.
- compartment
Id 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.
- 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"} - display
Name String - The display name.
- 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.
- is
Accepted BooleanTerms And Conditions - Whether or not the terms of use agreement has been accepted for the WebLogic domain.
- lifecycle
Details 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.
- middleware
Type String - A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
- patch
Readiness StringStatus - 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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the WebLogic domain was created (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the WebLogic domain was updated (in RFC 3339 format). Example:
2016-08-25T21:10:29.600Z - weblogic
Version String - A filter to return WebLogic domains based on the WebLogic version.
GetWlmsWlsDomainsWlsDomainCollectionItemConfiguration
- Admin
Server stringControl Mode - Whether to manage the admin server using Node Manager or scripts.
- Admin
Server stringStart Script Path - Path to admin server start script.
- Admin
Server stringStop Script Path - Path to admin server stop script.
- Is
Patch boolEnabled - Whether or not the WebLogic domain is enabled for patching.
- Is
Rollback boolOn Failure - Whether or not to rollback on failure during patching of WebLogic domain.
- Managed
Server stringControl Mode - Whether to manage the managed server using Node Manager or scripts.
- Managed
Server stringStart Script Path - Path to managed server start script.
- Managed
Server stringStop Script Path - Path to managed server stop script.
- Servers
Shutdown intTimeout - Servers shutdown timeout.
- Admin
Server stringControl Mode - Whether to manage the admin server using Node Manager or scripts.
- Admin
Server stringStart Script Path - Path to admin server start script.
- Admin
Server stringStop Script Path - Path to admin server stop script.
- Is
Patch boolEnabled - Whether or not the WebLogic domain is enabled for patching.
- Is
Rollback boolOn Failure - Whether or not to rollback on failure during patching of WebLogic domain.
- Managed
Server stringControl Mode - Whether to manage the managed server using Node Manager or scripts.
- Managed
Server stringStart Script Path - Path to managed server start script.
- Managed
Server stringStop Script Path - Path to managed server stop script.
- Servers
Shutdown intTimeout - Servers shutdown timeout.
- admin
Server StringControl Mode - Whether to manage the admin server using Node Manager or scripts.
- admin
Server StringStart Script Path - Path to admin server start script.
- admin
Server StringStop Script Path - Path to admin server stop script.
- is
Patch BooleanEnabled - Whether or not the WebLogic domain is enabled for patching.
- is
Rollback BooleanOn Failure - Whether or not to rollback on failure during patching of WebLogic domain.
- managed
Server StringControl Mode - Whether to manage the managed server using Node Manager or scripts.
- managed
Server StringStart Script Path - Path to managed server start script.
- managed
Server StringStop Script Path - Path to managed server stop script.
- servers
Shutdown IntegerTimeout - Servers shutdown timeout.
- admin
Server stringControl Mode - Whether to manage the admin server using Node Manager or scripts.
- admin
Server stringStart Script Path - Path to admin server start script.
- admin
Server stringStop Script Path - Path to admin server stop script.
- is
Patch booleanEnabled - Whether or not the WebLogic domain is enabled for patching.
- is
Rollback booleanOn Failure - Whether or not to rollback on failure during patching of WebLogic domain.
- managed
Server stringControl Mode - Whether to manage the managed server using Node Manager or scripts.
- managed
Server stringStart Script Path - Path to managed server start script.
- managed
Server stringStop Script Path - Path to managed server stop script.
- servers
Shutdown numberTimeout - Servers shutdown timeout.
- admin_
server_ strcontrol_ mode - Whether to manage the admin server using Node Manager or scripts.
- admin_
server_ strstart_ script_ path - Path to admin server start script.
- admin_
server_ strstop_ script_ path - Path to admin server stop script.
- is_
patch_ boolenabled - Whether or not the WebLogic domain is enabled for patching.
- is_
rollback_ boolon_ failure - Whether or not to rollback on failure during patching of WebLogic domain.
- managed_
server_ strcontrol_ mode - Whether to manage the managed server using Node Manager or scripts.
- managed_
server_ strstart_ script_ path - Path to managed server start script.
- managed_
server_ strstop_ script_ path - Path to managed server stop script.
- servers_
shutdown_ inttimeout - Servers shutdown timeout.
- admin
Server StringControl Mode - Whether to manage the admin server using Node Manager or scripts.
- admin
Server StringStart Script Path - Path to admin server start script.
- admin
Server StringStop Script Path - Path to admin server stop script.
- is
Patch BooleanEnabled - Whether or not the WebLogic domain is enabled for patching.
- is
Rollback BooleanOn Failure - Whether or not to rollback on failure during patching of WebLogic domain.
- managed
Server StringControl Mode - Whether to manage the managed server using Node Manager or scripts.
- managed
Server StringStart Script Path - Path to managed server start script.
- managed
Server StringStop Script Path - Path to managed server stop script.
- servers
Shutdown NumberTimeout - Servers shutdown timeout.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
