Show / Hide Table of Contents

Class RestoreWlsDomainDetails

The configuration details for the restore patches to WebLogic domain operation.

Inheritance
object
RestoreWlsDomainDetails
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 RestoreWlsDomainDetails

Properties

IsForceServersShutdown

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

If the restore operation required to stop the servers, this option indicates to force shutdown of the servers if they have not shutdown after a period of time. The timeout can be configured in the WebLogic domain configuration.

MustIncludeDomainsSharingMiddleware

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

If the WebLogic Domain being restored shares middleware with other domains, and the restore operation will restore servers in the other domains, this option allows the operation to proceed on all domains that share the same middleware. If not set to true, the restore operation will fail if there is any other domain using the same middleware.

ServersToRestore

Declaration
[JsonProperty(PropertyName = "serversToRestore")]
public List<ServerToRestore> ServersToRestore { get; set; }
Property Value
Type Description
List<ServerToRestore>

List of servers to restore and the backups

In this article
Back to top