Show / Hide Table of Contents

Class PluggableDatabaseNodeLevelDetails

Pluggable Database Node Level Details.

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

Properties

NodeName

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

The Node name of the Database Instance.

Remarks

Required

OpenMode

Declaration
[Required(ErrorMessage = "OpenMode is required.")]
[JsonProperty(PropertyName = "openMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PluggableDatabaseNodeLevelDetails.OpenModeEnum? OpenMode { get; set; }
Property Value
Type Description
PluggableDatabaseNodeLevelDetails.OpenModeEnum?

The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).

Remarks

Required

In this article
Back to top