Show / Hide Table of Contents

Class DiscoveredCloudClusterInstance

The details of a cloud cluster instance discovered in a cloud DB system discovery run.

Inheritance
object
DiscoveredCloudDbSystemComponent
DiscoveredCloudClusterInstance
Inherited Members
DiscoveredCloudDbSystemComponent.ComponentId
DiscoveredCloudDbSystemComponent.DisplayName
DiscoveredCloudDbSystemComponent.ComponentName
DiscoveredCloudDbSystemComponent.ResourceId
DiscoveredCloudDbSystemComponent.DbaasId
DiscoveredCloudDbSystemComponent.IsSelectedForMonitoring
DiscoveredCloudDbSystemComponent.Status
DiscoveredCloudDbSystemComponent.AssociatedComponents
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class DiscoveredCloudClusterInstance : DiscoveredCloudDbSystemComponent

Properties

AdrHomeDirectory

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

The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.

ClusterId

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

The unique identifier of the Oracle cluster.

Connector

Declaration
[JsonProperty(PropertyName = "connector")]
public CloudDbSystemDiscoveryConnector Connector { get; set; }
Property Value
Type Description
CloudDbSystemDiscoveryConnector

CrsBaseDirectory

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

The Oracle base location of Cluster Ready Services (CRS).

HostName

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

The name of the host on which the cluster instance is running.

Remarks

Required

NodeRole

Declaration
[JsonProperty(PropertyName = "nodeRole")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DiscoveredCloudClusterInstance.NodeRoleEnum? NodeRole { get; set; }
Property Value
Type Description
DiscoveredCloudClusterInstance.NodeRoleEnum?

The role of the cluster node.

In this article
Back to top