Show / Hide Table of Contents

Class WlsDomain

WLSDomain is representative of a WebLogic Domain running on one or more managed instances.
To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.

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

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment.

Remarks

Required

Configuration

Declaration
[JsonProperty(PropertyName = "configuration")]
public WlsDomainConfiguration Configuration { get; set; }
Property Value
Type Description
WlsDomainConfiguration

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

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

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name that does not have to be unique and is changeable.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
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

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the WebLogic domain.

Remarks

Required

IsAcceptedTermsAndConditions

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

Whether or not the terms of use agreement has been accepted for the WebLogic domain.

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
Type Description
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.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public WlsDomain.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
WlsDomain.LifecycleStateEnum?

The current state of the WebLogic service domain.

Remarks

Required

MiddlewareType

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

The middleware type on the administration server of the WebLogic domain.

PatchReadinessStatus

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

The patch readiness status of the WebLogic domain.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace.
Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the WebLogic domain was created (in RFC 3339 format).
Example: 2016-08-25T21:10:29.600Z

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the WebLogic domain was updated (in RFC 3339 format).
Example: 2016-08-25T21:10:29.600Z

WeblogicVersion

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

The version of the WebLogic domain.

In this article
Back to top