Show / Hide Table of Contents

Class WlsDomainConfiguration

The WebLogic domain configuration.

Inheritance
object
WlsDomainConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WlmsService.Models
Assembly: OCI.DotNetSDK.Wlms.dll
Syntax
public class WlsDomainConfiguration

Properties

AdminServerControlMode

Declaration
[JsonProperty(PropertyName = "adminServerControlMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ServerControlMode? AdminServerControlMode { get; set; }
Property Value
Type Description
ServerControlMode?

Whether to manage the admin server using Node Manager or scripts.

AdminServerStartScriptPath

Declaration
[JsonProperty(PropertyName = "adminServerStartScriptPath")]
public string AdminServerStartScriptPath { get; set; }
Property Value
Type Description
string

Path to admin server start script.

AdminServerStopScriptPath

Declaration
[JsonProperty(PropertyName = "adminServerStopScriptPath")]
public string AdminServerStopScriptPath { get; set; }
Property Value
Type Description
string

Path to admin server stop script.

IsPatchEnabled

Declaration
[Required(ErrorMessage = "IsPatchEnabled is required.")]
[JsonProperty(PropertyName = "isPatchEnabled")]
public bool? IsPatchEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not the WebLogic domain is enabled for patching.

Remarks

Required

IsRollbackOnFailure

Declaration
[JsonProperty(PropertyName = "isRollbackOnFailure")]
public bool? IsRollbackOnFailure { get; set; }
Property Value
Type Description
bool?

Whether or not to rollback on failure during patching of WebLogic domain.

ManagedServerControlMode

Declaration
[JsonProperty(PropertyName = "managedServerControlMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ServerControlMode? ManagedServerControlMode { get; set; }
Property Value
Type Description
ServerControlMode?

Whether to manage the managed server using Node Manager or scripts.

ManagedServerStartScriptPath

Declaration
[JsonProperty(PropertyName = "managedServerStartScriptPath")]
public string ManagedServerStartScriptPath { get; set; }
Property Value
Type Description
string

Path to managed server start script.

ManagedServerStopScriptPath

Declaration
[JsonProperty(PropertyName = "managedServerStopScriptPath")]
public string ManagedServerStopScriptPath { get; set; }
Property Value
Type Description
string

Path to managed server stop script.

ServersShutdownTimeout

Declaration
[JsonProperty(PropertyName = "serversShutdownTimeout")]
public int? ServersShutdownTimeout { get; set; }
Property Value
Type Description
int?

Servers shutdown timeout.

In this article
Back to top